wickes-css2 2.107.0-tech-debt-issues.1 → 2.107.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +1 -2
- package/build/css/category-main.css +1 -1
- package/build/css/components/card-product-banner.css +1 -1
- package/build/css/components/checkout-chip.css +1 -1
- package/build/css/components/checkout-payment-details-v2.css +1 -1
- package/build/css/homepage-main.css +1 -1
- package/build/css/kitchen-plp-main.css +1 -1
- package/build/css/main.css +1 -1
- package/build/css/my-account-main-v2.css +1 -1
- package/build/css/my-account-main.css +1 -1
- package/build/css/pages/checkout-new.css +1 -1
- package/build/css/pages/checkout.css +1 -1
- package/build/css/pages/my-account-v2.css +1 -1
- package/build/css/pages/page_product_search.css +1 -1
- package/build/css/pages/page_products-list-combined.css +1 -1
- package/build/css/pages/page_products-list_v2.css +1 -1
- package/build/css/pdp-main-before-combine.css +1 -1
- package/build/css/pdp-main-critical.css +1 -1
- package/build/css/pdp-main-non-critical.css +1 -1
- package/build/css/pdp-main.css +1 -1
- package/build/css/plp-main.css +1 -1
- package/build/css/store-locator-main.css +1 -1
- package/build/js/emulation.min.js +1 -21
- package/build/js/gift-cards.min.js +1 -1
- package/build/js/page/checkout-payment-details.js +87 -248
- package/build/js/page/checkout.js +1 -1
- package/build/js/page/components/gift-cards.js +357 -701
- package/build/js/page/kitchen/card-carousel.js +22 -22
- package/package.json +1 -1
- package/src/components/cart-voucher.hbs +10 -1
- package/src/components/checkout-payment-details-v2.hbs +4 -4
- package/src/components/checkout-payment-info-block.hbs +1 -1
- package/src/components/checkout_order-summary-new.hbs +1 -1
- package/src/components/gift-cards.hbs +14 -7
- package/src/components/order-item.hbs +18 -5
- package/src/components/order-summary.hbs +1 -1
- package/src/components/payments.hbs +5 -6
- package/src/components/potential-promotion.hbs +12 -3
- package/src/components/price-block-v2.hbs +1 -0
- package/src/data/data_delivery-address-v2.json +0 -4
- package/src/data/data_payments-checkout.json +0 -4
- package/src/data/data_quick-filter.json +3 -3
- package/src/data/data_shopping-cart-v2.json +23 -5
- package/src/data/footer_menu.json +0 -4
- package/src/js/emulation/checkout-payment-details.js +1 -26
- package/src/js/page/checkout-payment-details.js +87 -248
- package/src/js/page/checkout.js +1 -1
- package/src/js/page/components/gift-cards.js +357 -701
- package/src/js/page/kitchen/card-carousel.js +22 -22
- package/src/page_my-account-installer-carousel.html +131 -0
- package/src/page_payment-details-with-gift-card.html +1 -1
- package/src/page_product-details-billie.html +0 -2
- package/src/page_product-details-clearpay.html +0 -1
- package/src/page_shopping-cart-v2-vat.html +2 -1
- package/src/scss/components/_gift-cards.scss +3 -32
- package/src/scss/components/_payments-checkout.scss +2 -2
- package/src/scss/components/_payments-v2.scss +1 -1
- package/src/scss/components/_plp-filters.scss +9 -0
- package/src/scss/components/_price-block-critical.scss +8 -1
- package/src/scss/components/_quick-filter.scss +43 -11
- package/src/scss/components/_search-filter.scss +6 -0
- package/src/scss/components/card-product-banner.scss +1 -10
- package/src/scss/components/checkout-chip.scss +1 -0
- package/src/scss/components/checkout-payment-details-v2.scss +12 -0
- package/src/scss/components/my-account/_clipboard-code.scss +4 -0
- package/src/scss/helpers/_variables.scss +0 -2
- package/src/scss/pages/page_product_search.scss +3 -13
- package/src/scss/pages/page_products-list-combined.scss +1 -28
- package/src/scss/pages/page_products-list_v2.scss +2 -19
- package/src/sitemap.html +1 -0
- package/build/img/payment/checkout/giftcard.svg +0 -28
- package/build/img/payment/footer/giftcard.svg +0 -28
- package/src/img/payment/checkout/giftcard.svg +0 -28
- package/src/img/payment/footer/giftcard.svg +0 -28
|
@@ -3,30 +3,30 @@ var Wick = Wick || {};
|
|
|
3
3
|
Wick.PLPCardSwiper = {};
|
|
4
4
|
|
|
5
5
|
$(document).ready(function () {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
const SELECTORS = {
|
|
7
|
+
kitchenCard: '.kitchen-card',
|
|
8
|
+
swiperContainer: '.swiper-container-main',
|
|
9
|
+
nextButton: '.kitchen-card__next-btn',
|
|
10
|
+
prevButton: '.kitchen-card__prev-btn',
|
|
11
|
+
};
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
$(SELECTORS.kitchenCard).each(function (index, container) {
|
|
14
|
+
const $container = $(container);
|
|
15
|
+
const id = $container.data('id');
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
const sliderElement = $container.find(SELECTORS.swiperContainer)[0];
|
|
18
|
+
const nextButtonElement = $container.find(SELECTORS.nextButton)[0];
|
|
19
|
+
const prevButtonElement = $container.find(SELECTORS.prevButton)[0];
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
21
|
+
const swiper = new Swiper(sliderElement, {
|
|
22
|
+
speed: 400,
|
|
23
|
+
navigation: {
|
|
24
|
+
nextEl: nextButtonElement,
|
|
25
|
+
prevEl: prevButtonElement,
|
|
26
|
+
},
|
|
27
|
+
simulateTouch: false,
|
|
28
|
+
});
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
Wick.PLPCardSwiper[id] = swiper;
|
|
31
|
+
});
|
|
32
32
|
});
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{{#extend "my-account-v2"
|
|
2
|
+
customIconUserClass=header_menu.installer.[0].items.[0].icon
|
|
3
|
+
dataBreadcrumbs=my_account.installer.breadcrumbs
|
|
4
|
+
pageClass="page_my-account_new"
|
|
5
|
+
title="My Account Installer Carousel"
|
|
6
|
+
pageMyAcc=true
|
|
7
|
+
myAccV2=true
|
|
8
|
+
isLoggedIn=true
|
|
9
|
+
installer-nav=true
|
|
10
|
+
mainClass="my-account"
|
|
11
|
+
switch-vat=true
|
|
12
|
+
}}
|
|
13
|
+
{{#content "main"}}
|
|
14
|
+
<div class="container">
|
|
15
|
+
<div class="row">
|
|
16
|
+
<div class="col-12">
|
|
17
|
+
{{> my-account/mobile-nav my-account-menu-new
|
|
18
|
+
customIcon=true
|
|
19
|
+
menu=my_account.installer.menu
|
|
20
|
+
active-index=0
|
|
21
|
+
page-name=my_account.installer.menu.[0].title
|
|
22
|
+
}}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="account-summary">
|
|
27
|
+
<div class="container">
|
|
28
|
+
<div class="row">
|
|
29
|
+
<div class="col-12">
|
|
30
|
+
<div class="account-summary__wrapper d-none d-sm-grid mb-3">
|
|
31
|
+
{{> my-account/greetings
|
|
32
|
+
name=my_account.user.name
|
|
33
|
+
subtitle=my_account.user.email
|
|
34
|
+
}}
|
|
35
|
+
</div>
|
|
36
|
+
{{#extend "my-account/cards-swap"}}
|
|
37
|
+
{{#content "card1"}}
|
|
38
|
+
<div class="account-summary__wrapper account-summary__wrapper--secondary">
|
|
39
|
+
{{> my-account/greetings
|
|
40
|
+
mod="d-sm-none"
|
|
41
|
+
secondary=true
|
|
42
|
+
name=my_account.user.name
|
|
43
|
+
subtitle=my_account.user.email
|
|
44
|
+
}}
|
|
45
|
+
{{> my-account/discount
|
|
46
|
+
secondary=true
|
|
47
|
+
discountText=my_account.installer.discountText
|
|
48
|
+
installer=true
|
|
49
|
+
title="In-store discount"
|
|
50
|
+
code=my_account.discount
|
|
51
|
+
customIcon=my_account.installer.icons.installer
|
|
52
|
+
}}
|
|
53
|
+
{{> my-account/clipboard-code-card
|
|
54
|
+
secondary=true
|
|
55
|
+
mod="trade-pro-id"
|
|
56
|
+
customIcon=my_account.installer.icons.installer
|
|
57
|
+
title="TradePro ID"
|
|
58
|
+
code=my_account.tradeProId
|
|
59
|
+
}}
|
|
60
|
+
{{> my-account/clipboard-code-card
|
|
61
|
+
secondary=true
|
|
62
|
+
mod="discount-code"
|
|
63
|
+
icon="fas fa-badge-percent"
|
|
64
|
+
title="Online discount code"
|
|
65
|
+
code=my_account.installer.discountCode
|
|
66
|
+
}}
|
|
67
|
+
</div>
|
|
68
|
+
{{/content}}
|
|
69
|
+
{{#content "card2"}}
|
|
70
|
+
<div class="account-summary__wrapper">
|
|
71
|
+
{{> my-account/greetings
|
|
72
|
+
mod="d-sm-none"
|
|
73
|
+
name=my_account.user.name
|
|
74
|
+
subtitle=my_account.user.email
|
|
75
|
+
}}
|
|
76
|
+
{{> my-account/discount
|
|
77
|
+
discountText=my_account.installer.discountText
|
|
78
|
+
installer=true
|
|
79
|
+
title="In-store discount"
|
|
80
|
+
code=my_account.discount
|
|
81
|
+
customIcon=my_account.installer.icons.installer
|
|
82
|
+
}}
|
|
83
|
+
{{> my-account/clipboard-code-card
|
|
84
|
+
mod="trade-pro-id"
|
|
85
|
+
customIcon=my_account.installer.icons.installer
|
|
86
|
+
title="TradePro ID"
|
|
87
|
+
code=my_account.tradeProId
|
|
88
|
+
}}
|
|
89
|
+
{{> my-account/clipboard-code-card
|
|
90
|
+
mod="discount-code"
|
|
91
|
+
icon="fas fa-badge-percent"
|
|
92
|
+
title="Online discount code"
|
|
93
|
+
code=my_account.installer.discountCode
|
|
94
|
+
}}
|
|
95
|
+
</div>
|
|
96
|
+
{{/content}}
|
|
97
|
+
{{/extend}}
|
|
98
|
+
{{> my-account/active-orders/list-orders
|
|
99
|
+
switch-vat=true
|
|
100
|
+
title=my_account.installer.activeOrders.sectionTitle
|
|
101
|
+
linkText='View all orders'
|
|
102
|
+
orders=my_account.installer.activeOrders.orderList
|
|
103
|
+
}}
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
</div>
|
|
107
|
+
</div>
|
|
108
|
+
<div class="container">
|
|
109
|
+
<div class="row">
|
|
110
|
+
<div class="col-12">
|
|
111
|
+
{{> my-account/menu-items
|
|
112
|
+
items=my_account.installer.menu
|
|
113
|
+
}}
|
|
114
|
+
</div>
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
<div class="account-actions">
|
|
118
|
+
<div class="container">
|
|
119
|
+
<div class="row">
|
|
120
|
+
<div class="col-12">
|
|
121
|
+
{{> my-account/user-account-actions mod="d-sm-none"}}
|
|
122
|
+
{{> my-account/contact-us contacts=my_account.contacts}}
|
|
123
|
+
</div>
|
|
124
|
+
</div>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
{{/content}}
|
|
128
|
+
{{#content "foot" mode="append"}}
|
|
129
|
+
<script defer src="./js/my-account.min.js"></script>
|
|
130
|
+
{{/content}}
|
|
131
|
+
{{/extend}}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</div>
|
|
47
47
|
|
|
48
48
|
<div class="billing-payment-block">
|
|
49
|
-
<h3 class="billing-payment-block__heading">Payment</h3>
|
|
49
|
+
<h3 class="billing-payment-block__heading">Billing & Payment</h3>
|
|
50
50
|
<div class="billing-payment-block__wrapper">
|
|
51
51
|
{{> checkout-payment-details-v2 apple-pay=true google-pay=true clear-pay=true klarna-method=true}}
|
|
52
52
|
</div>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<div class="checkout-header__promo">
|
|
14
14
|
{{#each shopping-cart-v2.potentialOrderPromotions}}
|
|
15
|
-
{{> potential-promotion}}
|
|
15
|
+
{{> potential-promotion switch-vat=true}}
|
|
16
16
|
{{/each}}
|
|
17
17
|
</div>
|
|
18
18
|
{{> checkout-header shopping-cart-v2.header}}
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
{{#content "aside"}}
|
|
21
21
|
{{> order-summary
|
|
22
22
|
shopping-cart-v2.checkout
|
|
23
|
+
switch-vat=true
|
|
23
24
|
id=1
|
|
24
25
|
title="Order Summary"
|
|
25
26
|
basket=true
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.giftcard {
|
|
8
|
-
border: 1px solid $gray
|
|
8
|
+
border: 1px solid $gray;
|
|
9
9
|
border-radius: 4px;
|
|
10
10
|
background: $white;
|
|
11
11
|
padding: 12px 16px;
|
|
@@ -18,17 +18,6 @@
|
|
|
18
18
|
margin-bottom: 0;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
|
-
|
|
22
|
-
&--disabled {
|
|
23
|
-
.giftcard-inline__title {
|
|
24
|
-
color: $blue-disabled;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.giftcard-add,
|
|
28
|
-
.giftcard-add__text {
|
|
29
|
-
color: $blue-disabled;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
21
|
}
|
|
33
22
|
|
|
34
23
|
.giftcard-add {
|
|
@@ -39,27 +28,9 @@
|
|
|
39
28
|
text-decoration: none;
|
|
40
29
|
cursor: pointer;
|
|
41
30
|
|
|
42
|
-
&__icon-wrap {
|
|
43
|
-
width: 24px;
|
|
44
|
-
height: 24px;
|
|
45
|
-
flex: 0 0 24px;
|
|
46
|
-
|
|
47
|
-
display: inline-flex;
|
|
48
|
-
align-items: center;
|
|
49
|
-
justify-content: center;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
31
|
&__icon {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
font-size: 14px;
|
|
56
|
-
width: 14px;
|
|
57
|
-
height: 14px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&__icon.svg-inline--fa {
|
|
61
|
-
width: 14px;
|
|
62
|
-
height: 14px;
|
|
32
|
+
width: 16px;
|
|
33
|
+
height: 16px;
|
|
63
34
|
}
|
|
64
35
|
|
|
65
36
|
&__text {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
|
|
55
55
|
&--small {
|
|
56
56
|
flex-wrap: wrap;
|
|
57
|
-
padding: 0
|
|
57
|
+
padding: 0 25px;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
.basket {
|
|
80
80
|
.summary__payment.footer-checkout {
|
|
81
81
|
.payments-checkout__list--small {
|
|
82
|
-
padding: 0
|
|
82
|
+
padding: 0 45px;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -261,6 +261,15 @@
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
@include media-breakpoint-only(sm) {
|
|
265
|
+
.products-list-page {
|
|
266
|
+
.plp-filters {
|
|
267
|
+
width: 100vw;
|
|
268
|
+
margin-left: calc(50% - 50vw);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
264
273
|
@include media-breakpoint-up(md) {
|
|
265
274
|
.plp-filters {
|
|
266
275
|
background: $gray-bg;
|
|
@@ -120,6 +120,14 @@
|
|
|
120
120
|
text-align: center;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
.pdp-price__control-holder {
|
|
124
|
+
flex-flow: wrap;
|
|
125
|
+
|
|
126
|
+
p {
|
|
127
|
+
width: 100%;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
123
131
|
.pdp-price__control-holder,
|
|
124
132
|
.pdp-price__control-installation {
|
|
125
133
|
padding-top: 20px;
|
|
@@ -178,7 +186,6 @@
|
|
|
178
186
|
border-bottom-color: $red;
|
|
179
187
|
}
|
|
180
188
|
}
|
|
181
|
-
|
|
182
189
|
}
|
|
183
190
|
}
|
|
184
191
|
|
|
@@ -43,16 +43,24 @@ $quick-filter-shadow: rgba(0, 0, 0, 0.12);
|
|
|
43
43
|
border-radius: 8px;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
&--selected {
|
|
47
|
-
color: $blue;
|
|
48
|
-
border-color: $blue;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
46
|
&:hover,
|
|
52
47
|
&:focus,
|
|
53
48
|
&:active {
|
|
54
49
|
text-decoration: none;
|
|
55
50
|
border-color: $blue;
|
|
51
|
+
color: $gray-dark;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&--selected {
|
|
55
|
+
color: $blue;
|
|
56
|
+
border-color: $blue;
|
|
57
|
+
|
|
58
|
+
&:hover,
|
|
59
|
+
&:focus,
|
|
60
|
+
&:active {
|
|
61
|
+
color: $blue-darker;
|
|
62
|
+
border-color: $blue-darker;
|
|
63
|
+
}
|
|
56
64
|
}
|
|
57
65
|
}
|
|
58
66
|
|
|
@@ -151,11 +159,23 @@ $quick-filter-shadow: rgba(0, 0, 0, 0.12);
|
|
|
151
159
|
img {
|
|
152
160
|
width: 58px;
|
|
153
161
|
height: 58px;
|
|
162
|
+
border-radius: 0;
|
|
154
163
|
}
|
|
155
164
|
|
|
156
|
-
&--selected
|
|
157
|
-
|
|
158
|
-
|
|
165
|
+
&--selected {
|
|
166
|
+
img {
|
|
167
|
+
// prettier-ignore
|
|
168
|
+
filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(1821%) hue-rotate(188deg) brightness(95%) contrast(101%);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
&:hover,
|
|
172
|
+
&:focus,
|
|
173
|
+
&:active {
|
|
174
|
+
img {
|
|
175
|
+
// prettier-ignore
|
|
176
|
+
filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(1900%) hue-rotate(190deg) brightness(85%) contrast(105%);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
159
179
|
}
|
|
160
180
|
}
|
|
161
181
|
}
|
|
@@ -167,11 +187,23 @@ $quick-filter-shadow: rgba(0, 0, 0, 0.12);
|
|
|
167
187
|
img {
|
|
168
188
|
width: 58px;
|
|
169
189
|
height: 58px;
|
|
190
|
+
border-radius: 0;
|
|
170
191
|
}
|
|
171
192
|
|
|
172
|
-
&--selected
|
|
173
|
-
|
|
174
|
-
|
|
193
|
+
&--selected {
|
|
194
|
+
img {
|
|
195
|
+
// prettier-ignore
|
|
196
|
+
filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(1821%) hue-rotate(188deg) brightness(95%) contrast(101%);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
&:hover,
|
|
200
|
+
&:focus,
|
|
201
|
+
&:active {
|
|
202
|
+
img {
|
|
203
|
+
// prettier-ignore
|
|
204
|
+
filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(1900%) hue-rotate(190deg) brightness(85%) contrast(105%);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
175
207
|
}
|
|
176
208
|
}
|
|
177
209
|
}
|
|
@@ -13,15 +13,6 @@
|
|
|
13
13
|
padding: 0 5px;
|
|
14
14
|
margin-bottom: 20px;
|
|
15
15
|
|
|
16
|
-
&::before {
|
|
17
|
-
content: '';
|
|
18
|
-
position: absolute;
|
|
19
|
-
top: -20px;
|
|
20
|
-
left: 5px;
|
|
21
|
-
width: calc(100% - 10px);
|
|
22
|
-
border-bottom: 1px solid #ccc;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
16
|
&::after {
|
|
26
17
|
content: '';
|
|
27
18
|
position: absolute;
|
|
@@ -107,7 +98,7 @@
|
|
|
107
98
|
}
|
|
108
99
|
|
|
109
100
|
.products-list-v2 {
|
|
110
|
-
.card-sponsor-product:nth-of-type(n+3) {
|
|
101
|
+
.card-sponsor-product:nth-of-type(n + 3) {
|
|
111
102
|
.card {
|
|
112
103
|
&:before {
|
|
113
104
|
content: none;
|
|
@@ -33,8 +33,6 @@ $error-bg: #fcf2f3; // Error notification background colour
|
|
|
33
33
|
$positive: #8dc63f; // Positive colour
|
|
34
34
|
$negative: #ed1c24; // Negative colour
|
|
35
35
|
$blue-badge: #019ee3;
|
|
36
|
-
$blue-disabled: mix(#fff, $blue, 60%); // Disabled overlay (white 60% over $blue)
|
|
37
|
-
$pacific-depths: #004587;
|
|
38
36
|
$usp-icon-color: #1a77bc; // Usp icon color
|
|
39
37
|
$pacific-depths: #004587;
|
|
40
38
|
$line-through: #242424;
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
margin-right: -5px;
|
|
301
301
|
margin-left: -5px;
|
|
302
302
|
margin-top: 0;
|
|
303
|
-
padding-top:
|
|
303
|
+
padding-top: 20px;
|
|
304
304
|
overflow-x: hidden;
|
|
305
305
|
|
|
306
306
|
&__badges {
|
|
@@ -312,16 +312,6 @@
|
|
|
312
312
|
padding-left: 5px;
|
|
313
313
|
padding-right: 5px;
|
|
314
314
|
position: relative;
|
|
315
|
-
|
|
316
|
-
&:nth-of-type(1)::before,
|
|
317
|
-
&:nth-of-type(2)::before {
|
|
318
|
-
content: '';
|
|
319
|
-
position: absolute;
|
|
320
|
-
top: -20px;
|
|
321
|
-
left: 5px;
|
|
322
|
-
width: calc(100% - 10px);
|
|
323
|
-
border-bottom: 1px solid $gray;
|
|
324
|
-
}
|
|
325
315
|
}
|
|
326
316
|
}
|
|
327
317
|
}
|
|
@@ -344,8 +334,8 @@
|
|
|
344
334
|
.sort-products-list {
|
|
345
335
|
&__section {
|
|
346
336
|
@include make-col(6);
|
|
347
|
-
color:
|
|
348
|
-
border:
|
|
337
|
+
color: #000000;
|
|
338
|
+
border: 0;
|
|
349
339
|
|
|
350
340
|
> .form-row {
|
|
351
341
|
margin-bottom: 0;
|
|
@@ -256,7 +256,7 @@ $color-bar-radius: 3px;
|
|
|
256
256
|
margin-right: -5px;
|
|
257
257
|
margin-left: -5px;
|
|
258
258
|
margin-top: 0;
|
|
259
|
-
padding-top:
|
|
259
|
+
padding-top: 20px;
|
|
260
260
|
overflow-x: hidden;
|
|
261
261
|
}
|
|
262
262
|
|
|
@@ -279,20 +279,6 @@ $color-bar-radius: 3px;
|
|
|
279
279
|
padding: 3px 5px;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
-
.card {
|
|
283
|
-
&:nth-of-type(1)::before,
|
|
284
|
-
&:nth-of-type(2)::before {
|
|
285
|
-
@include media-breakpoint-down(sm) {
|
|
286
|
-
content: '';
|
|
287
|
-
position: absolute;
|
|
288
|
-
top: -20px;
|
|
289
|
-
left: 5px;
|
|
290
|
-
width: calc(100% - 10px);
|
|
291
|
-
border-bottom: 1px solid $gray;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
|
|
296
282
|
.card {
|
|
297
283
|
@include media-breakpoint-down(sm) {
|
|
298
284
|
margin-bottom: 20px;
|
|
@@ -300,24 +286,11 @@ $color-bar-radius: 3px;
|
|
|
300
286
|
display: inline-block;
|
|
301
287
|
vertical-align: top;
|
|
302
288
|
max-width: 50%;
|
|
303
|
-
margin-right: -4px;
|
|
304
289
|
padding-left: 5px;
|
|
305
290
|
padding-right: 5px;
|
|
306
291
|
width: 50%;
|
|
307
292
|
}
|
|
308
293
|
|
|
309
|
-
&:nth-of-type(1)::before,
|
|
310
|
-
&:nth-of-type(2)::before {
|
|
311
|
-
@include media-breakpoint-down(sm) {
|
|
312
|
-
content: '';
|
|
313
|
-
position: absolute;
|
|
314
|
-
top: -20px;
|
|
315
|
-
left: 5px;
|
|
316
|
-
width: calc(100% - 10px);
|
|
317
|
-
border-bottom: 1px solid $gray;
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
|
|
321
294
|
&__inner-v2.card__inner-v2.card__inner-v2 {
|
|
322
295
|
padding-bottom: 0;
|
|
323
296
|
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
@import '../helpers/helpers';
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
.products-list-v2 {
|
|
5
|
-
|
|
6
4
|
@include media-breakpoint-down(sm) {
|
|
7
5
|
margin-right: -5px;
|
|
8
6
|
margin-left: -5px;
|
|
9
7
|
margin-top: 0;
|
|
10
|
-
padding-top:
|
|
8
|
+
padding-top: 20px;
|
|
11
9
|
overflow-x: hidden;
|
|
12
10
|
}
|
|
13
11
|
|
|
@@ -17,7 +15,7 @@
|
|
|
17
15
|
font-size: 1rem;
|
|
18
16
|
|
|
19
17
|
@include media-breakpoint-down(sm) {
|
|
20
|
-
font-size: .875rem;
|
|
18
|
+
font-size: 0.875rem;
|
|
21
19
|
}
|
|
22
20
|
}
|
|
23
21
|
|
|
@@ -31,28 +29,13 @@
|
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
.card {
|
|
34
|
-
|
|
35
32
|
@include media-breakpoint-down(sm) {
|
|
36
33
|
position: relative;
|
|
37
34
|
display: inline-block;
|
|
38
35
|
vertical-align: top;
|
|
39
36
|
max-width: 50%;
|
|
40
|
-
margin-right: -4px;
|
|
41
37
|
padding-left: 5px;
|
|
42
38
|
padding-right: 5px;
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&:nth-of-type(1)::before,
|
|
47
|
-
&:nth-of-type(2)::before {
|
|
48
|
-
@include media-breakpoint-down(sm) {
|
|
49
|
-
content: '';
|
|
50
|
-
position: absolute;
|
|
51
|
-
top: -20px;
|
|
52
|
-
left: 5px;
|
|
53
|
-
width: calc(100% - 10px);
|
|
54
|
-
border-bottom: 1px solid $gray;
|
|
55
|
-
}
|
|
56
39
|
}
|
|
57
40
|
}
|
|
58
41
|
}
|
package/src/sitemap.html
CHANGED
|
@@ -527,6 +527,7 @@
|
|
|
527
527
|
<li><h5 class="mb-0">Account Pages Redesign</h5></li>
|
|
528
528
|
<li><span class="page-id">5.15</span><a href="page_my-account.html" target="_blank">My Account DIY</a></li>
|
|
529
529
|
<li><a href="page_my-account-installer.html" target="_blank">My Account Installer</a></li>
|
|
530
|
+
<li><a href="page_my-account-installer-carousel.html" target="_blank">My Account Installer Carousel</a></li>
|
|
530
531
|
<li><a href="page_my-account-trade-pro.html" target="_blank">My Account TradePro</a></li>
|
|
531
532
|
<li><a href="page_my-account-trade-pro-carousel.html" target="_blank">My Account TradePro Carousel</a></li>
|
|
532
533
|
<li><a href="page_my-account-trade-pro-carousel-double.html" target="_blank">My Account TradePro Carousel Double</a></li>
|