@sc-360-v2/storefront-cms-library 0.4.26 → 0.4.27
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 +8 -8
- package/dist/add-products-tab.scss +50 -0
- package/dist/allocationDetails.scss +2 -2
- package/dist/allocations.scss +6 -6
- package/dist/builder.js +1 -1
- package/dist/bundleDetails copy.scss +1431 -0
- package/dist/bundleDetails.scss +3054 -107
- package/dist/button.scss +5 -2
- package/dist/buy-for-tab-container.scss +2 -1
- package/dist/buy-for-tab.scss +32 -21
- package/dist/buyForHeaders.scss +4543 -4081
- package/dist/buyForPopup.scss +140 -116
- package/dist/cart-details.scss +1 -1
- package/dist/cart-products-sidebar.scss +18 -56
- package/dist/cart-summary.scss +12 -11
- package/dist/dropdownTemplate.scss +5 -0
- package/dist/functions.js +1 -1
- package/dist/functions.scss +4 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/language-selector.scss +4 -1
- package/dist/modal.scss +37 -27
- package/dist/multi-select-dropdown.scss +53 -41
- package/dist/option-bar.scss +2 -2
- package/dist/order-status.scss +18 -14
- package/dist/product-actions.scss +27 -27
- package/dist/product-price.scss +1910 -1437
- package/dist/product-sizechart.scss +5 -2
- package/dist/quantity-selector.scss +6 -6
- package/dist/quick-order-pad.scss +106 -42
- package/dist/repeater-embla-controls.scss +4 -2
- package/dist/repeater.scss +3 -3
- package/dist/search.scss +11 -1
- package/dist/section.scss +9 -9
- package/dist/shipping-payments.scss +5 -0
- package/dist/types/builder/elements/common.d.ts +1 -0
- package/dist/types/builder/elements/light-box-v2/index.d.ts +1 -0
- package/dist/types/builder/elements/section/index.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/bundleDetails.d.ts +5 -0
- package/dist/types/builder/tools/element-edit/language-menu.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/productPrice.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +2 -0
- package/dist/types/website/constants/data-connector-souces.d.ts +13 -6
- package/dist/website.js +1 -1
- package/package.json +1 -1
package/dist/buyForPopup.scss
CHANGED
|
@@ -7,60 +7,142 @@
|
|
|
7
7
|
align-items: center;
|
|
8
8
|
justify-content: center;
|
|
9
9
|
z-index: 1000;
|
|
10
|
-
|
|
10
|
+
.popup_container {
|
|
11
|
+
width: 90%;
|
|
12
|
+
max-width: 600px;
|
|
13
|
+
background: var(--_base-white);
|
|
14
|
+
border-radius: 12px;
|
|
15
|
+
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
min-height: 480px;
|
|
11
19
|
|
|
12
|
-
.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
.popup_header {
|
|
21
|
+
display: flex;
|
|
22
|
+
justify-content: space-between;
|
|
23
|
+
align-items: center;
|
|
24
|
+
border-bottom: 1px solid var(--_gray-200);
|
|
25
|
+
padding: 16px 24px;
|
|
26
|
+
gap: 4px;
|
|
27
|
+
|
|
28
|
+
.close-icon {
|
|
29
|
+
width: 32px;
|
|
30
|
+
height: 32px;
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
border-radius: 4px;
|
|
35
|
+
svg {
|
|
36
|
+
width: 18px;
|
|
37
|
+
height: 18px;
|
|
38
|
+
path {
|
|
39
|
+
stroke: var(--_gray-600);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
&:hover {
|
|
43
|
+
background-color: var(--_gray-100);
|
|
44
|
+
svg path {
|
|
45
|
+
stroke: var(--_gray-900);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
22
49
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
gap: 4px;
|
|
50
|
+
h2 {
|
|
51
|
+
font-size: 18px;
|
|
52
|
+
font-weight: normal;
|
|
53
|
+
margin: 0;
|
|
54
|
+
line-height: 28px;
|
|
55
|
+
}
|
|
30
56
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
justify-content: center;
|
|
36
|
-
align-items: center;
|
|
37
|
-
border-radius: 4px;
|
|
38
|
-
svg {
|
|
39
|
-
width: 18px;
|
|
40
|
-
height: 18px;
|
|
41
|
-
path {
|
|
42
|
-
stroke: var(--_gray-600);
|
|
57
|
+
p {
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
color: #666;
|
|
60
|
+
margin: 4px 0 0;
|
|
43
61
|
}
|
|
44
62
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
63
|
+
|
|
64
|
+
.popup_body {
|
|
65
|
+
padding: 8px 24px 24px 24px;
|
|
66
|
+
flex-grow: 1;
|
|
67
|
+
.est__dropdown__main {
|
|
68
|
+
.est__dropdown {
|
|
69
|
+
.list .list__option {
|
|
70
|
+
font-size: 14px;
|
|
71
|
+
}
|
|
72
|
+
.est__dropdown__button {
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-content: space-between;
|
|
75
|
+
align-items: center;
|
|
76
|
+
width: 100%;
|
|
77
|
+
.value__selected {
|
|
78
|
+
justify-content: start;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
49
82
|
}
|
|
50
83
|
}
|
|
51
|
-
}
|
|
52
84
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
85
|
+
.popup_footer {
|
|
86
|
+
display: flex;
|
|
87
|
+
padding: 16px 24px;
|
|
88
|
+
border-top: 1px solid var(--_gray-200);
|
|
89
|
+
justify-content: end;
|
|
90
|
+
gap: 12px;
|
|
91
|
+
|
|
92
|
+
button {
|
|
93
|
+
padding: 10px 16px;
|
|
94
|
+
border-radius: 6px;
|
|
95
|
+
font-size: 14px;
|
|
96
|
+
font-weight: 500;
|
|
97
|
+
cursor: pointer;
|
|
98
|
+
border: none;
|
|
99
|
+
transition: background 0.2s ease;
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
&[aria-label="Discard"] {
|
|
103
|
+
&:hover {
|
|
104
|
+
background-color: var(--_gray-100);
|
|
105
|
+
color: var(--_gray-900);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
59
108
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
109
|
+
&:first-child {
|
|
110
|
+
// background: #f3f3f3;
|
|
111
|
+
color: #333;
|
|
112
|
+
|
|
113
|
+
&:hover {
|
|
114
|
+
// background: #e0e0e0;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&.proceed_button {
|
|
119
|
+
background: var(--_primary-400);
|
|
120
|
+
color: #fff;
|
|
121
|
+
display: flex;
|
|
122
|
+
gap: 10px;
|
|
123
|
+
|
|
124
|
+
span {
|
|
125
|
+
svg {
|
|
126
|
+
width: 18px;
|
|
127
|
+
height: 18px;
|
|
128
|
+
|
|
129
|
+
path {
|
|
130
|
+
stroke: #ffffff;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&:disabled {
|
|
136
|
+
background: var(--_primary-100);
|
|
137
|
+
cursor: not-allowed;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&:not(:disabled):hover {
|
|
141
|
+
background: #0069d9;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
64
146
|
}
|
|
65
147
|
}
|
|
66
148
|
|
|
@@ -93,11 +175,6 @@
|
|
|
93
175
|
}
|
|
94
176
|
}
|
|
95
177
|
|
|
96
|
-
.popup_body {
|
|
97
|
-
padding: 24px;
|
|
98
|
-
flex-grow: 1;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
178
|
.search_input {
|
|
102
179
|
padding: 10px 12px;
|
|
103
180
|
border: 1px solid #ddd;
|
|
@@ -120,7 +197,15 @@
|
|
|
120
197
|
flex-direction: column;
|
|
121
198
|
gap: 16px;
|
|
122
199
|
overflow-y: auto;
|
|
123
|
-
max-height:
|
|
200
|
+
max-height: 210px;
|
|
201
|
+
.empty__data {
|
|
202
|
+
width: 100%;
|
|
203
|
+
display: flex;
|
|
204
|
+
flex-direction: column;
|
|
205
|
+
justify-content: center;
|
|
206
|
+
align-items: center;
|
|
207
|
+
height: 210px;
|
|
208
|
+
}
|
|
124
209
|
}
|
|
125
210
|
|
|
126
211
|
.group_section {
|
|
@@ -130,12 +215,12 @@
|
|
|
130
215
|
gap: 8px;
|
|
131
216
|
font-weight: 500;
|
|
132
217
|
font-size: 14px;
|
|
133
|
-
|
|
134
|
-
padding: 8px;
|
|
218
|
+
padding-block: 16px 0px;
|
|
135
219
|
border-bottom: 1px solid var(--_gray-200);
|
|
220
|
+
margin-bottom: 16px;
|
|
136
221
|
|
|
137
222
|
input {
|
|
138
|
-
width:
|
|
223
|
+
width: 100%;
|
|
139
224
|
}
|
|
140
225
|
|
|
141
226
|
label {
|
|
@@ -155,6 +240,7 @@
|
|
|
155
240
|
margin-bottom: 8px;
|
|
156
241
|
cursor: pointer;
|
|
157
242
|
transition: all 0.2s ease;
|
|
243
|
+
margin-top: 16px;
|
|
158
244
|
|
|
159
245
|
&:last-child {
|
|
160
246
|
margin-bottom: 0;
|
|
@@ -197,65 +283,3 @@
|
|
|
197
283
|
}
|
|
198
284
|
}
|
|
199
285
|
}
|
|
200
|
-
|
|
201
|
-
.popup_footer {
|
|
202
|
-
display: flex;
|
|
203
|
-
padding: 16px 24px;
|
|
204
|
-
border-top: 1px solid var(--_gray-200);
|
|
205
|
-
justify-content: end;
|
|
206
|
-
gap: 12px;
|
|
207
|
-
|
|
208
|
-
button {
|
|
209
|
-
padding: 10px 16px;
|
|
210
|
-
border-radius: 6px;
|
|
211
|
-
font-size: 14px;
|
|
212
|
-
font-weight: 500;
|
|
213
|
-
cursor: pointer;
|
|
214
|
-
border: none;
|
|
215
|
-
transition: background 0.2s ease;
|
|
216
|
-
display: flex;
|
|
217
|
-
align-items: center;
|
|
218
|
-
&[aria-label="Discard"] {
|
|
219
|
-
&:hover {
|
|
220
|
-
background-color: var(--_gray-100);
|
|
221
|
-
color: var(--_gray-900);
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
&:first-child {
|
|
226
|
-
// background: #f3f3f3;
|
|
227
|
-
color: #333;
|
|
228
|
-
|
|
229
|
-
&:hover {
|
|
230
|
-
// background: #e0e0e0;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
&.proceed_button {
|
|
235
|
-
background: var(--_primary-400);
|
|
236
|
-
color: #fff;
|
|
237
|
-
display: flex;
|
|
238
|
-
gap: 10px;
|
|
239
|
-
|
|
240
|
-
span {
|
|
241
|
-
svg {
|
|
242
|
-
width: 18px;
|
|
243
|
-
height: 18px;
|
|
244
|
-
|
|
245
|
-
path {
|
|
246
|
-
stroke: #ffffff;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
&:disabled {
|
|
252
|
-
background: var(--_primary-100);
|
|
253
|
-
cursor: not-allowed;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
&:not(:disabled):hover {
|
|
257
|
-
background: #0069d9;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
}
|
package/dist/cart-details.scss
CHANGED
|
@@ -1386,7 +1386,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1386
1386
|
height: 40px;
|
|
1387
1387
|
display: flex;
|
|
1388
1388
|
position: relative;
|
|
1389
|
-
|
|
1389
|
+
width: 55px;
|
|
1390
1390
|
border-radius: 0px 4px 4px 0px;
|
|
1391
1391
|
background: #fff;
|
|
1392
1392
|
border-left: 1px solid #d0d5dd;
|
|
@@ -17,7 +17,6 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
17
17
|
width: 100%;
|
|
18
18
|
height: 100%;
|
|
19
19
|
top: 0;
|
|
20
|
-
// background: rgba(112, 112, 112, 0.13);
|
|
21
20
|
background: transparent;
|
|
22
21
|
z-index: 9999;
|
|
23
22
|
}
|
|
@@ -52,9 +51,6 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
52
51
|
|
|
53
52
|
// Sidebar Header
|
|
54
53
|
.minicart_header {
|
|
55
|
-
// display: flex;
|
|
56
|
-
// justify-content: flex-end;
|
|
57
|
-
// align-items: center;
|
|
58
54
|
padding-top: 6px;
|
|
59
55
|
position: sticky;
|
|
60
56
|
top: 0;
|
|
@@ -64,6 +60,7 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
64
60
|
display: flex;
|
|
65
61
|
justify-content: flex-end;
|
|
66
62
|
width: 100%;
|
|
63
|
+
cursor: pointer;
|
|
67
64
|
svg {
|
|
68
65
|
margin-right: 8px;
|
|
69
66
|
width: 18px;
|
|
@@ -101,78 +98,58 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
101
98
|
.text_label {
|
|
102
99
|
padding: 6px 16px;
|
|
103
100
|
background-color: var(--_gray-100);
|
|
104
|
-
color: var(--_gray-600);
|
|
105
101
|
width: 100%;
|
|
106
102
|
text-align: center;
|
|
107
|
-
font-size: 12px;
|
|
108
|
-
font-weight: 500;
|
|
109
|
-
line-height: 18px;
|
|
110
103
|
}
|
|
111
104
|
}
|
|
112
105
|
|
|
113
106
|
.mincart_items {
|
|
114
|
-
flex-grow: 1;
|
|
115
|
-
overflow-y: auto;
|
|
116
|
-
// Cart Popup
|
|
117
107
|
.cart_popup {
|
|
118
108
|
background-color: #fff;
|
|
119
|
-
// border-radius: 8px;
|
|
120
|
-
display: flex;
|
|
121
|
-
flex-direction: column;
|
|
122
|
-
gap: 16px;
|
|
123
|
-
padding: 16px;
|
|
124
109
|
}
|
|
125
110
|
|
|
126
111
|
.cart_item {
|
|
127
112
|
display: flex;
|
|
128
113
|
flex-direction: column;
|
|
129
114
|
align-items: center;
|
|
130
|
-
|
|
115
|
+
gap: 4px;
|
|
131
116
|
text-align: center;
|
|
132
|
-
|
|
133
|
-
// border-bottom: 1px solid var(--_base-white);
|
|
117
|
+
padding: 16px;
|
|
134
118
|
&:hover {
|
|
135
|
-
background-color: var(--_gray-50);
|
|
136
119
|
}
|
|
137
|
-
|
|
120
|
+
.product_img {
|
|
121
|
+
width: 64px !important;
|
|
122
|
+
height: 64px !important;
|
|
123
|
+
}
|
|
138
124
|
.item_info {
|
|
139
|
-
margin-top: 10px;
|
|
140
125
|
text-align: center;
|
|
141
126
|
}
|
|
142
127
|
|
|
143
128
|
.item_title {
|
|
144
|
-
font-size: 12px;
|
|
145
129
|
font-weight: 500;
|
|
146
|
-
color: var(--_gray-600);
|
|
147
130
|
margin-bottom: 4px;
|
|
148
|
-
|
|
131
|
+
text-align: center;
|
|
149
132
|
}
|
|
150
133
|
|
|
151
134
|
.item_price {
|
|
152
|
-
font-size: 12px;
|
|
153
135
|
font-weight: 700;
|
|
154
|
-
|
|
155
|
-
line-height: 18px;
|
|
136
|
+
text-align: center;
|
|
156
137
|
}
|
|
157
138
|
|
|
158
139
|
.item_image {
|
|
159
|
-
max-width: 64px;
|
|
160
|
-
height: 64px;
|
|
161
|
-
border-radius: 1px;
|
|
162
|
-
object-fit: contain;
|
|
163
140
|
}
|
|
164
141
|
.item_action_btn {
|
|
165
142
|
padding: 8px;
|
|
166
|
-
color:
|
|
167
|
-
// margin-top: 4px;
|
|
143
|
+
color: var(--_thm-cs-tt-ls-as);
|
|
168
144
|
border-radius: 4px;
|
|
169
145
|
font-size: 14px;
|
|
170
146
|
font-weight: 400;
|
|
171
147
|
line-height: 18px;
|
|
148
|
+
cursor: pointer;
|
|
172
149
|
|
|
173
150
|
&:hover {
|
|
174
151
|
background-color: var(--_primary-50);
|
|
175
|
-
color:
|
|
152
|
+
color: var(--_thm-cs-tt-ls-as);
|
|
176
153
|
}
|
|
177
154
|
}
|
|
178
155
|
}
|
|
@@ -184,7 +161,7 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
184
161
|
display: flex;
|
|
185
162
|
flex-direction: column;
|
|
186
163
|
justify-content: center;
|
|
187
|
-
padding:
|
|
164
|
+
padding: 16px;
|
|
188
165
|
border-top: 1px solid #eee;
|
|
189
166
|
|
|
190
167
|
.discard__btn {
|
|
@@ -207,7 +184,6 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
207
184
|
transition: background 0.2s;
|
|
208
185
|
|
|
209
186
|
&:hover {
|
|
210
|
-
// background: darken($primary-color, 5%);
|
|
211
187
|
background: color-mix(in srgb, #243dc6 95%, transparent 5%);
|
|
212
188
|
}
|
|
213
189
|
}
|
|
@@ -217,33 +193,19 @@ $shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
|
|
|
217
193
|
display: flex;
|
|
218
194
|
flex-direction: column;
|
|
219
195
|
align-items: center;
|
|
220
|
-
gap:
|
|
196
|
+
gap: 6px;
|
|
221
197
|
.total_label {
|
|
222
|
-
font-size: 12px;
|
|
223
|
-
font-weight: 500;
|
|
224
|
-
color: var(--_gray-600);
|
|
225
|
-
line-height: 18px;
|
|
226
198
|
}
|
|
227
199
|
|
|
228
200
|
.total_price {
|
|
229
|
-
font-size: 12px;
|
|
230
201
|
font-weight: 700;
|
|
231
|
-
color: var(--_gray-900);
|
|
232
|
-
line-height: 18px;
|
|
233
202
|
}
|
|
234
203
|
|
|
235
204
|
.view_cart_btn {
|
|
236
|
-
padding:
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
border-radius: 4px;
|
|
205
|
+
padding: 8px 12px;
|
|
206
|
+
margin-bottom: 8px;
|
|
207
|
+
font-size: 14px;
|
|
208
|
+
font-weight: 500;
|
|
241
209
|
cursor: pointer;
|
|
242
|
-
margin-bottom: 12px;
|
|
243
|
-
|
|
244
|
-
&:hover {
|
|
245
|
-
background-color: var(--_thm-py-bs-hr-se-bd-cr);
|
|
246
|
-
color: var(--_thm-py-bs-dt-se-tt-cr --_thm-py-bs-hr-se-tt-cr);
|
|
247
|
-
}
|
|
248
210
|
}
|
|
249
211
|
}
|
package/dist/cart-summary.scss
CHANGED
|
@@ -1080,6 +1080,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1080
1080
|
--_ctm-mob-dn-pt-wt-pt-ce-pg,
|
|
1081
1081
|
var(--_ctm-tab-dn-pt-wt-pt-ce-pg, var(--_ctm-dn-pt-wt-pt-ce-pg))
|
|
1082
1082
|
);
|
|
1083
|
+
word-break: break-word;
|
|
1083
1084
|
}
|
|
1084
1085
|
.cart_summary_secondary_text {
|
|
1085
1086
|
color: var(--_ctm-dn-sy-tt-dn-cr);
|
|
@@ -1310,7 +1311,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1310
1311
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-se-in-se)};
|
|
1311
1312
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-se-in-se)};
|
|
1312
1313
|
--_sf-hr-in-c1: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-se-in-c1)};
|
|
1313
|
-
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-ue)};
|
|
1314
|
+
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-se-ue)};
|
|
1314
1315
|
|
|
1315
1316
|
// for pading and width
|
|
1316
1317
|
--_sf-hr-pg: #{prepareMediaVariable(--_ctm-dn-ct-as-ct-hr-pg)};
|
|
@@ -1402,7 +1403,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1402
1403
|
|
|
1403
1404
|
&:hover .icon--hover {
|
|
1404
1405
|
// opacity: 1;
|
|
1405
|
-
display:
|
|
1406
|
+
display: flex;
|
|
1406
1407
|
}
|
|
1407
1408
|
|
|
1408
1409
|
&:hover .icon--default {
|
|
@@ -1560,7 +1561,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1560
1561
|
|
|
1561
1562
|
&:hover .icon--hover {
|
|
1562
1563
|
// opacity: 1;
|
|
1563
|
-
display:
|
|
1564
|
+
display: flex;
|
|
1564
1565
|
}
|
|
1565
1566
|
|
|
1566
1567
|
&:hover .icon--default {
|
|
@@ -1611,7 +1612,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1611
1612
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-se-in-se)};
|
|
1612
1613
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-se-in-se)};
|
|
1613
1614
|
--_sf-hr-in-c1: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-se-in-c1)};
|
|
1614
|
-
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-ue)};
|
|
1615
|
+
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-se-ue)};
|
|
1615
1616
|
|
|
1616
1617
|
// for pading and width
|
|
1617
1618
|
--_sf-hr-pg: #{prepareMediaVariable(--_ctm-dn-ct-as-rt-qe-hr-pg)};
|
|
@@ -1717,7 +1718,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1717
1718
|
|
|
1718
1719
|
&:hover .icon--hover {
|
|
1719
1720
|
// opacity: 1;
|
|
1720
|
-
display:
|
|
1721
|
+
display: flex;
|
|
1721
1722
|
}
|
|
1722
1723
|
|
|
1723
1724
|
&:hover .icon--default {
|
|
@@ -1768,7 +1769,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1768
1769
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-se-in-se)};
|
|
1769
1770
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-se-in-se)};
|
|
1770
1771
|
--_sf-hr-in-c1: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-se-in-c1)};
|
|
1771
|
-
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-ue)};
|
|
1772
|
+
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-se-ue)};
|
|
1772
1773
|
|
|
1773
1774
|
// for pading and width
|
|
1774
1775
|
--_sf-hr-pg: #{prepareMediaVariable(--_ctm-dn-ct-as-rw-or-hr-pg)};
|
|
@@ -1874,7 +1875,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1874
1875
|
|
|
1875
1876
|
&:hover .icon--hover {
|
|
1876
1877
|
// opacity: 1;
|
|
1877
|
-
display:
|
|
1878
|
+
display: flex;
|
|
1878
1879
|
}
|
|
1879
1880
|
|
|
1880
1881
|
&:hover .icon--default {
|
|
@@ -1925,7 +1926,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
1925
1926
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-se-in-se)};
|
|
1926
1927
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-se-in-se)};
|
|
1927
1928
|
--_sf-hr-in-c1: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-se-in-c1)};
|
|
1928
|
-
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-ue)};
|
|
1929
|
+
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-se-ue)};
|
|
1929
1930
|
|
|
1930
1931
|
// for pading and width
|
|
1931
1932
|
--_sf-hr-pg: #{prepareMediaVariable(--_ctm-dn-ct-as-ce-sb-os-hr-pg)};
|
|
@@ -2050,7 +2051,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
2050
2051
|
|
|
2051
2052
|
&:hover .icon--hover {
|
|
2052
2053
|
// opacity: 1;
|
|
2053
|
-
display:
|
|
2054
|
+
display: flex;
|
|
2054
2055
|
}
|
|
2055
2056
|
|
|
2056
2057
|
&:hover .icon--default {
|
|
@@ -2101,7 +2102,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
2101
2102
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-se-in-se)};
|
|
2102
2103
|
--_sf-hr-in-se: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-se-in-se)};
|
|
2103
2104
|
--_sf-hr-in-c1: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-se-in-c1)};
|
|
2104
|
-
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-ue)};
|
|
2105
|
+
--_sf-hr-ue: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-se-ue)};
|
|
2105
2106
|
|
|
2106
2107
|
// for pading and width
|
|
2107
2108
|
--_sf-hr-pg: #{prepareMediaVariable(--_ctm-dn-ct-as-st-qe-hr-pg)};
|
|
@@ -2208,7 +2209,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
2208
2209
|
|
|
2209
2210
|
&:hover .icon--hover {
|
|
2210
2211
|
// opacity: 1;
|
|
2211
|
-
display:
|
|
2212
|
+
display: flex;
|
|
2212
2213
|
}
|
|
2213
2214
|
|
|
2214
2215
|
&:hover .icon--default {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
.dropdown-with-input-section {
|
|
2
2
|
width: 100%;
|
|
3
3
|
background-color: var(--_base-white);
|
|
4
|
+
.dropdown-label {
|
|
5
|
+
display: block;
|
|
6
|
+
margin-bottom: 6px;
|
|
7
|
+
}
|
|
4
8
|
|
|
5
9
|
.dropdown-input-section {
|
|
6
10
|
position: relative;
|
|
@@ -11,6 +15,7 @@
|
|
|
11
15
|
width: 100%;
|
|
12
16
|
align-items: center;
|
|
13
17
|
height: 40px;
|
|
18
|
+
line-height: 40px;
|
|
14
19
|
outline: 2px solid var(--_base-white);
|
|
15
20
|
border: 1px solid var(--_gray-300);
|
|
16
21
|
.selected-display {
|