wickes-css2 2.105.0-develop.6 → 2.105.0-develop.8

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.
Files changed (209) hide show
  1. package/Readme.md +2 -2
  2. package/build/css/category-main.css +1 -1
  3. package/build/css/homepage-main.css +1 -1
  4. package/build/css/kitchen-plp-main.css +1 -1
  5. package/build/css/main.css +1 -1
  6. package/build/css/my-account-main-v2.css +1 -1
  7. package/build/css/my-account-main.css +1 -1
  8. package/build/css/pages/my-account-v2.css +1 -1
  9. package/build/css/pages/page_discount.css +1 -1
  10. package/build/css/pages/page_product_search.css +1 -1
  11. package/build/css/pages/page_products-list-combined.css +1 -1
  12. package/build/css/pages/page_products-list.css +1 -1
  13. package/build/css/pages/tradePro-rewards.css +1 -1
  14. package/build/css/pdp-main-before-combine.css +1 -1
  15. package/build/css/pdp-main-non-critical.css +1 -1
  16. package/build/css/pdp-main.css +1 -1
  17. package/build/css/plp-main.css +1 -1
  18. package/build/css/store-locator-main.css +1 -1
  19. package/build/js/basket.min.js +2 -2
  20. package/build/js/bundle.min.js +1 -1
  21. package/build/js/checkout.min.js +2 -2
  22. package/build/js/emulation.min.js +10255 -10784
  23. package/build/js/general.bundle.min.js +1 -1
  24. package/build/js/kitchen/kitchen-plp.min.js +9 -1
  25. package/build/js/merged-checkout.min.js +2 -2
  26. package/build/js/mini-basket-slider.min.js +1 -1
  27. package/build/js/my-account.min.js +1 -1
  28. package/build/js/page/accordion.js +35 -0
  29. package/build/js/page/basket/basket-update-cart-action.js +56 -59
  30. package/build/js/page/basket/basket-update-cart.js +27 -27
  31. package/build/js/page/basket/basket-utils.js +33 -40
  32. package/build/js/page/basket/mini-basket-total.js +66 -70
  33. package/build/js/page/basket/quantity-change-handler.js +55 -73
  34. package/build/js/page/basket/update-quantity-operation.js +30 -39
  35. package/build/js/page/basket/update-quantity.js +62 -62
  36. package/build/js/page/basket-v2.js +229 -362
  37. package/build/js/page/billie-business-type.js +27 -27
  38. package/build/js/page/checkout-payment-details.js +299 -301
  39. package/build/js/page/components/discounts.js +36 -39
  40. package/build/js/page/components/mini-basket-slider.js +545 -604
  41. package/build/js/page/kitchen/plp-filters-chips.js +90 -0
  42. package/build/js/page/kitchen/plp-filters-mobile.js +72 -0
  43. package/build/js/page/kitchen/plp-filters-panel.js +119 -0
  44. package/build/js/page/kitchen/plp-filters-utils.js +65 -0
  45. package/build/js/page/kitchen/plp-filters.js +205 -0
  46. package/build/js/page/kitchen/sort-by.js +157 -0
  47. package/build/js/page/klarna-modal-scroll-disable.js +4 -4
  48. package/build/js/page/my-account.js +14 -29
  49. package/build/js/page/online-exclusive.js +30 -28
  50. package/build/js/page/tradePro-rewards.js +39 -69
  51. package/build/js/page/utils/copy-to-clipboard.js +47 -79
  52. package/build/js/page/utils/helpers.js +9 -14
  53. package/build/js/pdp.bundle.min.js +1 -1
  54. package/build/js/plp.bundle.min.js +1 -1
  55. package/build/js/project-list.min.js +85 -143
  56. package/build/js/tradePro-rewards.min.js +1 -1
  57. package/package.json +3 -3
  58. package/src/components/.DS_Store +0 -0
  59. package/src/components/accordion.hbs +2 -2
  60. package/src/components/kitchen/dropdown.hbs +3 -6
  61. package/src/components/kitchen/filter-modal.hbs +13 -10
  62. package/src/components/kitchen/plp-filters.hbs +1 -3
  63. package/src/components/kitchen/sort-by.hbs +1 -1
  64. package/src/components/my-account/barcode.hbs +1 -3
  65. package/src/components/my-account/cards-swap.hbs +10 -0
  66. package/src/components/my-account/clipboard-code-card.hbs +3 -3
  67. package/src/components/my-account/discount.hbs +1 -1
  68. package/src/components/my-account/greetings.hbs +1 -1
  69. package/src/components/search-filter.hbs +112 -121
  70. package/src/data/data_plp_load-more.json +1 -1
  71. package/src/data/my-account/data_my-account.json +9 -0
  72. package/src/js/components/cards-swap.js +72 -0
  73. package/src/js/components/general/accordion.js +33 -44
  74. package/src/js/components/general/cart-slider.js +16 -19
  75. package/src/js/components/general/create-popup-slider.js +173 -168
  76. package/src/js/components/general/search-filter.js +21 -0
  77. package/src/js/components/share-project-list.js +53 -0
  78. package/src/js/emulation/big-wins.js +904 -1081
  79. package/src/js/emulation/billie-modal.js +19 -23
  80. package/src/js/emulation/checkout-payment-details.js +38 -47
  81. package/src/js/emulation/custom-slider-emulation.js +13 -17
  82. package/src/js/emulation/forms.js +323 -360
  83. package/src/js/emulation/mini-basket-data.js +923 -1051
  84. package/src/js/emulation/paymentLoader.js +17 -17
  85. package/src/js/emulation/pdf-file-loader.js +91 -89
  86. package/src/js/emulation/popover-mini-basket.js +239 -246
  87. package/src/js/emulation/project-list-pdp.js +316 -320
  88. package/src/js/emulation/repayment-toggle.js +24 -23
  89. package/src/js/emulation/selectable.js +18 -22
  90. package/src/js/emulation/wismo-details.js +31 -23
  91. package/src/js/page/accordion.js +35 -0
  92. package/src/js/page/basket/basket-update-cart-action.js +56 -59
  93. package/src/js/page/basket/basket-update-cart.js +27 -27
  94. package/src/js/page/basket/basket-utils.js +33 -40
  95. package/src/js/page/basket/mini-basket-total.js +66 -70
  96. package/src/js/page/basket/quantity-change-handler.js +55 -73
  97. package/src/js/page/basket/update-quantity-operation.js +30 -39
  98. package/src/js/page/basket/update-quantity.js +62 -62
  99. package/src/js/page/basket-v2.js +229 -362
  100. package/src/js/page/billie-business-type.js +27 -27
  101. package/src/js/page/checkout-payment-details.js +299 -301
  102. package/src/js/page/components/discounts.js +36 -39
  103. package/src/js/page/components/mini-basket-slider.js +545 -604
  104. package/src/js/page/kitchen/plp-filters-chips.js +90 -0
  105. package/src/js/page/kitchen/plp-filters-mobile.js +72 -0
  106. package/src/js/page/kitchen/plp-filters-panel.js +119 -0
  107. package/src/js/page/kitchen/plp-filters-utils.js +65 -0
  108. package/src/js/page/kitchen/plp-filters.js +205 -0
  109. package/src/js/page/kitchen/sort-by.js +157 -0
  110. package/src/js/page/klarna-modal-scroll-disable.js +4 -4
  111. package/src/js/page/my-account.js +14 -29
  112. package/src/js/page/online-exclusive.js +30 -28
  113. package/src/js/page/tradePro-rewards.js +39 -69
  114. package/src/js/page/utils/copy-to-clipboard.js +47 -79
  115. package/src/js/page/utils/helpers.js +9 -14
  116. package/src/page_empty-shared-project-list-bicester-hub.html +0 -4
  117. package/src/page_empty-shopping-list_guest.html +0 -1
  118. package/src/page_kitchen-plp.html +2 -2
  119. package/src/page_my-account-installer.html +1 -1
  120. package/src/page_my-account-trade-pro-carousel-double.html +127 -0
  121. package/src/page_my-account-trade-pro-carousel.html +134 -0
  122. package/src/page_my-account-trade-pro.html +1 -1
  123. package/src/page_my-shopping-list-add-notes.html +0 -1
  124. package/src/page_my-shopping-list-energy.html +0 -1
  125. package/src/page_my-shopping-list-hide-download.html +1 -2
  126. package/src/page_my-shopping-list-pdf.html +0 -2
  127. package/src/page_my-shopping-list-saved-ref.html +0 -1
  128. package/src/page_my-shopping-list-wisdom-oos-registered.html +0 -1
  129. package/src/page_my-shopping-list-wisdom-oos.html +0 -1
  130. package/src/page_my-shopping-list-wisdom-partial-registered.html +0 -1
  131. package/src/page_my-shopping-list-wisdom-registered.html +0 -1
  132. package/src/page_my-shopping-list-wisdom.html +0 -1
  133. package/src/page_my-shopping-list.html +0 -1
  134. package/src/page_my-shopping-list_not-register.html +0 -3
  135. package/src/page_plp-with-paint.html +7 -2
  136. package/src/page_plp.html +7 -2
  137. package/src/page_plp_v2-energy-efficiency.html +6 -1
  138. package/src/page_plp_v2-favourite-products.html +7 -6
  139. package/src/page_plp_v2-vat.html +7 -2
  140. package/src/page_plp_v2.html +9 -22
  141. package/src/page_product_search-vat.html +7 -2
  142. package/src/page_product_search.html +7 -2
  143. package/src/page_project-list-generate-project-list-ID.html +0 -3
  144. package/src/page_project-list-vat.html +0 -4
  145. package/src/page_project-list-with-new-share-popup-android.html +1 -3
  146. package/src/page_project-list-with-new-share-popup-ios.html +1 -3
  147. package/src/page_project-list-with-new-share-popup.html +1 -2
  148. package/src/page_search-results.html +7 -2
  149. package/src/page_shared-project-list-bicester-hub.html +1 -3
  150. package/src/page_tradepro-discount-app.html +1 -1
  151. package/src/page_tradepro-discount-double.html +109 -0
  152. package/src/page_tradepro-discount.html +36 -2
  153. package/src/scss/common/_common.scss +4 -5
  154. package/src/scss/components/_accordion.scss +3 -1
  155. package/src/scss/components/_custom-slider.scss +14 -15
  156. package/src/scss/components/_date-selection-add-new-styles.scss +7 -6
  157. package/src/scss/components/_date-selection.scss +1 -1
  158. package/src/scss/components/_popover-mini-basket.scss +3 -3
  159. package/src/scss/components/_search-filter.scss +15 -95
  160. package/src/scss/components/checkout-chip.scss +2 -2
  161. package/src/scss/components/checkout-payment-repayment-terms.scss +1 -1
  162. package/src/scss/components/{_filter-modal.scss → kitchen/_filter-modal.scss} +4 -55
  163. package/src/scss/components/{_plp-filters.scss → kitchen/_plp-filters.scss} +13 -31
  164. package/src/scss/components/my-account/_barcode.scss +8 -0
  165. package/src/scss/components/my-account/_cards-swap.scss +58 -0
  166. package/src/scss/components/my-account/_clipboard-code.scss +8 -0
  167. package/src/scss/components/my-account/_discount.scss +10 -0
  168. package/src/scss/globals/_global-components.scss +0 -3
  169. package/src/scss/helpers/_colors-semantic.scss +68 -68
  170. package/src/scss/helpers/_variables.scss +196 -242
  171. package/src/scss/kitchen-plp-main.scss +3 -0
  172. package/src/scss/main.scss +65 -65
  173. package/src/scss/pages/my-account-v2.scss +37 -0
  174. package/src/scss/pages/page_discount.scss +8 -4
  175. package/src/scss/pages/page_product-details-v2.scss +4 -1
  176. package/src/scss/pages/page_product_search.scss +1 -9
  177. package/src/scss/pages/page_products-list-combined.scss +24 -28
  178. package/src/scss/pages/page_products-list.scss +0 -8
  179. package/src/scss/pages/tradePro-rewards.scss +4 -3
  180. package/src/sitemap.html +3 -0
  181. package/build/js/page/filters/desktop-nav.js +0 -64
  182. package/build/js/page/filters/mobile-nav.js +0 -93
  183. package/build/js/page/filters/plp-filters-chips.js +0 -92
  184. package/build/js/page/filters/plp-filters-mobile.js +0 -150
  185. package/build/js/page/filters/plp-filters-panel.js +0 -123
  186. package/build/js/page/filters/plp-filters-utils.js +0 -66
  187. package/build/js/page/filters/plp-filters.js +0 -256
  188. package/build/js/page/filters/sort-by.js +0 -172
  189. package/build/js/page/search-filter.js +0 -62
  190. package/build/js/page/share-project-list.js +0 -57
  191. package/build/js/page/utils/show-more-less.js +0 -273
  192. package/src/components/kitchen/filter-modal-content-kitchen.hbs +0 -10
  193. package/src/components/search-filter-modal-content.hbs +0 -102
  194. package/src/elements/btn.hbs +0 -7
  195. package/src/js/emulation/filters-emulation.js +0 -164
  196. package/src/js/emulation/product-counter.js +0 -50
  197. package/src/js/emulation/reset-filter-desktop.js +0 -5
  198. package/src/js/page/filters/desktop-nav.js +0 -64
  199. package/src/js/page/filters/mobile-nav.js +0 -93
  200. package/src/js/page/filters/plp-filters-chips.js +0 -92
  201. package/src/js/page/filters/plp-filters-mobile.js +0 -150
  202. package/src/js/page/filters/plp-filters-panel.js +0 -123
  203. package/src/js/page/filters/plp-filters-utils.js +0 -66
  204. package/src/js/page/filters/plp-filters.js +0 -256
  205. package/src/js/page/filters/sort-by.js +0 -172
  206. package/src/js/page/search-filter.js +0 -62
  207. package/src/js/page/share-project-list.js +0 -57
  208. package/src/js/page/utils/show-more-less.js +0 -273
  209. package/src/scss/components/_sort-by.scss +0 -190
