wickes-css2 2.105.0-develop.1 → 2.105.0-develop.3
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 +3 -1
- package/build/css/category-main.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/page_checkout_delivery-new.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/account-members.min.js +1 -1
- package/build/js/kitchen/kitchen-plp.min.js +1 -1
- package/build/js/page/klarna-modal-scroll-disable.js +2 -2
- package/build/js/page/online-exclusive.js +0 -1
- package/package.json +4 -2
- package/src/components/date-selection.hbs +25 -6
- package/src/components/generate-project-id.hbs +1 -1
- package/src/components/shopping-list-with-share-list-v2.hbs +28 -10
- package/src/components/shopping-list.hbs +5 -5
- package/src/js/page/klarna-modal-scroll-disable.js +2 -2
- package/src/js/page/online-exclusive.js +0 -1
- package/src/page_my-shopping-list-hide-download.html +1 -1
- package/src/page_project-list-with-new-share-popup-android.html +14 -0
- package/src/page_project-list-with-new-share-popup-ios.html +14 -0
- package/src/scss/common/_common.scss +5 -0
- package/src/scss/components/_custom-slider.scss +10 -10
- package/src/scss/components/_date-selection-add-new-styles.scss +42 -0
- package/src/scss/components/_date-selection.scss +79 -0
- package/src/scss/components/_shared-shopping-list.scss +22 -0
- package/src/scss/components/_shopping-list.scss +18 -8
- package/src/scss/helpers/_variables.scss +2 -0
- package/src/scss/kitchen-plp-main.scss +0 -1
- package/src/sitemap.html +9 -1
|
@@ -2,8 +2,8 @@ var Wick = Wick || {};
|
|
|
2
2
|
|
|
3
3
|
Wick.KlarnaModalScrollDisable = (function () {
|
|
4
4
|
const $body = $('body'),
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
klarnaPopUp = 'klarna-osm-interstitial',
|
|
6
|
+
scrollDisableClass = 'overflow-hidden';
|
|
7
7
|
|
|
8
8
|
window.addEventListener(klarnaPopUp, (e) => {
|
|
9
9
|
let isKlarnaPopUpActive = e.detail.action === 'show';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickes-css2",
|
|
3
|
-
"version": "2.105.0-develop.
|
|
3
|
+
"version": "2.105.0-develop.3",
|
|
4
4
|
"description": "CSS and JS and page templates in use by Wickes",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,8 +15,9 @@
|
|
|
15
15
|
"prettier --write"
|
|
16
16
|
],
|
|
17
17
|
"src/scss/**/*.{scss,css}": [
|
|
18
|
+
"sass-lint-auto-fix",
|
|
18
19
|
"prettier --write",
|
|
19
|
-
"sass-lint-
|
|
20
|
+
"sass-lint -c .sasslintrc"
|
|
20
21
|
]
|
|
21
22
|
},
|
|
22
23
|
"keywords": [
|
|
@@ -70,6 +71,7 @@
|
|
|
70
71
|
"prettier": "^3.7.4",
|
|
71
72
|
"pug": "2.0.4",
|
|
72
73
|
"sass": "^1.54.9",
|
|
74
|
+
"sass-lint": "^1.13.1",
|
|
73
75
|
"sass-lint-auto-fix": "^0.21.2",
|
|
74
76
|
"semantic-release": "^16.0.0-beta.9",
|
|
75
77
|
"through2": "^4.0.2",
|
|
@@ -28,7 +28,18 @@
|
|
|
28
28
|
<div class="calendar__row">
|
|
29
29
|
<div class="calendar__row_days">
|
|
30
30
|
{{/if}}
|
|
31
|
-
|
|
31
|
+
<span class="calendar__cell calendar__cell_cnt{{#if isInactive}} calendar__cell_inactive{{/if}}{{#if (eq day '1')}}{{#unless isInactive}} calendar__cell_rapid{{/unless}}{{/if}}">
|
|
32
|
+
{{#if (eq day '1')}}
|
|
33
|
+
{{#unless isInactive}}
|
|
34
|
+
{{day}}
|
|
35
|
+
<span class="label-rapid">Rapid</span>
|
|
36
|
+
{{else}}
|
|
37
|
+
{{day}}
|
|
38
|
+
{{/unless}}
|
|
39
|
+
{{else}}
|
|
40
|
+
{{day}}
|
|
41
|
+
{{/if}}
|
|
42
|
+
</span>
|
|
32
43
|
{{#if (eq (mod_inc @index 7) 0)}}
|
|
33
44
|
</div>
|
|
34
45
|
</div>
|
|
@@ -53,11 +64,19 @@
|
|
|
53
64
|
</div>
|
|
54
65
|
</div>
|
|
55
66
|
<div class="delivery-time">
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
67
|
+
<div class="delivery-time__rapid-hint">
|
|
68
|
+
<span class="icon-wrap icon-wrap--large">
|
|
69
|
+
<i class="fas fa-shipping-fast icon"></i>
|
|
70
|
+
</span>
|
|
71
|
+
<p class="description">
|
|
72
|
+
Select todays’ day on the calendar to get Wickes Rapid delivery
|
|
73
|
+
</p>
|
|
74
|
+
</div>
|
|
75
|
+
{{> delivery-types
|
|
76
|
+
title=titleDelivery
|
|
77
|
+
subtitle=subtitleDelivery
|
|
78
|
+
classImg=imgDelivery
|
|
79
|
+
}}
|
|
61
80
|
</div>
|
|
62
81
|
</div>
|
|
63
82
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="row">
|
|
5
5
|
<div class="col-12 generate-project-id__col">
|
|
6
6
|
<button class="generate-project-id__btn btn btn-transparent">
|
|
7
|
-
<span class="btn_text btn-transparent__text">Generate
|
|
7
|
+
<span class="btn_text btn-transparent__text">Generate project ID</span>
|
|
8
8
|
<i class="btn-transparent__icon far fa-download"></i>
|
|
9
9
|
<a href="#" class="copy-barcode page-footer__copy" style="display:none;">
|
|
10
10
|
<i class="far fa-copy"></i>
|
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
<div class="container component pt-0 globalMessages">
|
|
3
3
|
<div class="row">
|
|
4
4
|
<div class="col-12">
|
|
5
|
-
<div
|
|
6
|
-
|
|
7
|
-
<div
|
|
5
|
+
<div
|
|
6
|
+
class="primary-text mb-3">{{> notifications notification-page.success-product-added-to-shop-list withCloseBtn="true"}}</div>
|
|
7
|
+
<div
|
|
8
|
+
class="primary-text mb-3">{{> notifications notification-page.warning-product-added-to-shop-list withCloseBtn="true"}}</div>
|
|
9
|
+
<div
|
|
10
|
+
class="primary-text">{{> notifications notification-page.error-load-pdf-to-shop-list withCloseBtn="true"}}</div>
|
|
8
11
|
</div>
|
|
9
12
|
</div>
|
|
10
13
|
</div>
|
|
@@ -13,6 +16,7 @@
|
|
|
13
16
|
<h1 class="page-header__title">Hill - 24-07-23 - Ohio White</h1>
|
|
14
17
|
</div>
|
|
15
18
|
</div>
|
|
19
|
+
{{> generate-project-id}}
|
|
16
20
|
{{#if emptyShopList}}
|
|
17
21
|
<div class="container component py-4">
|
|
18
22
|
<div class="row">
|
|
@@ -35,15 +39,29 @@
|
|
|
35
39
|
<div class="row m-0">
|
|
36
40
|
<div class="actions actions--v2">
|
|
37
41
|
<div class="dropdown-share-list">
|
|
38
|
-
<button class="btn btn_full btn-secondary share-call share-call__desktop" role="button"
|
|
39
|
-
|
|
42
|
+
<button class="btn btn_full btn-secondary share-call share-call__desktop" role="button"
|
|
43
|
+
id="dropdownShareLinks" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
|
44
|
+
data-display="static">
|
|
45
|
+
{{#if isAndroid}}
|
|
46
|
+
<i class="fas fa-share-alt icon"></i>
|
|
47
|
+
{{else}}
|
|
48
|
+
<svg class="ios-custom-share-icon" width="14" height="24" viewBox="0 0 14 16" fill="none"
|
|
49
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
50
|
+
<path
|
|
51
|
+
d="M7.70625 0.292969C7.31563 -0.0976562 6.68125 -0.0976562 6.29063 0.292969L2.29063 4.29297C1.9 4.68359 1.9 5.31797 2.29063 5.70859C2.68125 6.09922 3.31562 6.09922 3.70625 5.70859L6 3.41484V9.99922C6 10.5523 6.44688 10.9992 7 10.9992C7.55312 10.9992 8 10.5523 8 9.99922V3.41484L10.2937 5.70859C10.6844 6.09922 11.3188 6.09922 11.7094 5.70859C12.1 5.31797 12.1 4.68359 11.7094 4.29297L7.70937 0.292969H7.70625ZM2 10.9992C2 10.4461 1.55313 9.99922 1 9.99922C0.446875 9.99922 0 10.4461 0 10.9992V12.9992C0 14.6555 1.34375 15.9992 3 15.9992H11C12.6562 15.9992 14 14.6555 14 12.9992V10.9992C14 10.4461 13.5531 9.99922 13 9.99922C12.4469 9.99922 12 10.4461 12 10.9992V12.9992C12 13.5523 11.5531 13.9992 11 13.9992H3C2.44688 13.9992 2 13.5523 2 12.9992V10.9992Z"
|
|
52
|
+
fill="#0277BD" />
|
|
53
|
+
</svg>
|
|
54
|
+
{{/if}}
|
|
40
55
|
<span>Share</span>
|
|
41
56
|
</button>
|
|
42
57
|
<div class="dropdown-menu" aria-labelledby="dropdownShareLinks">
|
|
43
|
-
<div class="a2a_kit a2a_kit_size_32 a2a_default_style"
|
|
58
|
+
<div class="a2a_kit a2a_kit_size_32 a2a_default_style"
|
|
59
|
+
data-a2a-url="https://www-uat1.dev.wickes.co.uk/project-list/be91b064-13ad-4e27-b51d-67e77a53f430"
|
|
60
|
+
data-a2a-title="Please check my Wickes project list" style="line-height: 32px;">
|
|
44
61
|
<ul class="socials__list">
|
|
45
62
|
<li class="socials__item">
|
|
46
|
-
<a type="button" href="#" class="a2a_button_email" data-toggle="modal"
|
|
63
|
+
<a type="button" href="#" class="a2a_button_email" data-toggle="modal"
|
|
64
|
+
data-target="#share-list-modal"></a>
|
|
47
65
|
</li>
|
|
48
66
|
<li class="socials__item">
|
|
49
67
|
<a class="a2a_button_facebook" target="_blank" rel="nofollow noopener" href="/#facebook"></a>
|
|
@@ -58,9 +76,9 @@
|
|
|
58
76
|
</div>
|
|
59
77
|
</div>
|
|
60
78
|
</div>
|
|
61
|
-
<button href="#" class="btn btn_full btn-
|
|
79
|
+
<button href="#" class="btn btn_full btn-primary download-pdf">
|
|
62
80
|
<i class="fas fa-file-download icon"></i>
|
|
63
|
-
<span>Download</span>
|
|
81
|
+
<span>Download pdf</span>
|
|
64
82
|
</button>
|
|
65
83
|
</div>
|
|
66
84
|
|
|
@@ -71,7 +89,7 @@
|
|
|
71
89
|
<div class="content shop-list-info d-flex">
|
|
72
90
|
<div class="shop-list-info_item heading-4">
|
|
73
91
|
<span class="shop-list-info_count">5</span> item<span class="shop-list-info_one-item">s</span> (<span
|
|
74
|
-
|
|
92
|
+
class="shop-list-info_left">95</span> left)
|
|
75
93
|
</div>
|
|
76
94
|
</div>
|
|
77
95
|
</div>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<div class="container mb-3">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
<a class="btn btn-secondary btn-back-to-project-list" href="/page_my-project-list-multiple.html">
|
|
3
|
+
<i class="fas fa-arrow-left"></i>
|
|
4
|
+
<span>
|
|
5
5
|
Back to Project Lists hub
|
|
6
6
|
</span>
|
|
7
|
-
|
|
7
|
+
</a>
|
|
8
8
|
</div>
|
|
9
9
|
<div class="globalMessages container component pt-0 pb-0">
|
|
10
10
|
<div class="row">
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
<i class="fas fa-share-alt icon"></i>
|
|
65
65
|
<span>Share</span>
|
|
66
66
|
</button>
|
|
67
|
-
<button href="#" class="btn btn_full btn-secondary download-pdf
|
|
67
|
+
<button href="#" class="btn btn_full btn-secondary download-pdf">
|
|
68
68
|
<i class="fas fa-file-download icon"></i>
|
|
69
69
|
<span>Download</span>
|
|
70
70
|
</button>
|
|
@@ -2,8 +2,8 @@ var Wick = Wick || {};
|
|
|
2
2
|
|
|
3
3
|
Wick.KlarnaModalScrollDisable = (function () {
|
|
4
4
|
const $body = $('body'),
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
klarnaPopUp = 'klarna-osm-interstitial',
|
|
6
|
+
scrollDisableClass = 'overflow-hidden';
|
|
7
7
|
|
|
8
8
|
window.addEventListener(klarnaPopUp, (e) => {
|
|
9
9
|
let isKlarnaPopUpActive = e.detail.action === 'show';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{{/content}}
|
|
4
4
|
{{#content "body"}}
|
|
5
5
|
<main>
|
|
6
|
-
{{> shopping-list emptyShopList=false isUserRegister=true pagination=true note=true
|
|
6
|
+
{{> shopping-list emptyShopList=false isUserRegister=true pagination=true note=true}}
|
|
7
7
|
</main>
|
|
8
8
|
{{/content}}
|
|
9
9
|
{{#content "foot" mode="append"}}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{{#extend "base" hybrisClass="hybris-class" pageClass="page_empty-shared-shopping-list" title="Project list - Bicester Hub" hideBanner="true" shopListEmpty="true"}}
|
|
2
|
+
{{#content "head" mode="append"}}
|
|
3
|
+
<link type="text/css" rel="stylesheet" href="./css/pages/bicester-project-list.css">
|
|
4
|
+
{{/content}}
|
|
5
|
+
{{#content "body"}}
|
|
6
|
+
<main>
|
|
7
|
+
{{> shopping-list-with-share-list-v2 isUserRegister=true isAndroid=true}}
|
|
8
|
+
</main>
|
|
9
|
+
{{/content}}
|
|
10
|
+
{{#content "foot" mode="append"}}
|
|
11
|
+
<script src="./js/project-list-note.min.js"></script>
|
|
12
|
+
<script async src="https://static.addtoany.com/menu/page.js"></script>
|
|
13
|
+
{{/content}}
|
|
14
|
+
{{/extend}}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{{#extend "base" hybrisClass="hybris-class" pageClass="page_empty-shared-shopping-list tp-ios" title="Project list - Bicester Hub" hideBanner="true" shopListEmpty="true"}}
|
|
2
|
+
{{#content "head" mode="append"}}
|
|
3
|
+
<link type="text/css" rel="stylesheet" href="./css/pages/bicester-project-list.css">
|
|
4
|
+
{{/content}}
|
|
5
|
+
{{#content "body"}}
|
|
6
|
+
<main>
|
|
7
|
+
{{> shopping-list-with-share-list-v2 isUserRegister=true}}
|
|
8
|
+
</main>
|
|
9
|
+
{{/content}}
|
|
10
|
+
{{#content "foot" mode="append"}}
|
|
11
|
+
<script src="./js/project-list-note.min.js"></script>
|
|
12
|
+
<script async src="https://static.addtoany.com/menu/page.js"></script>
|
|
13
|
+
{{/content}}
|
|
14
|
+
{{/extend}}
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
.messages {
|
|
119
119
|
display: flex;
|
|
120
120
|
flex-direction: column;
|
|
121
|
-
border:
|
|
121
|
+
border: 0;
|
|
122
122
|
background: none;
|
|
123
123
|
|
|
124
124
|
&__text {
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
justify-content: space-between;
|
|
152
152
|
grid-gap: 8px;
|
|
153
153
|
padding: 8px 0;
|
|
154
|
-
border:
|
|
154
|
+
border: 0;
|
|
155
155
|
|
|
156
156
|
& + .products__item {
|
|
157
157
|
border-top: 1px solid $gray-light;
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
min-width: 24px;
|
|
185
185
|
padding: 4px;
|
|
186
186
|
background: 0 0;
|
|
187
|
-
border:
|
|
187
|
+
border: 0;
|
|
188
188
|
display: flex;
|
|
189
189
|
align-items: center;
|
|
190
190
|
justify-content: center;
|
|
@@ -290,8 +290,8 @@
|
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
&[disabled] {
|
|
293
|
-
border:
|
|
294
|
-
opacity:
|
|
293
|
+
border: 0;
|
|
294
|
+
opacity: .6;
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
}
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
.btn--remove,
|
|
300
300
|
.btn--quantity {
|
|
301
301
|
&:hover {
|
|
302
|
-
opacity:
|
|
302
|
+
opacity: .7;
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
305
|
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
transition: all .3s ease;
|
|
336
336
|
|
|
337
337
|
&.footer-fixed {
|
|
338
|
-
box-shadow:
|
|
338
|
+
box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, .08);
|
|
339
339
|
position: fixed;
|
|
340
340
|
width: 100%;
|
|
341
341
|
left: 0;
|
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
.custom-slider__footer {
|
|
409
|
-
box-shadow:
|
|
409
|
+
box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, .08);
|
|
410
410
|
flex-direction: column;
|
|
411
411
|
}
|
|
412
412
|
}
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
font-weight: 700;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
&[aria-expanded=
|
|
439
|
+
&[aria-expanded='true'] {
|
|
440
440
|
.icon-wrap .arrow-icon {
|
|
441
441
|
transform: rotate(180deg);
|
|
442
442
|
}
|
|
@@ -534,7 +534,7 @@
|
|
|
534
534
|
transform: rotate(180deg);
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
&[aria-expanded=
|
|
537
|
+
&[aria-expanded='true'] {
|
|
538
538
|
.icon {
|
|
539
539
|
transform: rotate(0);
|
|
540
540
|
}
|
|
@@ -142,6 +142,48 @@
|
|
|
142
142
|
font-weight: 500;
|
|
143
143
|
font-size: 1rem;
|
|
144
144
|
}
|
|
145
|
+
|
|
146
|
+
&_rapid {
|
|
147
|
+
display: inline;
|
|
148
|
+
align-items: center;
|
|
149
|
+
position: relative;
|
|
150
|
+
|
|
151
|
+
&::after {
|
|
152
|
+
content: '';
|
|
153
|
+
position: relative;
|
|
154
|
+
display: block;
|
|
155
|
+
background: $ma-white;
|
|
156
|
+
border-radius: 50%;
|
|
157
|
+
width: 34px;
|
|
158
|
+
height: 34px;
|
|
159
|
+
top: -34px;
|
|
160
|
+
left: calc(50% - 34px / 2);
|
|
161
|
+
z-index: $circle-z-index;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.label-rapid {
|
|
165
|
+
@include font-size(10);
|
|
166
|
+
@include line-height(10);
|
|
167
|
+
border-radius: 30px;
|
|
168
|
+
border: 1px solid $white;
|
|
169
|
+
background: $pacific-depths;
|
|
170
|
+
position: absolute;
|
|
171
|
+
bottom: -8px;
|
|
172
|
+
left: 50%;
|
|
173
|
+
font-weight: 700;
|
|
174
|
+
transform: translate(-50%, 0);
|
|
175
|
+
padding: 2px 4px;
|
|
176
|
+
color: $white;
|
|
177
|
+
z-index: $label-z-index;
|
|
178
|
+
pointer-events: none;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.calendar__cell_selected {
|
|
182
|
+
&::after {
|
|
183
|
+
background: $blue;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
145
187
|
}
|
|
146
188
|
|
|
147
189
|
&.date-selection_selected {
|
|
@@ -29,6 +29,36 @@
|
|
|
29
29
|
display: none;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
|
|
33
|
+
&__rapid-hint {
|
|
34
|
+
border-top: 1px dashed $blue-dark;
|
|
35
|
+
display: flex;
|
|
36
|
+
padding: 24px;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 8px;
|
|
41
|
+
align-self: stretch;
|
|
42
|
+
|
|
43
|
+
.description {
|
|
44
|
+
@include font-size(14);
|
|
45
|
+
@include line-height(22);
|
|
46
|
+
text-align: center;
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
max-width: 226px;
|
|
49
|
+
margin-bottom: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon {
|
|
53
|
+
font-size: 2rem;
|
|
54
|
+
height: auto;
|
|
55
|
+
color: $blue-satin;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.date-selection_selected & {
|
|
59
|
+
display: none;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
32
62
|
}
|
|
33
63
|
|
|
34
64
|
.calendar {
|
|
@@ -81,6 +111,49 @@
|
|
|
81
111
|
background: $blue;
|
|
82
112
|
color: $white;
|
|
83
113
|
}
|
|
114
|
+
|
|
115
|
+
&_rapid {
|
|
116
|
+
display: inline;
|
|
117
|
+
align-items: center;
|
|
118
|
+
position: relative;
|
|
119
|
+
|
|
120
|
+
&::after {
|
|
121
|
+
content: '';
|
|
122
|
+
position: relative;
|
|
123
|
+
display: block;
|
|
124
|
+
background: $ma-white;
|
|
125
|
+
border-radius: 50%;
|
|
126
|
+
width: 34px;
|
|
127
|
+
height: 34px;
|
|
128
|
+
top: -34px;
|
|
129
|
+
left: calc(50% - 34px / 2);
|
|
130
|
+
z-index: $circle-z-index;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.label-rapid {
|
|
134
|
+
@include font-size(10);
|
|
135
|
+
@include line-height(10);
|
|
136
|
+
border-radius: 30px;
|
|
137
|
+
border: 1px solid $white;
|
|
138
|
+
background: $pacific-depths;
|
|
139
|
+
position: absolute;
|
|
140
|
+
bottom: -8px;
|
|
141
|
+
left: 50%;
|
|
142
|
+
font-style: normal;
|
|
143
|
+
font-weight: 700;
|
|
144
|
+
transform: translate(-50%, 0);
|
|
145
|
+
padding: 2px 4px;
|
|
146
|
+
color: $white;
|
|
147
|
+
z-index: $label-z-index;
|
|
148
|
+
pointer-events: none;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
&.calendar__cell_selected {
|
|
152
|
+
&:after {
|
|
153
|
+
background: $blue;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
84
157
|
}
|
|
85
158
|
}
|
|
86
159
|
|
|
@@ -249,6 +322,12 @@
|
|
|
249
322
|
|
|
250
323
|
.delivery-time {
|
|
251
324
|
width: 100%;
|
|
325
|
+
|
|
326
|
+
&__rapid-hint {
|
|
327
|
+
border-top: 0;
|
|
328
|
+
background: $white;
|
|
329
|
+
height: 100%;
|
|
330
|
+
}
|
|
252
331
|
}
|
|
253
332
|
|
|
254
333
|
.date-selection {
|
|
@@ -93,6 +93,28 @@
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
+
|
|
97
|
+
.ios-custom-share-icon {
|
|
98
|
+
margin-right: 13px;
|
|
99
|
+
|
|
100
|
+
path {
|
|
101
|
+
transition: fill 0.2s ease;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.btn-secondary:hover,
|
|
106
|
+
.btn-secondary:active,
|
|
107
|
+
.btn-secondary:focus {
|
|
108
|
+
.ios-custom-share-icon path {
|
|
109
|
+
fill: $white !important;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.tp-app {
|
|
115
|
+
.btn-back-to-project-list {
|
|
116
|
+
display: none !important;
|
|
117
|
+
}
|
|
96
118
|
}
|
|
97
119
|
|
|
98
120
|
.copy-link_hovered {
|
|
@@ -130,13 +130,11 @@
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
|
|
134
133
|
& .icon-info-component {
|
|
135
134
|
vertical-align: middle;
|
|
136
135
|
margin-right: 5px;
|
|
137
136
|
}
|
|
138
137
|
|
|
139
|
-
|
|
140
138
|
&-text {
|
|
141
139
|
text-transform: capitalize;
|
|
142
140
|
font-size: 1rem;
|
|
@@ -158,7 +156,6 @@
|
|
|
158
156
|
border-color: $red;
|
|
159
157
|
}
|
|
160
158
|
}
|
|
161
|
-
|
|
162
159
|
}
|
|
163
160
|
|
|
164
161
|
&__count {
|
|
@@ -205,13 +202,29 @@
|
|
|
205
202
|
}
|
|
206
203
|
|
|
207
204
|
&__error {
|
|
208
|
-
font-size: .75rem;
|
|
205
|
+
font-size: 0.75rem;
|
|
209
206
|
line-height: 1rem;
|
|
210
207
|
margin: 0;
|
|
211
208
|
color: $red;
|
|
212
209
|
visibility: hidden;
|
|
213
210
|
}
|
|
214
211
|
}
|
|
212
|
+
|
|
213
|
+
.ios-custom-share-icon {
|
|
214
|
+
margin-right: 13px;
|
|
215
|
+
|
|
216
|
+
path {
|
|
217
|
+
transition: fill 0.2s ease;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.btn-secondary:hover,
|
|
222
|
+
.btn-secondary:active,
|
|
223
|
+
.btn-secondary:focus {
|
|
224
|
+
.ios-custom-share-icon path {
|
|
225
|
+
fill: $white !important;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
215
228
|
}
|
|
216
229
|
|
|
217
230
|
.shopping-list {
|
|
@@ -299,7 +312,6 @@
|
|
|
299
312
|
}
|
|
300
313
|
}
|
|
301
314
|
|
|
302
|
-
|
|
303
315
|
@include media-breakpoint-down(lg) {
|
|
304
316
|
.shopping-list {
|
|
305
317
|
.ref {
|
|
@@ -369,7 +381,6 @@
|
|
|
369
381
|
}
|
|
370
382
|
}
|
|
371
383
|
}
|
|
372
|
-
|
|
373
384
|
}
|
|
374
385
|
}
|
|
375
386
|
|
|
@@ -459,7 +470,7 @@
|
|
|
459
470
|
h1 {
|
|
460
471
|
text-align: center;
|
|
461
472
|
margin-bottom: 0;
|
|
462
|
-
padding-bottom: .67em;
|
|
473
|
+
padding-bottom: 0.67em;
|
|
463
474
|
font-size: 34px !important;
|
|
464
475
|
}
|
|
465
476
|
|
|
@@ -509,4 +520,3 @@
|
|
|
509
520
|
}
|
|
510
521
|
}
|
|
511
522
|
}
|
|
512
|
-
|
package/src/sitemap.html
CHANGED
|
@@ -629,10 +629,18 @@
|
|
|
629
629
|
</li>
|
|
630
630
|
<li>
|
|
631
631
|
<span class="page-id">6.24</span>
|
|
632
|
-
<a href="page_project-list-
|
|
632
|
+
<a href="page_project-list-with-new-share-popup-ios.html" target="_blank">My Project list Multiple - iOS share button</a>
|
|
633
633
|
</li>
|
|
634
634
|
<li>
|
|
635
635
|
<span class="page-id">6.25</span>
|
|
636
|
+
<a href="page_project-list-with-new-share-popup-android.html" target="_blank">My Project list Multiple - Android share button</a>
|
|
637
|
+
</li>
|
|
638
|
+
<li>
|
|
639
|
+
<span class="page-id">6.26</span>
|
|
640
|
+
<a href="page_project-list-generate-project-list-ID.html" target="_blank">Project list - Generate Project list ID</a>
|
|
641
|
+
</li>
|
|
642
|
+
<li>
|
|
643
|
+
<span class="page-id">6.27</span>
|
|
636
644
|
<a href="page_project-list-vat.html" target="_blank">Project list - Vat</a>
|
|
637
645
|
</li>
|
|
638
646
|
</ul>
|