wickes-css2 2.112.1-develop.1 → 2.113.0-develop.1
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/build/css/pages/checkout-new.css +1 -1
- package/build/css/pages/checkout.css +1 -1
- package/build/css/pages/page_checkout_delivery-new.css +1 -1
- package/build/css/pages/page_merged-basket.css +1 -1
- package/build/img/premium-delivery.png +0 -0
- package/build/img/premium-delivery.svg +1 -0
- package/build/js/emulation.min.js +55 -3
- package/package.json +1 -1
- package/src/components/banner-news.hbs +5 -1
- package/src/components/date-selection.hbs +33 -10
- package/src/components/delivery-types.hbs +5 -0
- package/src/data/my-account/data_my-account.json +6 -26
- package/src/data/my-account/data_my-order.json +43 -0
- package/src/data/my-account/data_my-orders.json +15 -1
- package/src/img/premium-delivery.png +0 -0
- package/src/img/premium-delivery.svg +1 -0
- package/src/js/emulation/date-selection.js +59 -2
- package/src/page_checkout_premium-delivery-details.html +161 -0
- package/src/scss/components/_checkout_order.scss +1 -1
- package/src/scss/components/_date-selection-add-new-styles.scss +30 -7
- package/src/scss/components/_date-selection.scss +32 -12
- package/src/scss/pages/checkout-new.scss +7 -2
- package/src/scss/pages/page_checkout_delivery-new.scss +1 -1
- package/src/sitemap.html +2 -0
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
font-size: 1rem;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
&
|
|
145
|
+
&_highlight {
|
|
146
146
|
display: inline;
|
|
147
147
|
align-items: center;
|
|
148
148
|
position: relative;
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
z-index: $circle-z-index;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
-
.label
|
|
163
|
+
.calendar-cell-label {
|
|
164
164
|
@include font-size(10);
|
|
165
165
|
@include line-height(10);
|
|
166
166
|
border-radius: 30px;
|
|
@@ -206,6 +206,7 @@
|
|
|
206
206
|
background-color: $blue;
|
|
207
207
|
color: $white;
|
|
208
208
|
pointer-events: none;
|
|
209
|
+
gap: 12px;
|
|
209
210
|
|
|
210
211
|
&:not(:disabled):not(.disabled) {
|
|
211
212
|
cursor: default;
|
|
@@ -214,6 +215,7 @@
|
|
|
214
215
|
&__content {
|
|
215
216
|
display: flex;
|
|
216
217
|
flex-direction: column;
|
|
218
|
+
max-width: 100%;
|
|
217
219
|
|
|
218
220
|
.title {
|
|
219
221
|
font-size: 1rem;
|
|
@@ -242,11 +244,23 @@
|
|
|
242
244
|
width: 41px;
|
|
243
245
|
height: 41px;
|
|
244
246
|
flex-shrink: 0;
|
|
247
|
+
position: absolute;
|
|
248
|
+
right: 12px;
|
|
245
249
|
|
|
246
250
|
.svg-inline--fa.fa-shipping-fast {
|
|
247
251
|
font-size: 1.7rem;
|
|
248
252
|
height: auto;
|
|
249
253
|
}
|
|
254
|
+
|
|
255
|
+
&--premium {
|
|
256
|
+
width: 48px;
|
|
257
|
+
height: 48px;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
&__img {
|
|
262
|
+
width: 48px;
|
|
263
|
+
height: 48px;
|
|
250
264
|
}
|
|
251
265
|
|
|
252
266
|
.rapid-info-icon {
|
|
@@ -272,11 +286,6 @@
|
|
|
272
286
|
}
|
|
273
287
|
}
|
|
274
288
|
}
|
|
275
|
-
|
|
276
|
-
&__image {
|
|
277
|
-
position: absolute;
|
|
278
|
-
right: 12px;
|
|
279
|
-
}
|
|
280
289
|
}
|
|
281
290
|
|
|
282
291
|
.delivery-container {
|
|
@@ -358,6 +367,20 @@
|
|
|
358
367
|
}
|
|
359
368
|
}
|
|
360
369
|
|
|
370
|
+
@include media-breakpoint-up(lg) {
|
|
371
|
+
.delivery-container {
|
|
372
|
+
.btn.btn_full {
|
|
373
|
+
&.delivery-btn {
|
|
374
|
+
gap: 12px;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.subtitle {
|
|
379
|
+
max-width: 100%;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
361
384
|
@media screen and (max-width: 320px) {
|
|
362
385
|
.date-selection {
|
|
363
386
|
&__info-block {
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
&__rapid-hint
|
|
33
|
+
&__rapid-hint,
|
|
34
|
+
&__premium-hint {
|
|
34
35
|
border-top: 1px dashed $blue-dark;
|
|
35
36
|
display: flex;
|
|
36
37
|
padding: 24px;
|
|
@@ -40,6 +41,23 @@
|
|
|
40
41
|
gap: 8px;
|
|
41
42
|
align-self: stretch;
|
|
42
43
|
|
|
44
|
+
.icon {
|
|
45
|
+
font-size: 2rem;
|
|
46
|
+
height: auto;
|
|
47
|
+
color: $blue-satin;
|
|
48
|
+
|
|
49
|
+
&[src] {
|
|
50
|
+
width: 48px;
|
|
51
|
+
height: 48px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.date-selection_selected & {
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&__rapid-hint {
|
|
43
61
|
.description {
|
|
44
62
|
@include font-size(14);
|
|
45
63
|
@include line-height(22);
|
|
@@ -48,15 +66,16 @@
|
|
|
48
66
|
max-width: 226px;
|
|
49
67
|
margin-bottom: 0;
|
|
50
68
|
}
|
|
69
|
+
}
|
|
51
70
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
71
|
+
&__premium-hint {
|
|
72
|
+
.description {
|
|
73
|
+
@include font-size(14);
|
|
74
|
+
@include line-height(22);
|
|
75
|
+
text-align: center;
|
|
76
|
+
font-weight: 400;
|
|
77
|
+
max-width: 250px;
|
|
78
|
+
margin-bottom: 0;
|
|
60
79
|
}
|
|
61
80
|
}
|
|
62
81
|
}
|
|
@@ -112,7 +131,7 @@
|
|
|
112
131
|
color: $white;
|
|
113
132
|
}
|
|
114
133
|
|
|
115
|
-
&
|
|
134
|
+
&_highlight {
|
|
116
135
|
display: inline;
|
|
117
136
|
align-items: center;
|
|
118
137
|
position: relative;
|
|
@@ -130,7 +149,7 @@
|
|
|
130
149
|
z-index: $circle-z-index;
|
|
131
150
|
}
|
|
132
151
|
|
|
133
|
-
.label
|
|
152
|
+
.calendar-cell-label {
|
|
134
153
|
@include font-size(10);
|
|
135
154
|
@include line-height(10);
|
|
136
155
|
border-radius: 30px;
|
|
@@ -323,7 +342,8 @@
|
|
|
323
342
|
.delivery-time {
|
|
324
343
|
width: 100%;
|
|
325
344
|
|
|
326
|
-
&__rapid-hint
|
|
345
|
+
&__rapid-hint,
|
|
346
|
+
&__premium-hint {
|
|
327
347
|
border-top: 0;
|
|
328
348
|
background: $white;
|
|
329
349
|
height: 100%;
|
|
@@ -196,13 +196,18 @@ body {
|
|
|
196
196
|
align-items: center;
|
|
197
197
|
justify-content: center;
|
|
198
198
|
flex-shrink: 0;
|
|
199
|
-
width:
|
|
200
|
-
height:
|
|
199
|
+
width: 48px;
|
|
200
|
+
height: 48px;
|
|
201
201
|
|
|
202
202
|
.svg-inline--fa.fa-shipping-fast {
|
|
203
203
|
font-size: 1.7rem;
|
|
204
204
|
height: auto;
|
|
205
205
|
}
|
|
206
|
+
|
|
207
|
+
.banner-news__img {
|
|
208
|
+
width: 48px;
|
|
209
|
+
height: auto;
|
|
210
|
+
}
|
|
206
211
|
}
|
|
207
212
|
}
|
|
208
213
|
|
package/src/sitemap.html
CHANGED
|
@@ -1190,6 +1190,8 @@
|
|
|
1190
1190
|
|
|
1191
1191
|
<li><span class="page-id">9.26</span><a href="page_checkout_payment-details_with-card-loader.html"
|
|
1192
1192
|
target="_blank">Checkout- Payment Details with card loader</a></li>
|
|
1193
|
+
<li><span class="page-id">9.11</span><a href="page_checkout_premium-delivery-details.html"
|
|
1194
|
+
target="_blank">Checkout - Premium Delivery Details</a></li>
|
|
1193
1195
|
</ul>
|
|
1194
1196
|
|
|
1195
1197
|
<h3>App</h3>
|