@@ -3,76 +3,76 @@
3
3
  @import 'common/vat-toggle';
4
4
 
5
5
  // Components
6
- @import 'components/request-pass'; //checkout & my-acc + tradepro
7
- @import 'components/popup-delivery'; //checkout
8
- @import 'components/user-address'; //checkout & my-acc + tradepro & components (recheck for modal-content class)
9
- @import 'components/order-header'; //my-acc + tradepro
10
- @import 'components/merge-basket-options'; //checkout & components
11
- @import 'components/tables'; //my-acc + tradepro
12
- @import 'components/video'; //iframe video(to be checked if is used)
6
+ @import 'components/request-pass';//checkout & my-acc + tradepro
7
+ @import 'components/popup-delivery';//checkout
8
+ @import 'components/user-address';//checkout & my-acc + tradepro & components (recheck for modal-content class)
9
+ @import 'components/order-header';//my-acc + tradepro
10
+ @import 'components/merge-basket-options';//checkout & components
11
+ @import 'components/tables';//my-acc + tradepro
12
+ @import 'components/video';//iframe video(to be checked if is used)
13
13
 
14
- @import 'components/modal-slider'; //deep dependence
15
- @import 'components/product-card'; //deep dependence
16
- @import 'components/product-card-preview'; //deep dependence
17
- @import 'components/your-details'; //deep dependence
18
- @import 'components/map'; //deep dependence
19
- @import 'components/aside-nav2'; //deep dependence
20
- @import 'components/account-heading'; //deep dependence
21
- @import 'components/card-store-locator'; //deep dependence
22
- @import 'components/offer-banner'; //deep dependence
23
- @import 'components/pagination'; //deep dependence
24
- @import 'components/price-block'; //deep dependence
25
- @import 'components/back-to-top'; //deep dependence
26
- @import 'components/payments'; //deep dependence
27
- @import 'components/notifications'; //deep dependence
28
- @import 'components/popover-mini-basket'; //deep dependence
14
+ @import 'components/modal-slider';//deep dependence
15
+ @import 'components/product-card';//deep dependence
16
+ @import 'components/product-card-preview';//deep dependence
17
+ @import 'components/your-details';//deep dependence
18
+ @import 'components/map';//deep dependence
19
+ @import 'components/aside-nav2';//deep dependence
20
+ @import 'components/account-heading';//deep dependence
21
+ @import 'components/card-store-locator';//deep dependence
22
+ @import 'components/offer-banner';//deep dependence
23
+ @import 'components/pagination';//deep dependence
24
+ @import 'components/price-block';//deep dependence
25
+ @import 'components/back-to-top';//deep dependence
26
+ @import 'components/payments';//deep dependence
27
+ @import 'components/notifications';//deep dependence
28
+ @import 'components/popover-mini-basket';//deep dependence
29
29
  @import 'components/custom-slider';
