feature/sabrinamiranda #1

Merged
SabrinaMiranda merged 33 commits from feature/sabrinamiranda into master 2023-02-10 23:17:10 +00:00
9 changed files with 93 additions and 21 deletions
Showing only changes of commit bc1d744b30 - Show all commits

View File

@ -61,6 +61,12 @@
padding-bottom: 12px; padding-bottom: 12px;
display: block !important; display: block !important;
} }
[class*="html--add-to-cart-button"] button:hover {
filter: opacity(88%);
}
[class*="html--add-to-cart-button"] button:active {
filter: opacity(100%);
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
[class*="html--add-to-cart-button"] button { [class*="html--add-to-cart-button"] button {
@ -106,6 +112,12 @@
display: block !important; display: block !important;
} }
[class*="html--product-quantity-cart-button"] button:hover {
color: #929292;
}
[class*="html--product-quantity-cart-button"] button:active {
color: #000000;
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
[class*="html--shipping-simulator"] { [class*="html--shipping-simulator"] {
@ -123,6 +135,12 @@
position: absolute; position: absolute;
display: block !important; display: block !important;
} }
[class*="html--shipping-simulator"] button:hover {
filter: opacity(88%);
}
[class*="html--shipping-simulator"] button:active {
filter: opacity(100%);
}
@media screen and (min-width: 769px) { @media screen and (min-width: 769px) {
[class*="html--shipping-simulator"] button { [class*="html--shipping-simulator"] button {
@ -139,6 +157,12 @@
[class*="html--shipping-simulator"] a { [class*="html--shipping-simulator"] a {
color: #000000; color: #000000;
} }
[class*="html--shipping-simulator"] a:hover {
color: #929292;
}
[class*="html--shipping-simulator"] a:active {
color: #000000;
}
[class*="html--shipping-simulator"] svg { [class*="html--shipping-simulator"] svg {
display: none; display: none;

View File

@ -47,3 +47,11 @@
.container .term { .container .term {
color: #929292; color: #929292;
} }
.container .link:hover,
.container .term:hover {
color: #808080;
}
.container .link:active,
.container .term:active {
color: #929292;
}

View File

@ -97,6 +97,9 @@
border: 1px solid #989898; border: 1px solid #989898;
position: relative; position: relative;
} }
.skuSelectorInternalBox:hover {
border: 1.5px solid #949494;
}
.skuSelectorItemImage :global(.vtex-store-components-3-x-skuSelectorInternalBox) { .skuSelectorItemImage :global(.vtex-store-components-3-x-skuSelectorInternalBox) {
width: 100%; width: 100%;
@ -123,6 +126,9 @@
color: rgba(185, 185, 185, 0.6); color: rgba(185, 185, 185, 0.6);
width: 20px; width: 20px;
} }
.skuSelectorItemTextValue:hover {
color: #949494;
}
.skuSelectorItemImage { .skuSelectorItemImage {
display: flex; display: flex;

View File

@ -1,11 +1,12 @@
.row--menu-row { /*
padding-right: 24px; 0 - 600PX: Phone
} 600 - 900px: Table portrait
900 - 1200px: Tablet landscape
.row--menu-row .rowContainer { [1200 - 1800] is where our nortal styles apply
align-items: flex-start; 1800px + : Big desktop
} */
/* Media Query M3 */
.row--payment-methods { /* Grid breakpoints */
padding-top: 16px; .footerLayout {
padding: 0 16px !important;
} }

View File

@ -0,0 +1,12 @@
/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.telemarketingBar {
padding: 0 16px !important;
}

View File

@ -37,5 +37,13 @@
.link, .link,
.term { .term {
color: #929292; color: #929292;
&:hover {
color: #808080;
}
&:active {
color: #929292;
}
} }
} }

View File

@ -85,6 +85,10 @@
border-radius: 50%; border-radius: 50%;
border: 1px solid #989898; border: 1px solid #989898;
position: relative; position: relative;
&:hover {
border: 1.5px solid #949494;
}
} }
.skuSelectorItemImage { .skuSelectorItemImage {
@ -113,6 +117,10 @@
align-items: center; align-items: center;
color: rgba(185, 185, 185, 0.6); color: rgba(185, 185, 185, 0.6);
width: 20px; width: 20px;
&:hover {
color: #949494;
}
} }
.skuSelectorItemImage { .skuSelectorItemImage {
@ -498,14 +506,13 @@
} }
} }
.listContainer--list-product {
display: flex;
justify-content: space-between;
}
.listContainer--list-product { .productImageTag--image-description--main {
display: flex; width: 100% !important;
justify-content: space-between; margin: 0;
} display: inline-block;
}
.productImageTag--image-description--main {
width: 100% !important;
margin: 0;
display: inline-block;
}

View File

@ -0,0 +1,3 @@
.footerLayout {
padding: 0 16px !important;
}

View File

@ -0,0 +1,3 @@
.telemarketingBar {
padding: 0 16px !important;
}