@sc-360-v2/storefront-cms-library 0.2.73 → 0.2.76
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/dist/add-order.scss +69 -0
- package/dist/allocationDetails.scss +335 -0
- package/dist/allocations.scss +546 -2
- package/dist/amount-estimator.scss +733 -187
- package/dist/brand-basic-elements.scss +142 -61
- package/dist/brand.scss +66 -16
- package/dist/breadcrumbs.scss +379 -88
- package/dist/builder.js +1 -1
- package/dist/bulk-variant-picker.scss +525 -121
- package/dist/bundle-basic-elements.scss +283 -121
- package/dist/bundle.scss +74 -15
- package/dist/buyFor.scss +153 -0
- package/dist/cart-details.scss +387 -0
- package/dist/cart-summary.scss +175 -0
- package/dist/cart.scss +178 -44
- package/dist/cartDropdownOverlay.scss +118 -0
- package/dist/cartGrouping.scss +89 -0
- package/dist/category.scss +38 -7
- package/dist/categoryDetails.scss +24 -6
- package/dist/categoryWidget.scss +11 -6
- package/dist/code-temp.scss +6 -4
- package/dist/contact-us.scss +19 -147
- package/dist/container.scss +22 -1
- package/dist/countdown.scss +372 -112
- package/dist/editCartItem.scss +111 -0
- package/dist/embed-temp.scss +29 -14
- package/dist/faq.scss +3 -6
- package/dist/filters.scss +11 -2
- package/dist/form-preview.scss +128 -93
- package/dist/gallery-slider-temp.scss +548 -135
- package/dist/grid.scss +24 -0
- package/dist/hotspot.scss +27 -25
- package/dist/icon-library.scss +26 -15
- package/dist/icons.js +1 -1
- package/dist/image-temp.scss +45 -17
- package/dist/index.js +1 -1
- package/dist/item-stock.scss +125 -0
- package/dist/layouter-item.scss +26 -2
- package/dist/layouter.scss +26 -1
- package/dist/light-box-v2.scss +29 -3
- package/dist/lightbox.scss +18 -2
- package/dist/line.scss +165 -0
- package/dist/login.scss +15 -23
- package/dist/map.scss +495 -119
- package/dist/marchandiserSets.scss +35 -18
- package/dist/menu.scss +121 -33
- package/dist/modal.scss +4 -0
- package/dist/past-orders.scss +11 -2
- package/dist/payment-methods.scss +29 -13
- package/dist/pickup-locations.scss +884 -244
- package/dist/product-actions.scss +2223 -418
- package/dist/product-basic-elements.scss +273 -122
- package/dist/product-highlights.scss +22 -14
- package/dist/product-image.scss +535 -136
- package/dist/product-inventory.scss +1105 -283
- package/dist/product-options.scss +378 -94
- package/dist/product-price.scss +1386 -316
- package/dist/product-promotions.scss +2252 -601
- package/dist/product.scss +68 -14
- package/dist/productDetails.scss +29 -2
- package/dist/profile.scss +19 -4
- package/dist/quantity-selector.scss +5 -4
- package/dist/quick-links.scss +277 -0
- package/dist/quotes.scss +11 -2
- package/dist/repeater-item.scss +26 -2
- package/dist/repeater.scss +60 -7
- package/dist/rfqs.scss +11 -2
- package/dist/scroll.scss +112 -47
- package/dist/search-results-heading.scss +282 -0
- package/dist/search.scss +84 -23
- package/dist/section.scss +25 -1
- package/dist/shareCartSideBar.scss +230 -0
- package/dist/shipping-estimator.scss +7 -3
- package/dist/social.scss +148 -38
- package/dist/sort.scss +11 -2
- package/dist/stack.scss +23 -3
- package/dist/static-text.scss +0 -1
- package/dist/store-locations.scss +887 -244
- package/dist/sub-category.scss +50 -19
- package/dist/tab-container-item.scss +80 -0
- package/dist/tab-container.scss +89 -0
- package/dist/tab-v2.scss +579 -0
- package/dist/table.scss +370 -91
- package/dist/tabs.scss +334 -74
- package/dist/text-temp-v2.scss +21 -9
- package/dist/types/builder/elements/add-order/index.d.ts +27 -0
- package/dist/types/builder/elements/create-form/index.d.ts +27 -0
- package/dist/types/builder/elements/form-builder/index.d.ts +7 -0
- package/dist/types/builder/elements/image/index.d.ts +13 -0
- package/dist/types/builder/elements/quick-links/index.d.ts +36 -0
- package/dist/types/builder/enums/index.d.ts +9 -1
- package/dist/types/builder/index.d.ts +4 -1
- package/dist/types/builder/interfaces/global.d.ts +5 -0
- package/dist/types/builder/tools/element-edit/addOrder.d.ts +28 -0
- package/dist/types/builder/tools/element-edit/createForm.d.ts +15 -0
- package/dist/types/builder/tools/element-edit/index.d.ts +4 -1
- package/dist/types/builder/tools/element-edit/quickLinks.d.ts +360 -0
- package/dist/uom-selector.scss +1569 -383
- package/dist/variant-picker.scss +1593 -481
- package/dist/video.scss +212 -53
- package/dist/volume-pricing.scss +775 -196
- package/dist/widget.scss +14 -0
- package/package.json +1 -1
- package/dist/editor-core.scss +0 -537
- package/dist/tab-panel.scss +0 -93
- package/dist/text-editor.scss +0 -331
package/dist/buyFor.scss
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
.popup_backdrop {
|
|
2
|
+
position: fixed;
|
|
3
|
+
inset: 0;
|
|
4
|
+
background: rgba(0, 0, 0, 0.3);
|
|
5
|
+
backdrop-filter: blur(6px);
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
z-index: 1000;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.popup_container {
|
|
13
|
+
width: 90%;
|
|
14
|
+
max-width: 600px;
|
|
15
|
+
background: #ffffff;
|
|
16
|
+
border-radius: 12px;
|
|
17
|
+
padding: 24px;
|
|
18
|
+
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
max-height: 80vh;
|
|
22
|
+
overflow-y: auto;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.popup_header {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
margin-bottom: 16px;
|
|
29
|
+
|
|
30
|
+
h2 {
|
|
31
|
+
font-size: 20px;
|
|
32
|
+
font-weight: 600;
|
|
33
|
+
margin: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
p {
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
color: #666;
|
|
39
|
+
margin: 4px 0 0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.search_input {
|
|
44
|
+
padding: 10px 12px;
|
|
45
|
+
border: 1px solid #ddd;
|
|
46
|
+
border-radius: 8px;
|
|
47
|
+
margin-bottom: 16px;
|
|
48
|
+
width: 100%;
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
|
|
51
|
+
&:focus {
|
|
52
|
+
outline: none;
|
|
53
|
+
border-color: #007bff;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.groups_list {
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
gap: 16px;
|
|
61
|
+
overflow-y: auto;
|
|
62
|
+
max-height: 50vh;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.group_section {
|
|
66
|
+
.group_header {
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
gap: 8px;
|
|
70
|
+
font-weight: 500;
|
|
71
|
+
font-size: 15px;
|
|
72
|
+
margin-bottom: 8px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.user_card {
|
|
76
|
+
display: flex;
|
|
77
|
+
justify-content: space-between;
|
|
78
|
+
align-items: center;
|
|
79
|
+
padding: 10px 12px;
|
|
80
|
+
border: 1px solid #ddd;
|
|
81
|
+
border-radius: 8px;
|
|
82
|
+
margin-bottom: 6px;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
transition: all 0.2s ease;
|
|
85
|
+
|
|
86
|
+
&:hover {
|
|
87
|
+
background-color: #f5f5f5;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
&.selected {
|
|
91
|
+
background-color: #e6f4ff;
|
|
92
|
+
border-color: #007bff;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.user_info {
|
|
96
|
+
display: flex;
|
|
97
|
+
flex-direction: column;
|
|
98
|
+
|
|
99
|
+
.user_name {
|
|
100
|
+
font-weight: 500;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.user_id {
|
|
104
|
+
font-size: 12px;
|
|
105
|
+
color: #666;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.check_icon {
|
|
110
|
+
font-size: 16px;
|
|
111
|
+
color: #007bff;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.popup_footer {
|
|
117
|
+
display: flex;
|
|
118
|
+
justify-content: space-between;
|
|
119
|
+
margin-top: 24px;
|
|
120
|
+
|
|
121
|
+
button {
|
|
122
|
+
padding: 10px 16px;
|
|
123
|
+
border-radius: 6px;
|
|
124
|
+
font-size: 14px;
|
|
125
|
+
font-weight: 500;
|
|
126
|
+
cursor: pointer;
|
|
127
|
+
border: none;
|
|
128
|
+
transition: background 0.2s ease;
|
|
129
|
+
|
|
130
|
+
&:first-child {
|
|
131
|
+
background: #f3f3f3;
|
|
132
|
+
color: #333;
|
|
133
|
+
|
|
134
|
+
&:hover {
|
|
135
|
+
background: #e0e0e0;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&.proceed_button {
|
|
140
|
+
background: #007bff;
|
|
141
|
+
color: #fff;
|
|
142
|
+
|
|
143
|
+
&:disabled {
|
|
144
|
+
background: #ccc;
|
|
145
|
+
cursor: not-allowed;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&:not(:disabled):hover {
|
|
149
|
+
background: #0069d9;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
|
|
4
|
+
$resizerId: "[data-cms-tool='cms-element-resizer']";
|
|
5
|
+
$resizeActive: '[data-cms-element-resizer="true"]';
|
|
6
|
+
[data-div-type="element"] {
|
|
7
|
+
&[data-element-type="cartDetails"] {
|
|
8
|
+
width: var(
|
|
9
|
+
--_sf-el-wh-st-mx,
|
|
10
|
+
calc(
|
|
11
|
+
1% *
|
|
12
|
+
var(
|
|
13
|
+
--_mob-ctm-ele-nw-wh-vl,
|
|
14
|
+
var(--_tab-ctm-ele-nw-wh-vl, var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh)))
|
|
15
|
+
)
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
margin: var(--_ctm-mob-lt-mn, var(--_ctm-tab-lt-mn, var(--_ctm-lt-mn)));
|
|
19
|
+
& > div {
|
|
20
|
+
&.wrapper {
|
|
21
|
+
width: 100%;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cart_details_wrapper {
|
|
26
|
+
display: flex;
|
|
27
|
+
padding: 16px 0px;
|
|
28
|
+
align-items: flex-start;
|
|
29
|
+
align-self: stretch;
|
|
30
|
+
|
|
31
|
+
.cart_header_wrapper {
|
|
32
|
+
display: flex;
|
|
33
|
+
padding: var(--_ctm-lt-pg);
|
|
34
|
+
flex-direction: column;
|
|
35
|
+
justify-content: flex-end;
|
|
36
|
+
align-items: flex-start;
|
|
37
|
+
gap: 24px;
|
|
38
|
+
flex: 1 0 0;
|
|
39
|
+
|
|
40
|
+
.cart_title_wrapper {
|
|
41
|
+
display: flex;
|
|
42
|
+
// padding: 0px 36px 0px 96px;
|
|
43
|
+
align-items: center;
|
|
44
|
+
gap: 12px;
|
|
45
|
+
align-self: stretch;
|
|
46
|
+
|
|
47
|
+
.cart_title {
|
|
48
|
+
color: var(--_ctm-dn-ct-hg-ss-cr);
|
|
49
|
+
font-size: var(--_ctm-dn-ct-hg-ss-ft-se);
|
|
50
|
+
font-weight: var(--_ctm-dn-ct-hg-ss-ft-wt);
|
|
51
|
+
line-height: var(--_ctm-dn-ct-hg-ss-le-ht);
|
|
52
|
+
font-style: var(--_ctm-dn-ct-hg-ss-ft-se-ic);
|
|
53
|
+
text-decoration: var(--_ctm-dn-ct-hg-ss-ue);
|
|
54
|
+
letter-spacing: var(--_ctm-dn-ct-hg-ss-lr-sg);
|
|
55
|
+
font-family: var(--_ctm-dn-ct-hg-ss-ft-fy);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.number_of_items {
|
|
59
|
+
color: #101828;
|
|
60
|
+
font-size: 14px;
|
|
61
|
+
font-weight: 600;
|
|
62
|
+
line-height: 20px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.cart_actions_wrapper {
|
|
67
|
+
display: flex;
|
|
68
|
+
// padding-left: 96px;
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: 16px;
|
|
71
|
+
align-self: stretch;
|
|
72
|
+
|
|
73
|
+
.cart_action_button {
|
|
74
|
+
display: flex;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
align-items: center;
|
|
77
|
+
gap: 8px;
|
|
78
|
+
color: #243dc6;
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
font-weight: 400;
|
|
81
|
+
line-height: 20px;
|
|
82
|
+
|
|
83
|
+
&:hover {
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.cart_products_wrapper {
|
|
90
|
+
max-height: 100vh;
|
|
91
|
+
overflow: auto;
|
|
92
|
+
display: flex;
|
|
93
|
+
// padding: 0px 60px 0px 96px;
|
|
94
|
+
flex-direction: column;
|
|
95
|
+
align-items: flex-start;
|
|
96
|
+
gap: 24px;
|
|
97
|
+
align-self: stretch;
|
|
98
|
+
padding: 8px;
|
|
99
|
+
.cart_item_wrapper {
|
|
100
|
+
border-radius: 4px;
|
|
101
|
+
box-shadow: var(--_ctm-dn-ct-im-ss-sw-ae) var(--_ctm-dn-ct-im-ss-sw-br)
|
|
102
|
+
var(--_ctm-dn-ct-im-ss-sw-sd) var(--_ctm-dn-ct-im-ss-sw-cr);
|
|
103
|
+
margin: var(--_ctm-dn-ct-im-ss-mn);
|
|
104
|
+
padding: var(--_ctm-dn-ct-im-ss-pg);
|
|
105
|
+
background: var(--_ctm-dn-ct-im-ss-bd-cr);
|
|
106
|
+
max-width: 100%;
|
|
107
|
+
min-width: 100%;
|
|
108
|
+
border-style: var(--_ctm-dn-ct-im-ss-br-se);
|
|
109
|
+
border-color: var(--_ctm-dn-ct-im-ss-br-cr);
|
|
110
|
+
border-width: var(--_ctm-dn-ct-im-ss-br-wh);
|
|
111
|
+
|
|
112
|
+
.cart_product_wrapper {
|
|
113
|
+
display: flex;
|
|
114
|
+
justify-content: space-between;
|
|
115
|
+
align-items: flex-start;
|
|
116
|
+
align-self: stretch;
|
|
117
|
+
|
|
118
|
+
.cart_product_left_wrapper {
|
|
119
|
+
display: flex;
|
|
120
|
+
align-items: flex-start;
|
|
121
|
+
gap: 16px;
|
|
122
|
+
|
|
123
|
+
.checkbox_wrapper {
|
|
124
|
+
width: fit-content;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.product_info_wrapper {
|
|
128
|
+
display: flex;
|
|
129
|
+
width: 320px;
|
|
130
|
+
flex-direction: column;
|
|
131
|
+
justify-content: space-between;
|
|
132
|
+
align-items: flex-start;
|
|
133
|
+
align-self: stretch;
|
|
134
|
+
|
|
135
|
+
.product_info_container {
|
|
136
|
+
display: flex;
|
|
137
|
+
flex-direction: column;
|
|
138
|
+
align-items: flex-start;
|
|
139
|
+
gap: 2px;
|
|
140
|
+
align-self: stretch;
|
|
141
|
+
|
|
142
|
+
.product_title {
|
|
143
|
+
color: var(--_ctm-dn-pt-ne-ss-cr);
|
|
144
|
+
font-size: 18px;
|
|
145
|
+
font-weight: 700;
|
|
146
|
+
align-self: stretch;
|
|
147
|
+
line-height: 28px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.product_code {
|
|
151
|
+
display: flex;
|
|
152
|
+
align-items: center;
|
|
153
|
+
gap: 6px;
|
|
154
|
+
align-self: stretch;
|
|
155
|
+
|
|
156
|
+
p {
|
|
157
|
+
color: #475467;
|
|
158
|
+
font-size: 14px;
|
|
159
|
+
font-weight: 400;
|
|
160
|
+
line-height: 20px;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.product_options {
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center;
|
|
167
|
+
gap: 4px;
|
|
168
|
+
align-self: stretch;
|
|
169
|
+
|
|
170
|
+
p {
|
|
171
|
+
color: #475467;
|
|
172
|
+
font-size: 14px;
|
|
173
|
+
font-weight: 400;
|
|
174
|
+
line-height: 20px; /* 142.857% */
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.product_customization_container {
|
|
180
|
+
display: flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
gap: 18px;
|
|
183
|
+
|
|
184
|
+
.customization_button {
|
|
185
|
+
display: flex;
|
|
186
|
+
justify-content: center;
|
|
187
|
+
align-items: center;
|
|
188
|
+
gap: 8px;
|
|
189
|
+
color: #243dc6;
|
|
190
|
+
font-size: 14px;
|
|
191
|
+
font-weight: 400;
|
|
192
|
+
line-height: 20px;
|
|
193
|
+
|
|
194
|
+
&:hover {
|
|
195
|
+
font-weight: 600;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.cart_product_right_wrapper {
|
|
203
|
+
display: flex;
|
|
204
|
+
flex-direction: column;
|
|
205
|
+
justify-content: space-between;
|
|
206
|
+
align-items: flex-end;
|
|
207
|
+
align-self: stretch;
|
|
208
|
+
|
|
209
|
+
.product_qty_price_wrapper {
|
|
210
|
+
display: flex;
|
|
211
|
+
justify-content: flex-end;
|
|
212
|
+
align-items: center;
|
|
213
|
+
gap: 31px;
|
|
214
|
+
align-self: stretch;
|
|
215
|
+
|
|
216
|
+
.product_qty_wrapper {
|
|
217
|
+
display: flex;
|
|
218
|
+
width: 124px;
|
|
219
|
+
flex-direction: column;
|
|
220
|
+
align-items: flex-start;
|
|
221
|
+
gap: 6px;
|
|
222
|
+
|
|
223
|
+
.product_qty_container {
|
|
224
|
+
display: flex;
|
|
225
|
+
align-items: flex-start;
|
|
226
|
+
align-self: stretch;
|
|
227
|
+
border-radius: 4px;
|
|
228
|
+
border: 0.5px solid #d0d5dd;
|
|
229
|
+
background: #fff;
|
|
230
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
231
|
+
|
|
232
|
+
.product_qty_label {
|
|
233
|
+
display: flex;
|
|
234
|
+
padding: 8px 12px;
|
|
235
|
+
align-items: center;
|
|
236
|
+
border-radius: 8px 0px 0px 8px;
|
|
237
|
+
p {
|
|
238
|
+
color: #475467;
|
|
239
|
+
font-size: 16px;
|
|
240
|
+
font-weight: 400;
|
|
241
|
+
line-height: 24px;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.product_qty_number {
|
|
246
|
+
display: flex;
|
|
247
|
+
padding: 8px 12px;
|
|
248
|
+
align-items: center;
|
|
249
|
+
gap: 8px;
|
|
250
|
+
flex: 1 0 0;
|
|
251
|
+
align-self: stretch;
|
|
252
|
+
border-radius: 0px 4px 4px 0px;
|
|
253
|
+
background: #fff;
|
|
254
|
+
border-left: 1px solid #d0d5dd;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.product_price {
|
|
260
|
+
color: #101828;
|
|
261
|
+
text-align: right;
|
|
262
|
+
font-size: 20px;
|
|
263
|
+
font-weight: 700;
|
|
264
|
+
line-height: 30px;
|
|
265
|
+
white-space: nowrap;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.product_actions_wrapper {
|
|
270
|
+
display: flex;
|
|
271
|
+
align-items: center;
|
|
272
|
+
gap: 16px;
|
|
273
|
+
|
|
274
|
+
.product_action_button {
|
|
275
|
+
display: flex;
|
|
276
|
+
justify-content: center;
|
|
277
|
+
align-items: center;
|
|
278
|
+
gap: 8px;
|
|
279
|
+
color: #243dc6;
|
|
280
|
+
font-size: 14px;
|
|
281
|
+
font-weight: 400;
|
|
282
|
+
line-height: 20px;
|
|
283
|
+
white-space: nowrap;
|
|
284
|
+
|
|
285
|
+
&:hover {
|
|
286
|
+
font-weight: 600;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.remove_button {
|
|
291
|
+
display: flex;
|
|
292
|
+
justify-content: center;
|
|
293
|
+
align-items: center;
|
|
294
|
+
color: #667085;
|
|
295
|
+
font-size: 14px;
|
|
296
|
+
font-weight: 400;
|
|
297
|
+
line-height: 20px;
|
|
298
|
+
|
|
299
|
+
&:hover {
|
|
300
|
+
font-weight: 600;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.brand_group_wrapper {
|
|
309
|
+
.brand_title {
|
|
310
|
+
margin-bottom: 8px;
|
|
311
|
+
padding: 4px;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.wishlist-modal {
|
|
321
|
+
.form-group {
|
|
322
|
+
margin-bottom: 1rem;
|
|
323
|
+
|
|
324
|
+
label {
|
|
325
|
+
display: block;
|
|
326
|
+
margin-bottom: 0.25rem;
|
|
327
|
+
font-size: 0.875rem;
|
|
328
|
+
font-weight: 500;
|
|
329
|
+
color: #374151; // gray-700
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
input,
|
|
333
|
+
textarea {
|
|
334
|
+
width: 100%;
|
|
335
|
+
padding: 0.5rem 0.75rem;
|
|
336
|
+
font-size: 0.875rem;
|
|
337
|
+
border: 1px solid #d1d5db; // gray-300
|
|
338
|
+
border-radius: 0.375rem;
|
|
339
|
+
outline: none;
|
|
340
|
+
box-sizing: border-box;
|
|
341
|
+
transition: all 0.2s;
|
|
342
|
+
|
|
343
|
+
&:focus {
|
|
344
|
+
border-color: #2563eb; // blue-600
|
|
345
|
+
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
textarea {
|
|
350
|
+
min-height: 100px;
|
|
351
|
+
resize: vertical;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.action-buttons {
|
|
356
|
+
margin-top: 1.5rem;
|
|
357
|
+
display: flex;
|
|
358
|
+
gap: 1rem;
|
|
359
|
+
align-items: center;
|
|
360
|
+
|
|
361
|
+
.create-btn {
|
|
362
|
+
background-color: #2563eb;
|
|
363
|
+
color: #fff;
|
|
364
|
+
padding: 0.5rem 1rem;
|
|
365
|
+
border-radius: 0.375rem;
|
|
366
|
+
border: none;
|
|
367
|
+
cursor: pointer;
|
|
368
|
+
font-weight: 500;
|
|
369
|
+
|
|
370
|
+
&:hover {
|
|
371
|
+
background-color: #1d4ed8;
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.discard-btn {
|
|
376
|
+
background: none;
|
|
377
|
+
border: none;
|
|
378
|
+
color: #374151;
|
|
379
|
+
font-size: 0.875rem;
|
|
380
|
+
cursor: pointer;
|
|
381
|
+
|
|
382
|
+
&:hover {
|
|
383
|
+
text-decoration: underline;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
|
|
4
|
+
$resizerId: "[data-cms-tool='cms-element-resizer']";
|
|
5
|
+
$resizeActive: '[data-cms-element-resizer="true"]';
|
|
6
|
+
[data-div-type="element"] {
|
|
7
|
+
&[data-element-type="cartSummary"] {
|
|
8
|
+
width: var(
|
|
9
|
+
--_sf-el-wh-st-mx,
|
|
10
|
+
calc(
|
|
11
|
+
1% *
|
|
12
|
+
var(
|
|
13
|
+
--_mob-ctm-ele-nw-wh-vl,
|
|
14
|
+
var(--_tab-ctm-ele-nw-wh-vl, var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh)))
|
|
15
|
+
)
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
margin: var(--_ctm-mob-lt-mn, var(--_ctm-tab-lt-mn, var(--_ctm-lt-mn)));
|
|
20
|
+
|
|
21
|
+
& > div {
|
|
22
|
+
&.wrapper {
|
|
23
|
+
width: 100%;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.cart_summary_wrapper {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
align-items: center;
|
|
31
|
+
align-self: stretch;
|
|
32
|
+
border-radius: 4px;
|
|
33
|
+
border: 0.5px solid #d0d5dd;
|
|
34
|
+
background: #fff;
|
|
35
|
+
|
|
36
|
+
.cart_summary_heading_wrapper {
|
|
37
|
+
display: flex;
|
|
38
|
+
padding: 12px;
|
|
39
|
+
align-items: center;
|
|
40
|
+
gap: 12px;
|
|
41
|
+
align-self: stretch;
|
|
42
|
+
border-radius: 4px 4px 0px 0px;
|
|
43
|
+
border: 0.5px solid #d0d5dd;
|
|
44
|
+
background: #f5f5f5;
|
|
45
|
+
|
|
46
|
+
.cart_summary_heading {
|
|
47
|
+
color: #101828;
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
font-weight: 700;
|
|
50
|
+
line-height: 24px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.cart_summary_content_wrapper {
|
|
55
|
+
display: flex;
|
|
56
|
+
padding: 16px;
|
|
57
|
+
flex-direction: column;
|
|
58
|
+
align-items: flex-start;
|
|
59
|
+
gap: 16px;
|
|
60
|
+
align-self: stretch;
|
|
61
|
+
border-radius: 0px 0px 4px 4px;
|
|
62
|
+
|
|
63
|
+
.cart_summary_details_wrapper {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
align-items: flex-start;
|
|
67
|
+
gap: 8px;
|
|
68
|
+
align-self: stretch;
|
|
69
|
+
|
|
70
|
+
.num_of_items_wrapper {
|
|
71
|
+
display: flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
gap: 16px;
|
|
74
|
+
align-self: stretch;
|
|
75
|
+
|
|
76
|
+
.number_of_items_label {
|
|
77
|
+
flex: 1 0 0;
|
|
78
|
+
color: #667085;
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
font-weight: 400;
|
|
81
|
+
line-height: 20px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.num_of_items {
|
|
85
|
+
color: #101828;
|
|
86
|
+
font-size: 14px;
|
|
87
|
+
font-weight: 500;
|
|
88
|
+
line-height: 20px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.coupon_code_wrapper {
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-direction: column;
|
|
95
|
+
gap: 8px;
|
|
96
|
+
width: 100%;
|
|
97
|
+
|
|
98
|
+
.coupon_code_btn_wrapper {
|
|
99
|
+
display: flex;
|
|
100
|
+
justify-content: space-between;
|
|
101
|
+
width: 100%;
|
|
102
|
+
|
|
103
|
+
.coupon_code_btn {
|
|
104
|
+
display: flex;
|
|
105
|
+
justify-content: center;
|
|
106
|
+
align-items: center;
|
|
107
|
+
gap: 8px;
|
|
108
|
+
color: #243dc6;
|
|
109
|
+
font-size: 14px;
|
|
110
|
+
font-weight: 400;
|
|
111
|
+
line-height: 20px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.coupon_code_input {
|
|
116
|
+
width: 100%;
|
|
117
|
+
padding: 8px 12px;
|
|
118
|
+
border-radius: 8px;
|
|
119
|
+
border: 1px solid #d0d5dd;
|
|
120
|
+
background-color: #ffffff;
|
|
121
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
122
|
+
font-size: 16px;
|
|
123
|
+
line-height: 24px;
|
|
124
|
+
height: 40px;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.subtotal_wrapper {
|
|
130
|
+
display: flex;
|
|
131
|
+
align-items: center;
|
|
132
|
+
gap: 16px;
|
|
133
|
+
align-self: stretch;
|
|
134
|
+
|
|
135
|
+
.subtotal_label {
|
|
136
|
+
display: flex;
|
|
137
|
+
flex-direction: column;
|
|
138
|
+
justify-content: center;
|
|
139
|
+
flex: 1 0 0;
|
|
140
|
+
align-self: stretch;
|
|
141
|
+
color: #1f1930;
|
|
142
|
+
font-size: 16px;
|
|
143
|
+
font-weight: 600;
|
|
144
|
+
line-height: 24px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.subtotal {
|
|
148
|
+
color: #1f1930;
|
|
149
|
+
font-size: 20px;
|
|
150
|
+
font-weight: 700;
|
|
151
|
+
line-height: 30px;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.checkout_btn {
|
|
156
|
+
display: flex;
|
|
157
|
+
height: 48px;
|
|
158
|
+
padding: 12px 24px;
|
|
159
|
+
justify-content: center;
|
|
160
|
+
align-items: center;
|
|
161
|
+
gap: 8px;
|
|
162
|
+
align-self: stretch;
|
|
163
|
+
border-radius: 4px;
|
|
164
|
+
border: 1px solid #243dc6;
|
|
165
|
+
background: #243dc6;
|
|
166
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
167
|
+
color: #fff;
|
|
168
|
+
font-size: 16px;
|
|
169
|
+
font-weight: 600;
|
|
170
|
+
line-height: 24px;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|