30
- @import 'components/lines-group'; //deep dependence
31
- @import 'components/autocomplete'; //deep dependence
32
- @import 'components/card'; //deep dependence
33
- @import 'components/accordion'; //deep dependence
34
- @import 'components/order-line'; //deep dependence
35
- @import 'components/clamp'; //deep
36
- @import 'components/cookies-policy'; //deep dependence
30
+ @import 'components/lines-group';//deep dependence
31
+ @import 'components/autocomplete';//deep dependence
32
+ @import 'components/card';//deep dependence
33
+ @import 'components/accordion';//deep dependence
34
+ @import 'components/order-line';//deep dependence
35
+ @import 'components/clamp';//deep
36
+ @import 'components/cookies-policy';//deep dependence
37
37
  @import 'components/snack-bar';
38
38
  //used in many pages
39
39
 
40
- @import 'components/card-slider'; // pdp, home, top-rated
41
- @import 'components/pagination__shopping-list'; //only shopping list
42
- @import 'components/search-filter'; //plp & product-search & search result
43
- @import 'components/category-tree'; //product-search & plp
44
- @import 'components/steps'; //checkout & in-store & tradePro
45
- @import 'components/steps-three'; //checkout progress bar for three steps
46
- @import 'components/modal-box'; //pdp & checkout & kitchen-claims
47
- @import 'components/legal-info'; //plp + product search + search result
48
- @import 'components/card-store-collect'; //pdp + shopping list
49
- @import 'components/click-and-collect-modal'; // pdp + shopping list
50
- @import 'components/find-a-store'; //store locator + components
51
- @import 'components/page-overlay'; //homepage & pdp + checkout
52
- @import 'components/not-logged-in-message'; //pdp + shopping list
53
- @import 'components/order-line-shop-list'; //shopping list
54
- @import 'components/share-list-modal'; //shopping list
55
- @import 'components/shopping-list'; //shopping list
56
- @import 'components/shopping-list-note'; //shopping list
57
- @import 'components/project-list-total'; //shopping list
58
- @import 'components/counter-list'; //shopping list
59
- @import 'components/shared-shopping-list'; //shopping list
60
- @import 'components/price-badges'; //plp + pdp + product search + badges
61
- @import 'components/loader'; //installer + checkout + loader page
62
- @import 'components/trade-pro-extras'; //only tp
63
- @import 'components/payment-transactions'; //wismo-asm + my-acc-asm
64
- @import 'components/wismo-info-banner'; //only wismo
65
- @import 'components/charity-donations'; //shopping cart
66
- @import 'components/donation-cart'; //shopping cart charity
67
- @import 'components/checkout-loader-modal'; //checkout
68
- @import 'components/range-card'; //range cards
69
- @import 'components/finance'; //partially not used(finance class)
70
- @import 'components/tc-generic'; //tiling calculator
71
- @import 'components/tc-generic-floor'; //tiling calculator
72
- @import 'components/next-steps'; //tiling calculator
73
- @import 'components/card-color-slider'; //range cards
74
- @import 'components/gallery'; //range cards
75
- @import 'components/tabs'; //range cards
40
+ @import 'components/card-slider';// pdp, home, top-rated
41
+ @import 'components/pagination__shopping-list';//only shopping list
42
+ @import 'components/search-filter';//plp & product-search & search result
43
+ @import 'components/category-tree';//product-search & plp
44
+ @import 'components/steps';//checkout & in-store & tradePro
45
+ @import 'components/steps-three';//checkout progress bar for three steps
46
+ @import 'components/modal-box';//pdp & checkout & kitchen-claims
47
+ @import 'components/legal-info';//plp + product search + search result
48
+ @import 'components/card-store-collect';//pdp + shopping list
49
+ @import 'components/click-and-collect-modal';// pdp + shopping list
50
+ @import 'components/find-a-store';//store locator + components
51
+ @import 'components/page-overlay';//homepage & pdp + checkout
52
+ @import 'components/not-logged-in-message';//pdp + shopping list
53
+ @import 'components/order-line-shop-list';//shopping list
54
+ @import 'components/share-list-modal';//shopping list
55
+ @import 'components/shopping-list';//shopping list
56
+ @import 'components/shopping-list-note';//shopping list
57
+ @import 'components/project-list-total';//shopping list
58
+ @import 'components/counter-list';//shopping list
59
+ @import 'components/shared-shopping-list';//shopping list
60
+ @import 'components/price-badges';//plp + pdp + product search + badges
61
+ @import 'components/loader';//installer + checkout + loader page
62
+ @import 'components/trade-pro-extras';//only tp
63
+ @import 'components/payment-transactions';//wismo-asm + my-acc-asm
64
+ @import 'components/wismo-info-banner';//only wismo
65
+ @import 'components/charity-donations';//shopping cart
66
+ @import 'components/donation-cart';//shopping cart charity
67
+ @import 'components/checkout-loader-modal';//checkout
68
+ @import 'components/range-card';//range cards
69
+ @import 'components/finance';//partially not used(finance class)
70
+ @import 'components/tc-generic';//tiling calculator
71
+ @import 'components/tc-generic-floor';//tiling calculator
72
+ @import 'components/next-steps';//tiling calculator
73
+ @import 'components/card-color-slider';//range cards
74
+ @import 'components/gallery';//range cards
75
+ @import 'components/tabs';//range cards
76
76
  @import 'components/order-summary'; //checkout
