wickes-css2 2.103.0-IC-977-colors-semantic.2 → 2.103.0-IC-976-pre-commit-lint.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/category-main.css +1 -1
- package/build/css/components/card-product-banner.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/page_my-orders.css +1 -1
- package/build/css/pages/page_products-list-combined.css +1 -1
- package/build/css/pages/page_products-list.css +1 -1
- package/build/css/pdp-main-before-combine.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/basket.min.js +1 -1
- package/build/js/bundle.min.js +1 -1
- package/build/js/checkout.min.js +1 -1
- package/build/js/emulation.min.js +54 -0
- package/build/js/kitchen/kitchen-plp.min.js +1 -1
- package/build/js/merged-checkout.min.js +1 -1
- package/build/js/page/plp-cards-v2.js +15 -6
- package/build/js/page/plp-load-more.js +1 -1
- package/build/js/plp.bundle.min.js +1 -1
- package/build/js/project-list.min.js +1 -1
- package/package.json +7 -3
- package/src/components/card_product_v2.hbs +10 -5
- package/src/components/card_sponsor_banner.hbs +8 -0
- package/src/components/card_sponsor_product.hbs +6 -0
- package/src/components/injected-content.hbs +1 -1
- package/src/data/data_search-results_v2.json +56 -141
- package/src/js/components/banner-placement-manager.js +258 -0
- package/src/js/emulation/banner-placement-manager.js +53 -0
- package/src/js/page/plp-cards-v2.js +15 -6
- package/src/js/page/plp-load-more.js +1 -1
- package/src/page_plp_v2.html +16 -6
- package/src/page_search-results.html +12 -2
- package/src/scss/components/_custom-slider.scss +6 -6
- package/src/scss/components/card-product-banner.scss +91 -3
- package/src/scss/helpers/_variables.scss +1 -3
- package/src/scss/libs/_bootstrap-extracted.scss +2 -2
- package/src/scss/libs/_cat-libs.scss +10 -10
- package/src/scss/libs/_font-awesome-icons.scss +2 -0
- package/src/scss/libs/_homepage-libs.scss +12 -12
- package/src/scss/libs/_plp-libs.scss +11 -11
- package/src/scss/libs/_skeleton.scss +2 -2
- package/src/scss/libs/_store-locator-libs.scss +1 -1
- package/src/scss/libs/flatpickr.scss +4 -4
- package/src/scss/pages/_checkout-confirmation-new.scss +2 -2
- package/src/scss/pages/page_products-list-combined.scss +11 -0
- package/src/scss/pages/page_products-list.scss +8 -0
- package/src/scss/partials/_main-nav.scss +2 -2
- package/src/js/components/product-banner.js +0 -148
- package/src/scss/helpers/_colors-semantic.scss +0 -120
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
// --------------------------------------------------------------------------
|
|
2
|
-
// Surfaces
|
|
3
|
-
// --------------------------------------------------------------------------
|
|
4
|
-
$surface-surf-primary: $white; // #ffffff
|
|
5
|
-
|
|
6
|
-
// --------------------------------------------------------------------------
|
|
7
|
-
// Containers
|
|
8
|
-
// --------------------------------------------------------------------------
|
|
9
|
-
$container-cont-01: $white; // #ffffff
|
|
10
|
-
$container-cont-02: $gray-bg; // #f8f8f8
|
|
11
|
-
$container-cont-03: $gray-light; // #eeeeee
|
|
12
|
-
$container-cont-04: $warm-grey; // #8b8b8b
|
|
13
|
-
|
|
14
|
-
$container-cont-brand: $blue-dark; // #0a3055
|
|
15
|
-
$container-cont-brand-light: $ma-white; // #f4f9fe
|
|
16
|
-
$container-cont-action: $blue; // #0277bd
|
|
17
|
-
$container-cont-checkout: $green; // #67a509
|
|
18
|
-
$container-cont-offer: $red; // #cf000f
|
|
19
|
-
|
|
20
|
-
// --------------------------------------------------------------------------
|
|
21
|
-
// Borders
|
|
22
|
-
// --------------------------------------------------------------------------
|
|
23
|
-
$border-brand: $blue-dark; // #0a3055
|
|
24
|
-
$border-bold: $gray-dark; // #3e3e3e
|
|
25
|
-
$border-default: $gray; // #cccccc
|
|
26
|
-
$border-secondary: $gray-light; // #eeeeee
|
|
27
|
-
$border-focus: $blue; // #0277bd
|
|
28
|
-
$border-error: $red; // #cf000f
|
|
29
|
-
$border-inverted: $white; // #ffffff
|
|
30
|
-
|
|
31
|
-
// --------------------------------------------------------------------------
|
|
32
|
-
// Text
|
|
33
|
-
// --------------------------------------------------------------------------
|
|
34
|
-
$text-body: $gray-dark; // #3e3e3e
|
|
35
|
-
$text-secondary: $squant; // #666666
|
|
36
|
-
$text-tertiary: $warm-grey; // #8b8b8b
|
|
37
|
-
$text-quinary: $gray-wait; // #9d9d9c
|
|
38
|
-
$text-inverted: $white; // #ffffff
|
|
39
|
-
$text-brand: $blue-dark; // #0a3055
|
|
40
|
-
$text-link: $blue; // #0277bd
|
|
41
|
-
$text-offer: $red; // #cf000f
|
|
42
|
-
$text-success: $green; // #67a509
|
|
43
|
-
$text-error: $red; // #cf000f
|
|
44
|
-
|
|
45
|
-
// --------------------------------------------------------------------------
|
|
46
|
-
// Icons
|
|
47
|
-
// --------------------------------------------------------------------------
|
|
48
|
-
$icon-brand: $blue-dark; // #0a3055
|
|
49
|
-
$icon-primary: $gray-dark; // #3e3e3e
|
|
50
|
-
$icon-secondary: $warm-grey; // #8b8b8b
|
|
51
|
-
$icon-tertiary: $gray; // #cccccc
|
|
52
|
-
$icon-inverted: $white; // #ffffff
|
|
53
|
-
$icon-action: $blue; // #0277bd
|
|
54
|
-
$icon-checkout: $green; // #67a509
|
|
55
|
-
$icon-success: $green; // #67a509
|
|
56
|
-
$icon-warning: $orange; // #ffc439
|
|
57
|
-
$icon-error: $red; // #cf000f
|
|
58
|
-
$icon-brand-light: $blue-satin; // #99b5cf
|
|
59
|
-
|
|
60
|
-
// --------------------------------------------------------------------------
|
|
61
|
-
// Labels / Badges
|
|
62
|
-
// --------------------------------------------------------------------------
|
|
63
|
-
$label-offer: $red; // #cf000f
|
|
64
|
-
$label-new: $green-light; // #9acd32
|
|
65
|
-
$label-clearance: $yellow; // #f7ca18
|
|
66
|
-
|
|
67
|
-
// --------------------------------------------------------------------------
|
|
68
|
-
// Logos
|
|
69
|
-
// --------------------------------------------------------------------------
|
|
70
|
-
$logo-main: $pacific-depths; // #004587
|
|
71
|
-
$logo-stroke-text: $white; // #ffffff
|
|
72
|
-
$logo-tradepro: $gray-wait; // #9d9d9c
|
|
73
|
-
|
|
74
|
-
// --------------------------------------------------------------------------
|
|
75
|
-
// Notifications
|
|
76
|
-
// --------------------------------------------------------------------------
|
|
77
|
-
$notification-success-bg: rgba($green, .05); // #67a5090d
|
|
78
|
-
$notification-warning-bg: rgba($orange, .05); // #ffc4390d
|
|
79
|
-
$notification-error-bg: rgba($red, .05); // #cf000f0d
|
|
80
|
-
|
|
81
|
-
// --------------------------------------------------------------------------
|
|
82
|
-
// State overlays (generic)
|
|
83
|
-
// --------------------------------------------------------------------------
|
|
84
|
-
$state-overlay-hover: rgba($black, .2); // #00000033
|
|
85
|
-
$state-overlay-pressed: rgba($black, .4); // #00000066
|
|
86
|
-
$state-overlay-disabled: rgba($white, .6); // #ffffff99
|
|
87
|
-
|
|
88
|
-
// --------------------------------------------------------------------------
|
|
89
|
-
// Additional (brand / payments / design usage)
|
|
90
|
-
// --------------------------------------------------------------------------
|
|
91
|
-
$additional-design-appointment: #2d8093;
|
|
92
|
-
$additional-review-star-pdp: #f7941d;
|
|
93
|
-
$additional-paypal: $orange; // #ffc439
|
|
94
|
-
$additional-klarna: #ffb3c7;
|
|
95
|
-
$additional-finance: $virid-darker; // #205c56
|
|
96
|
-
$additional-events: $virid-darkest; // #00857c
|
|
97
|
-
|
|
98
|
-
// --------------------------------------------------------------------------
|
|
99
|
-
// Button overlays (primary action = blue)
|
|
100
|
-
// --------------------------------------------------------------------------
|
|
101
|
-
$button-overlay-action-default: $blue; // #0277bd
|
|
102
|
-
$button-overlay-action-hover: rgba($blue, .2); // 20% opacity
|
|
103
|
-
$button-overlay-action-pressed: rgba($blue, .4); // 40% opacity
|
|
104
|
-
$button-overlay-action-disabled: rgba($blue, .6); // 60% opacity
|
|
105
|
-
|
|
106
|
-
// --------------------------------------------------------------------------
|
|
107
|
-
// Checkout overlays (success / checkout = green)
|
|
108
|
-
// --------------------------------------------------------------------------
|
|
109
|
-
$checkout-overlay-action-default: $green; // #67a509
|
|
110
|
-
$checkout-overlay-action-hover: rgba($green, .2); // 20% opacity
|
|
111
|
-
$checkout-overlay-action-pressed: rgba($green, .4); // 40% opacity
|
|
112
|
-
$checkout-overlay-action-disabled: rgba($green, .6); // 60% opacity
|
|
113
|
-
|
|
114
|
-
// --------------------------------------------------------------------------
|
|
115
|
-
// Offer overlays (error / offer = red)
|
|
116
|
-
// --------------------------------------------------------------------------
|
|
117
|
-
$offer-overlay-action-default: $red; // #cf000f
|
|
118
|
-
$offer-overlay-action-hover: rgba($red, .2); // 20% opacity
|
|
119
|
-
$offer-overlay-action-pressed: rgba($red, .4); // 40% opacity
|
|
120
|
-
$offer-overlay-action-disabled: rgba($red, .6); // 60% opacity
|