This commit is contained in:
2026-05-14 15:53:31 +02:00
parent ae052dbf90
commit ea5c88f846
4 changed files with 92 additions and 15 deletions

View File

@@ -423,7 +423,9 @@ body {
line-height: 14px;
color: #010101;
font-weight: 400;
transition: color 0.2s ease-in, font-weight 0.2s ease-in;
transition:
color 0.2s ease-in,
font-weight 0.2s ease-in;
}
.tab_links_container a:hover p {
@@ -629,7 +631,9 @@ body {
line-height: 26px;
font-weight: 600;
margin-top: 12px;
transition: color 0.3s ease-in, background-color 0.3s ease-in;
transition:
color 0.3s ease-in,
background-color 0.3s ease-in;
}
.button_container a:hover {
@@ -799,7 +803,9 @@ article.product-miniature:hover {
padding: 16px 32px;
font-weight: 600;
text-transform: unset;
transition: color 0.3s ease-in, background-color 0.3s ease-in;
transition:
color 0.3s ease-in,
background-color 0.3s ease-in;
}
.blog-viewall .btn-primary:hover {
@@ -1299,7 +1305,9 @@ article.product-miniature:hover {
font-weight: 600;
padding: 20px 110px;
color: #696868;
transition: color 0.2s ease-in, background-color 0.2s ease-in;
transition:
color 0.2s ease-in,
background-color 0.2s ease-in;
}
.salony_row a:hover .title {
@@ -1555,7 +1563,9 @@ button[aria-expanded='true'] .chevron_sort_container img {
height: 100%;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease-in, color 0.3s ease-in;
transition:
background-color 0.3s ease-in,
color 0.3s ease-in;
}
.pagination a:hover,
@@ -1666,7 +1676,9 @@ button[aria-expanded='true'] .chevron_sort_container img {
font-size: 14px;
line-height: 21px;
border-radius: 5px;
transition: color 0.2s ease-in, background-color 0.2s ease-in;
transition:
color 0.2s ease-in,
background-color 0.2s ease-in;
}
.PM_ASBlockOutputVertical .PM_ASSubmitSearch:hover {
@@ -3399,7 +3411,9 @@ body#checkout .modal-content li {
border-radius: 5px;
width: 226px;
height: 54px;
transition: background-color 0.4s ease, color 0.4s ease;
transition:
background-color 0.4s ease,
color 0.4s ease;
}
.sinlge_row_salon .see_salon_button img {
@@ -4584,7 +4598,9 @@ body#cms.cms-id-23 {
display: flex;
align-items: center;
justify-content: center;
transition: opacity 250ms ease, visibility 250ms ease;
transition:
opacity 250ms ease,
visibility 250ms ease;
overflow: auto;
&.active {
@@ -5227,7 +5243,8 @@ body#cms.cms-id-23 {
}
.acc_component {
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
box-shadow:
0px 1px 3px 0px rgba(0, 0, 0, 0.1),
0px 0px 2px 0px rgba(0, 0, 0, 0.2);
> li {
@@ -5971,3 +5988,63 @@ section#checkout-personal-information-step {
}
}
}
#blockcart-modal {
color: #010101;
.modal-header {
background: #34d6ad;
}
.cart-content {
.btn {
transition: all 0.3s ease-in;
&.btn-primary {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
background-color: #34d6ad;
border-radius: 5px;
width: 100%;
font-size: 16px;
line-height: 24px;
font-weight: 700;
text-transform: initial;
&:hover {
color: #fff !important;
border-color: #24b28c !important;
background-color: #24b28c !important;
}
}
&.btn-secondary {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #34d6ad;
background-color: #fff;
border: 1px solid #34d6ad;
border-radius: 5px;
width: 100%;
font-size: 16px;
line-height: 24px;
font-weight: 700;
text-transform: initial;
&:hover {
color: #fff !important;
border-color: #24b28c !important;
background-color: #24b28c !important;
}
}
}
}
.product-name {
color: #010101;
}
}