77
77
  @import 'components/checkout-action'; //checkout
78
78
  @import 'components/checkout-header'; //checkout
@@ -9,6 +9,7 @@
9
9
  @import '../components/my-account/barcode';
10
10
  @import '../components/my-account/discount';
11
11
  @import '../components/my-account/clipboard-code';
12
+ @import '../components/my-account/cards-swap';
12
13
  @import '../components/my-account/payment-status';
13
14
  @import '../libs/font-awesome-icons';
14
15
  @import '../components/my-account/payment-status';
@@ -108,6 +109,10 @@
108
109
  color: $white;
109
110
  padding: 16px;
110
111
  width: 100%;
112
+
113
+ &--secondary {
114
+ background: $gray-wait;
115
+ }
111
116
  }
112
117
  }
113
118
 
@@ -124,6 +129,10 @@
124
129
  .greetings {
125
130
  word-break: break-all;
126
131
 
132
+ &--secondary {
133
+ color: $black;
134
+ }
135
+
127
136
  .title {
128
137
  font-weight: 500;
129
138
  font-size: 1.625rem;
@@ -180,6 +189,10 @@
180
189
  }
181
190
 
182
191
  @include media-breakpoint-up(sm) {
192
+ .d-sm-grid {
193
+ display: grid !important;
194
+ }
195
+
183
196
  .my-account {
184
197
  .account-actions {
185
198
  padding-top: 32px;
@@ -233,6 +246,12 @@
233
246
  .clipboard-code {
234
247
  align-items: center;
235
248
  }
249
+
250
+ &--double {
251
+ .discount {
252
+ grid-row: auto;
253
+ }
254
+ }
236
255
  }
237
256
  }
238
257
 
@@ -240,6 +259,16 @@
240
259
  padding-top: 24px;
241
260
  }
242
261
  }
262
+
263
+ .my-account {
264
+ .cards-swap {
265
+ .account-summary {
266
+ &__wrapper {
267
+ grid-template-rows: auto;
268
+ }
269
+ }
270
+ }
271
+ }
243
272
  }
244
273
 
245
274
  @include media-breakpoint-up(md) {
@@ -270,6 +299,10 @@
270
299
  &__wrapper {
271
300
  grid-template-columns: minmax(auto, 502px) repeat(2, minmax(auto, 223px));
272
301
 
302
+ &--double {
303
+ grid-template-columns: repeat(2, 1fr);
304
+ }
305
+
273
306
  .clipboard-code,
274
307
  .discount {
275
308
  padding-top: 20px;
@@ -325,6 +358,10 @@
325
358
  &__wrapper {
326
359
  grid-template-columns: minmax(auto, 502px) 1fr 1fr;
327
360
 
361
+ &--double {
362
+ grid-template-columns: repeat(2, 1fr);
363
+ }
364
+
328
365
  .icon-wrap {
329
366
  width: 48px;
330
367
  height: 48px;
@@ -47,6 +47,10 @@
47
47
  margin-bottom: 8px;
48
48
  }
49
49
  }
50
+
51
+ &--secondary {
52
+ background: $gray-wait;
53
+ }
50
54
  }
51
55
 
52
56
  .app-info {
@@ -106,10 +110,6 @@
106
110
 
107
111
  @include media-breakpoint-up(md) {
108
112
  .discount-offer {
109
- &__wrap {
110
- padding-bottom: 72px;
111
- }
112
-
113
113
  &__header {
114
114
  padding-top: 40px;
115
115
 
@@ -183,6 +183,10 @@
183
183
  &__body {
184
184
  grid-template-columns: repeat(3, 1fr);
185
185
 
186
+ &--double {
187
+ grid-template-columns: 1fr 2fr;
188
+ }
189
+
186
190
  .clipboard-code.discount-code {
187
191
  grid-column: auto;
188
192
  }
@@ -41,6 +41,7 @@
41
41
  }
42
42
 
43
43
  &__gallery {
44
+
44
45
  @include media-breakpoint-up(md) {
45
46
  grid-column-start: 1;
46
47
  grid-row-start: 2;
@@ -169,9 +170,11 @@
169
170
  }
170
171
 
171
172
  .recently-viewed {
173
+
172
174
  @include media-breakpoint-down(md) {
173
175
  display: none;
174
176
  }
177
+
175
178
  }
176
179
 
177
180
  .review-star {
@@ -226,7 +229,7 @@
226
229
  }
227
230
 
228
231
  .review-star-average-v2 {
229
- font-size: 0.875rem;
232
+ font-size: .875rem;
230
233
  vertical-align: 15%;
231
234
  }
232
235
 
@@ -304,7 +304,7 @@
304
304
  overflow-x: hidden;
305
305
 
306
306
  &__badges {
307
- font-size: 0.875rem;
307
+ font-size: .875rem;
308
308
  }
309
309
 
310
310
  .card {
@@ -344,17 +344,9 @@
344
344
  .sort-products-list {
345
345
  &__section {
346
346
  @include make-col(6);
347
- color: black;
348
- border: none;
349
-
350
- > .form-row {
351
- margin-bottom: 0;
352
- }
353
347
  }
354
348
 
355
349
  &__pagination {
356
- margin-top: 20px;
357
-
358
350
  .pagination {
359
351
  &:not(.pagination_tablet) {
360
352
  display: none;
@@ -66,8 +66,8 @@ $color-bar-radius: 3px;
66
66
  }
67
67
 
68
68
  .sort-products-list {
69
- display: flex;
70
- justify-content: flex-end;
69
+ @include make-row;
70
+ justify-content: space-between;
71
71
  align-items: center;
72
72
 
73
73
  .open-filters-btn {
@@ -95,8 +95,7 @@ $color-bar-radius: 3px;
95
95
 
96
96
  &__total {
97
97
  font-weight: 700;
98
- font-size: 0.875rem;
99
- line-height: 22px;
98
+ padding-left: 15px;
100
99
  }
101
100
  }
102
101
 
@@ -252,6 +251,7 @@ $color-bar-radius: 3px;
252
251
  }
253
252
 
254
253
  .products-list-v2 {
254
+
255
255
  @include media-breakpoint-down(sm) {
256
256
  margin-right: -5px;
257
257
  margin-left: -5px;
@@ -266,7 +266,7 @@ $color-bar-radius: 3px;
266
266
  font-size: 1rem;
267
267
 
268
268
  @include media-breakpoint-down(sm) {
269
- font-size: 0.875rem;
269
+ font-size: .875rem;
270
270
  }
271
271
  }
272
272
 
@@ -357,6 +357,7 @@ $color-bar-radius: 3px;
357
357
  @include media-breakpoint-down(sm) {
358
358
  padding-left: 0;
359
359
  padding-right: 0;
360
+
360
361
  }
361
362
  }
362
363
 
@@ -402,7 +403,7 @@ $color-bar-radius: 3px;
402
403
  & .product-card__title.product-card__title-v2 {
403
404
  @include clamp-text(3);
404
405
  margin-top: 5px;
405
- font-size: 0.875rem;
406
+ font-size: .875rem;
406
407
  font-weight: 700;
407
408
  line-height: 18px;
408
409
 
@@ -438,6 +439,7 @@ $color-bar-radius: 3px;
438
439
  &__price-value.product-card__price-value.product-card__price-value {
439
440
  font-size: 1.5rem;
440
441
 
442
+
441
443
  @media screen and (max-width: 321px) {
442
444
  font-size: 1.125rem;
443
445
  }
@@ -451,7 +453,7 @@ $color-bar-radius: 3px;
451
453
  }
452
454
 
453
455
  .product-rating.product-rating-v2 {
454
- font-size: 0.875rem;
456
+ font-size: .875rem;
455
457
 
456
458
  .fa-star {
457
459
  margin-right: 0;
@@ -481,6 +483,7 @@ $color-bar-radius: 3px;
481
483
  &-sqm {
482
484
  color: $red;
483
485
  }
486
+
484
487
  }
485
488
  }
486
489
 
@@ -500,7 +503,7 @@ $color-bar-radius: 3px;
500
503
  text-align: left;
501
504
  width: 100%;
502
505
  margin-right: 0;
503
- font-size: 0.875rem;
506
+ font-size: .875rem;
504
507
  font-weight: 500;
505
508
  line-height: 14px;
506
509
  color: $blue-dark;
@@ -586,17 +589,9 @@ $color-bar-radius: 3px;
586
589
  .sort-products-list {
587
590
  &__section {
588
591
  @include make-col(6);
589
- color: black;
590
- border: none;
591
-
592
- > .form-row {
593
- margin-bottom: 0;
594
- }
595
592
  }
596
593
 
597
594
  &__pagination {
598
- margin-top: 20px;
599
-
600
595
  .pagination {
601
596
  &:not(.pagination_tablet) {
602
597
  display: none;
@@ -701,7 +696,7 @@ $color-bar-radius: 3px;
701
696
 
702
697
  &-active {
703
698
  transform: rotateX(180deg) scale(1.25);
704
- transition: 0.4s;
699
+ transition: .4s;
705
700
  transform-style: preserve-3d;
706
701
  box-shadow: -1px 0 5px -1px $black;
707
702
  }
@@ -778,11 +773,12 @@ $color-bar-radius: 3px;
778
773
 
779
774
  .srp-injected {
780
775
  &__content {
781
- padding: 1.25em 0.75em;
776
+ padding: 1.25em .75em;
782
777
  }
783
778
  }
784
779
  }
785
780
 
781
+
786
782
  //minified notification component styles start
787
783
  .notification {
788
784
  padding: 8px 40px;
@@ -801,7 +797,7 @@ $color-bar-radius: 3px;
801
797
  position: absolute;
802
798
  right: 8px;
803
799
  top: 8px;
804
- font-size: 0.875rem;
800
+ font-size: .875rem;
805
801
  color: $warm-grey;
806
802
  cursor: pointer;
807
803
 
@@ -814,7 +810,7 @@ $color-bar-radius: 3px;
814
810
  position: absolute;
815
811
  right: 8px;
816
812
  top: 8px;
817
- font-size: 0.875rem;
813
+ font-size: .875rem;
818
814
  color: $warm-grey;
819
815
  cursor: pointer;
820
816
  }
@@ -893,7 +889,6 @@ $color-bar-radius: 3px;
893
889
  }
894
890
  }
895
891
  }
896
-
897
892
  //minified notification component styles end
898
893
 
899
894
  //minified autocomplete component styles start
@@ -978,7 +973,6 @@ $color-bar-radius: 3px;
978
973
  }
979
974
  }
980
975
  }
981
-
982
976
  //minified autocomplete component styles end
983
977
 
984
978
  //minified card component styles start
@@ -1049,6 +1043,7 @@ $color-bar-radius: 3px;
1049
1043
  }
1050
1044
 
1051
1045
  .card__img {
1046
+
1052
1047
  @include media-breakpoint-down(sm) {
1053
1048
  padding-top: 15px;
1054
1049
  padding-bottom: 10px;
@@ -1091,7 +1086,7 @@ $color-bar-radius: 3px;
1091
1086
 
1092
1087
  &_ends {
1093
1088
  background-color: $gray-dark-transparent75;
1094
- font-size: 0.75rem;
1089
+ font-size: .75rem;
1095
1090
  font-weight: 500;
1096
1091
  line-height: 14px;
1097
1092
  }
@@ -1138,7 +1133,6 @@ $color-bar-radius: 3px;
1138
1133
  max-width: 100%;
1139
1134
  width: 100%;
1140
1135
  }
1141
-
1142
1136
  //minified card component styles end
1143
1137
 
1144
1138
  //minified product-card component styles start
@@ -1193,7 +1187,7 @@ $color-bar-radius: 3px;
1193
1187
  .product-card__reviews,
1194
1188
  .filter__reviews {
1195
1189
  color: $warm-grey;
1196
- font-size: 0.75rem;
1190
+ font-size: .75rem;
1197
1191
  line-height: 16px;
1198
1192
  margin-top: 10px;
1199
1193
 
@@ -1232,10 +1226,11 @@ $color-bar-radius: 3px;
1232
1226
  }
1233
1227
  }
1234
1228
  }
1229
+
1235
1230
  }
1236
1231
 
1237
1232
  .filter__reviews {
1238
- font-size: 0.875rem;
1233
+ font-size: .875rem;
1239
1234
  margin: 0;
1240
1235
  transform: translateY(3px);
1241
1236
 
@@ -1260,7 +1255,9 @@ $color-bar-radius: 3px;
1260
1255
 
1261
1256
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
1262
1257
  .product-card__reviews {
1258
+
1263
1259
  .product-rating {
1260
+
1264
1261
  .rating-bg {
1265
1262
  display: block;
1266
1263
  }
@@ -1299,7 +1296,7 @@ $color-bar-radius: 3px;
1299
1296
  line-height: 36px;
1300
1297
 
1301
1298
  .product-card__price-from {
1302
- font-size: 0.7em;
1299
+ font-size: .7em;
1303
1300
  margin-right: 4px;
1304
1301
  }
1305
1302
 
@@ -1328,7 +1325,6 @@ $color-bar-radius: 3px;
1328
1325
  text-decoration-color: $line-through;
1329
1326
  }
1330
1327
  }
1331
-
1332
1328
  //minified product-card component styles end
1333
1329
 
1334
1330
  @include media-breakpoint-down(sm) {
@@ -235,17 +235,9 @@
235
235
  .sort-products-list {
236
236
  &__section {
237
237
  @include make-col(6);
238
- color: black;
239
- border: none;
240
-
241
- > .form-row {
242
- margin-bottom: 0;
243
- }
244
238
  }
245
239
 
246
240
  &__pagination {
247
- margin-top: 20px;
248
-
249
241
  .pagination {
250
242
  &:not(.pagination_tablet) {
251
243
  display: none;
@@ -7,7 +7,7 @@ $voucher-cell-height-lg: 246px;
7
7
  $voucher-cell-height-xl: 296px;
8
8
 
9
9
  .text-start {
10
- text-align: left !important;
10
+ text-align: left;
11
11
  }
12
12
 
13
13
  .page_tradePro-rewards {
@@ -131,7 +131,7 @@ $voucher-cell-height-xl: 296px;
131
131
  color: $white;
132
132
  display: block;
133
133
  padding: 4px;
134
- font-size: 0.75rem;
134
+ font-size: .75rem;
135
135
  font-weight: 500;
136
136
  }
137
137
 
@@ -168,7 +168,7 @@ $voucher-cell-height-xl: 296px;
168
168
 
169
169
  &-text {
170
170
  font-weight: 400;
171
- font-size: 0.875rem;
171
+ font-size: .875rem;
172
172
  }
173
173
 
174
174
  &-button {
@@ -191,6 +191,7 @@ $voucher-cell-height-xl: 296px;
191
191
  }
192
192
  }
193
193
 
194
+
194
195
  @include media-breakpoint-up(md) {
195
196
  .page_tradePro-rewards {
196
197
  .voucher {
package/src/sitemap.html CHANGED
@@ -528,6 +528,8 @@
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
530
  <li><a href="page_my-account-trade-pro.html" target="_blank">My Account TradePro</a></li>
531
+ <li><a href="page_my-account-trade-pro-carousel.html" target="_blank">My Account TradePro Carousel</a></li>
532
+ <li><a href="page_my-account-trade-pro-carousel-double.html" target="_blank">My Account TradePro Carousel Double</a></li>
531
533
  <li><a href="page_my-account-trade-pro-components.html" target="_blank">My Account TradePro Components</a></li>
532
534
  <li><a href="page_personal-details.html" target="_blank">My Account Personal Details</a></li>
533
535
  <li><a href="page_personal-details-installer.html" target="_blank">My Account Personal Details Installer</a></li>
@@ -543,6 +545,7 @@
543
545
  <li><a href="page_my-account_address-book_tradePro.html" target="_blank">Address Book Trade Pro</a></li>
544
546
  <li><a href="page_my-account_address-book-form.html" target="_blank">Address Book Form</a></li>
545
547
  <li><a href="page_tradepro-discount.html" target="_blank">Trade Pro Discount</a></li>
548
+ <li><a href="page_tradepro-discount-double.html" target="_blank">Trade Pro Discount (Double)</a></li>
546
549
  <li><a href="page_tradepro-discount-app.html" target="_blank">Trade Pro Discount App</a></li>
547
550
  </ul>
548
551
  <h3>Project list</h3>