@sc-360-v2/storefront-cms-library 0.3.67 → 0.3.69
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-products-tab copy.scss +0 -5
- package/dist/builder.js +1 -1
- package/dist/checkout.scss +0 -1
- package/dist/confirmationModal.scss +4 -2
- package/dist/emtpy-templates.scss +1 -0
- package/dist/modal.scss +1 -0
- package/dist/my-templates.scss +284 -70
- package/dist/product-price.scss +85 -43
- package/dist/section.scss +10 -0
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +9 -0
- package/dist/widget.scss +0 -1
- package/package.json +1 -1
package/dist/checkout.scss
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
.confirmation-button {
|
|
122
|
-
background-color: #dc2626;
|
|
122
|
+
background-color: #dc2626;
|
|
123
123
|
|
|
124
124
|
&:hover {
|
|
125
125
|
background-color: #b91c1c;
|
|
@@ -127,7 +127,9 @@
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.primaryConfirmation-button {
|
|
130
|
-
background-color: #162578;
|
|
130
|
+
background-color: #162578;
|
|
131
|
+
color: #ffffff;
|
|
132
|
+
font-weight: 600;
|
|
131
133
|
|
|
132
134
|
&:hover {
|
|
133
135
|
background-color: #101c5f;
|
package/dist/modal.scss
CHANGED
package/dist/my-templates.scss
CHANGED
|
@@ -3,82 +3,296 @@
|
|
|
3
3
|
|
|
4
4
|
[data-div-type="element"] {
|
|
5
5
|
&[data-element-type="myTemplates"] {
|
|
6
|
-
|
|
7
|
-
// height: var(--_lt-ht);
|
|
8
|
-
// margin: var(--_lt-mn);
|
|
9
|
-
// padding: var(--_lt-pg);
|
|
10
|
-
// width: var(--_ctm-lt-wh, var(--_tst-lt-wh));
|
|
11
|
-
// width: 50%;
|
|
12
|
-
// width: var(--_sf-nw-wh, var(--_tst-lt-wh));
|
|
13
|
-
width: var(
|
|
14
|
-
--_sf-el-wh-st-mx,
|
|
15
|
-
calc(
|
|
16
|
-
1% * var(--_ctm-mob-ele-nw-wh-vl, var(--_ctm-tab-ele-nw-wh-vl, var(--_ctm-ele-nw-wh-vl)))
|
|
17
|
-
)
|
|
18
|
-
);
|
|
19
|
-
margin: var(--_ctm-mob-lt-mn, var(--_ctm-tab-lt-mn, var(--_ctm-lt-mn)));
|
|
20
|
-
|
|
21
|
-
// height: clamp(var(--_ctm-lt-ht, 50px), 100px, auto) !important;
|
|
22
|
-
// height: var(--_ctm-lt-ht);
|
|
23
|
-
// height: ;
|
|
24
|
-
// height: auto;
|
|
25
|
-
// aspect-ratio: 1 / var(--_sf-aspect-ratio);
|
|
26
|
-
// --_aspect-ratio: calc(
|
|
27
|
-
// 1 * (var(--_ctm-lt-ht, var(--_tst-lt-ht)) / var(--_ctm-lt-wh, var(--_tst-lt-wh)))
|
|
28
|
-
// );
|
|
29
|
-
|
|
30
|
-
// &[data-element-sub-child="true"] {
|
|
31
|
-
// // width: max(var(--_sf-nw-wh, var(--_tst-lt-wh)));
|
|
32
|
-
// width: var(--_sf-el-wh-st-mx, calc(1% * var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh))));
|
|
33
|
-
// }
|
|
6
|
+
width: 100% !important;
|
|
34
7
|
|
|
35
8
|
& > .wrapper {
|
|
36
|
-
|
|
37
|
-
|
|
9
|
+
.template_wrapper {
|
|
10
|
+
width: 100%;
|
|
11
|
+
.template_section {
|
|
12
|
+
width: 100%;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
align-items: center;
|
|
16
|
+
margin-bottom: 24px;
|
|
17
|
+
h2 {
|
|
18
|
+
font-size: 24px;
|
|
19
|
+
}
|
|
20
|
+
.back_to_cart {
|
|
21
|
+
color: var(--_primary-400);
|
|
22
|
+
&:hover {
|
|
23
|
+
text-decoration: underline;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.template_body {
|
|
28
|
+
display: flex;
|
|
29
|
+
gap: 60px;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
.template_col_left {
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 400px;
|
|
34
|
+
background-color: var(--_base-white);
|
|
35
|
+
.wishlist-modal {
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
width: 100%;
|
|
39
|
+
|
|
40
|
+
.wishlist-modal-section {
|
|
41
|
+
// padding: 16px 24px 24px 24px;
|
|
42
|
+
gap: 16px !important;
|
|
43
|
+
overflow-x: hidden;
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: column;
|
|
46
|
+
|
|
47
|
+
.form-group {
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
gap: 8px;
|
|
51
|
+
max-width: 500px;
|
|
52
|
+
|
|
53
|
+
label {
|
|
54
|
+
display: block;
|
|
55
|
+
font-size: 0.875rem;
|
|
56
|
+
font-weight: 500;
|
|
57
|
+
color: #374151;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.primary_text_label {
|
|
61
|
+
font-weight: 700;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
input[type="radio"],
|
|
65
|
+
textarea {
|
|
66
|
+
width: 100%;
|
|
67
|
+
padding: 0.5rem 0.75rem;
|
|
68
|
+
font-size: 0.875rem;
|
|
69
|
+
border: 1px solid #d1d5db;
|
|
70
|
+
border-radius: 0.375rem;
|
|
71
|
+
outline: none;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
transition: all 0.2s;
|
|
74
|
+
|
|
75
|
+
&:focus {
|
|
76
|
+
border-color: #2563eb;
|
|
77
|
+
// box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&[type="radio"] {
|
|
81
|
+
width: fit-content;
|
|
82
|
+
height: fit-content;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.radio-group {
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
gap: 12px;
|
|
90
|
+
font-weight: normal;
|
|
91
|
+
|
|
92
|
+
.radio-label {
|
|
93
|
+
display: inline-flex;
|
|
94
|
+
align-items: center;
|
|
95
|
+
gap: 8px;
|
|
96
|
+
cursor: pointer;
|
|
97
|
+
width: fit-content;
|
|
98
|
+
|
|
99
|
+
span {
|
|
100
|
+
color: var(--_gray-500);
|
|
101
|
+
|
|
102
|
+
span {
|
|
103
|
+
color: var(--_gray-900);
|
|
104
|
+
font-weight: 500;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
textarea {
|
|
111
|
+
min-height: 100px;
|
|
112
|
+
resize: vertical;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.global-can-edit {
|
|
116
|
+
display: flex;
|
|
117
|
+
flex-direction: column;
|
|
118
|
+
align-items: flex-start;
|
|
119
|
+
margin-left: 20px;
|
|
120
|
+
margin-top: 6px;
|
|
121
|
+
gap: 6px;
|
|
122
|
+
|
|
123
|
+
input[type="checkbox"] {
|
|
124
|
+
margin: 0;
|
|
125
|
+
width: 16px;
|
|
126
|
+
height: 16px;
|
|
127
|
+
cursor: pointer;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
span {
|
|
131
|
+
font-size: 0.875rem;
|
|
132
|
+
font-weight: 600;
|
|
133
|
+
color: var(--_gray-900);
|
|
134
|
+
margin-left: -15px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
input[type="text"] {
|
|
139
|
+
height: 40px;
|
|
140
|
+
border: 1px solid var(--_gray-300);
|
|
141
|
+
border-radius: 6px;
|
|
142
|
+
padding-inline: 16px;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
.action-buttons {
|
|
147
|
+
display: flex;
|
|
148
|
+
gap: 1rem;
|
|
149
|
+
align-items: center;
|
|
150
|
+
// justify-content: flex-end;
|
|
151
|
+
flex: 1 1 auto;
|
|
152
|
+
// padding: 16px 24px;
|
|
153
|
+
// border-top: 1px solid var(--_gray-200);
|
|
154
|
+
gap: 12px;
|
|
155
|
+
margin-block: 24px;
|
|
156
|
+
padding-bottom: 24px;
|
|
157
|
+
button {
|
|
158
|
+
padding: 12px 16px;
|
|
159
|
+
border-radius: 6px;
|
|
160
|
+
}
|
|
161
|
+
.create-btn {
|
|
162
|
+
display: flex;
|
|
163
|
+
justify-content: center;
|
|
164
|
+
align-items: center;
|
|
165
|
+
gap: 8px;
|
|
166
|
+
background-color: var(--_primary-400);
|
|
167
|
+
color: var(--_base-white);
|
|
168
|
+
&.disabled {
|
|
169
|
+
opacity: 0.5;
|
|
170
|
+
pointer-events: none;
|
|
171
|
+
}
|
|
172
|
+
.loader {
|
|
173
|
+
animation: rotate-icon 1s linear infinite;
|
|
174
|
+
display: inline-block;
|
|
175
|
+
transform-origin: center;
|
|
176
|
+
|
|
177
|
+
svg path {
|
|
178
|
+
stroke: var(--_primary-200);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
&:hover {
|
|
183
|
+
background-color: var(--_primary-500);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
.discard-btn {
|
|
187
|
+
&:hover {
|
|
188
|
+
background-color: var(--_gray-50);
|
|
189
|
+
color: var(--_gray-900);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.template_col_right {
|
|
195
|
+
width: 400px;
|
|
196
|
+
height: fit-content;
|
|
197
|
+
background-color: var(--_base-white);
|
|
198
|
+
.template_summary_wrapper {
|
|
199
|
+
border: 1px solid var(--_gray-300);
|
|
200
|
+
border-radius: 4px;
|
|
201
|
+
width: 350px;
|
|
202
|
+
.template_summary_header {
|
|
203
|
+
padding: 12px 16px;
|
|
204
|
+
border-bottom: 1px solid var(--_gray-300);
|
|
205
|
+
font-size: 16px;
|
|
206
|
+
font-weight: 600;
|
|
207
|
+
background-color: #f5f5f5;
|
|
208
|
+
}
|
|
209
|
+
.template_summary_body {
|
|
210
|
+
.template_summary_items {
|
|
211
|
+
padding: 16px;
|
|
212
|
+
display: flex;
|
|
213
|
+
flex-direction: column;
|
|
214
|
+
gap: 8px;
|
|
215
|
+
.template_summary_item {
|
|
216
|
+
display: flex;
|
|
217
|
+
justify-content: space-between;
|
|
218
|
+
gap: 16px;
|
|
219
|
+
.template_summary_item_details {
|
|
220
|
+
display: flex;
|
|
221
|
+
gap: 16px;
|
|
222
|
+
.template_summary_item_pro_info {
|
|
223
|
+
h5 {
|
|
224
|
+
font-size: 16px;
|
|
225
|
+
font-weight: 600;
|
|
226
|
+
color: var(--_gray-900);
|
|
227
|
+
}
|
|
228
|
+
.template_summary_item_pro_qty {
|
|
229
|
+
color: var(--_gray-500);
|
|
230
|
+
font-size: 12px;
|
|
231
|
+
span {
|
|
232
|
+
display: block;
|
|
233
|
+
}
|
|
234
|
+
.qty {
|
|
235
|
+
color: var(--_gray-900);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
.template_summary_item_detail_price {
|
|
241
|
+
font-size: 16px;
|
|
242
|
+
font-weight: 600;
|
|
243
|
+
color: var(--_gray-900);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
38
252
|
}
|
|
39
253
|
&[data-show-shadow="false"] {
|
|
40
254
|
--_show-shadow: none;
|
|
41
255
|
}
|
|
42
256
|
|
|
43
|
-
.accordion-element {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
257
|
+
// .accordion-element {
|
|
258
|
+
// background-color: var(
|
|
259
|
+
// --_ctm-mob-dn-fq-wt-bd-cr,
|
|
260
|
+
// var(--_ctm-tab-dn-fq-wt-bd-cr, var(--_ctm-dn-fq-wt-bd-cr))
|
|
261
|
+
// );
|
|
262
|
+
// padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
263
|
+
// display: flex;
|
|
264
|
+
// flex-direction: column;
|
|
265
|
+
// --_sf-gp: var(
|
|
266
|
+
// --_ctm-mob-lt-im-sg,
|
|
267
|
+
// var(--_ctm-tab-lt-im-sg, var(--_ctm-lt-im-sg, var(--_ctm-lt-im-sg), 16px))
|
|
268
|
+
// );
|
|
269
|
+
// --_sf-cd-gp: calc(var(--_sf-gp) * 0.5);
|
|
270
|
+
// row-gap: var(--_sf-gp);
|
|
271
|
+
// width: 100%;
|
|
272
|
+
// // height: 100%;
|
|
273
|
+
// border-color: var(
|
|
274
|
+
// --_ctm-mob-dn-fq-wt-br-cr,
|
|
275
|
+
// var(--_ctm-tab-dn-fq-wt-br-cr, var(--_ctm-dn-fq-wt-br-cr))
|
|
276
|
+
// );
|
|
277
|
+
// border-style: var(
|
|
278
|
+
// --_ctm-mob-dn-fq-wt-br-se,
|
|
279
|
+
// var(--_ctm-tab-dn-fq-wt-br-se, var(--_ctm-dn-fq-wt-br-se))
|
|
280
|
+
// );
|
|
281
|
+
// border-width: var(
|
|
282
|
+
// --_ctm-mob-dn-fq-wt-br-wh,
|
|
283
|
+
// var(--_ctm-tab-dn-fq-wt-br-wh, var(--_ctm-dn-fq-wt-br-wh))
|
|
284
|
+
// );
|
|
285
|
+
// border-radius: var(
|
|
286
|
+
// --_ctm-mob-dn-fq-wt-br-rs,
|
|
287
|
+
// var(--_ctm-tab-dn-fq-wt-br-rs, var(--_ctm-dn-fq-wt-br-rs))
|
|
288
|
+
// );
|
|
289
|
+
// box-shadow: var(
|
|
290
|
+
// --_show-shadow,
|
|
291
|
+
// var(--_ctm-mob-dn-fq-wt-sw-ae, var(--_ctm-tab-dn-fq-wt-sw-ae, var(--_ctm-dn-fq-wt-sw-ae)))
|
|
292
|
+
// var(--_ctm-mob-dn-fq-wt-sw-br, var(--_ctm-tab-dn-fq-wt-sw-br, var(--_ctm-dn-fq-wt-sw-br)))
|
|
293
|
+
// var(--_ctm-mob-dn-fq-wt-sw-sd, var(--_ctm-tab-dn-fq-wt-sw-sd, var(--_ctm-dn-fq-wt-sw-sd)))
|
|
294
|
+
// var(--_ctm-mob-dn-fq-wt-sw-cr, var(--_ctm-tab-dn-fq-wt-sw-cr, var(--_ctm-dn-fq-wt-sw-cr)))
|
|
295
|
+
// );
|
|
296
|
+
// }
|
|
83
297
|
}
|
|
84
298
|
}
|
package/dist/product-price.scss
CHANGED
|
@@ -97,11 +97,58 @@
|
|
|
97
97
|
gap: 10px;
|
|
98
98
|
flex-direction: column;
|
|
99
99
|
.product-price {
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
border-color: var(
|
|
103
|
+
--_show-border,
|
|
104
|
+
var(
|
|
105
|
+
--_ctm-mob-dn-pt-pe-br-cr,
|
|
106
|
+
var(--_ctm-tab-dn-pt-pe-br-cr, var(--_ctm-dn-pt-pe-br-cr))
|
|
107
|
+
)
|
|
108
|
+
);
|
|
109
|
+
border-style: var(
|
|
110
|
+
--_show-border,
|
|
111
|
+
var(
|
|
112
|
+
--_ctm-mob-dn-pt-pe-br-se,
|
|
113
|
+
var(--_ctm-tab-dn-pt-pe-br-se, var(--_ctm-dn-pt-pe-br-se))
|
|
114
|
+
)
|
|
115
|
+
);
|
|
116
|
+
border-width: var(
|
|
117
|
+
--_show-border,
|
|
118
|
+
var(
|
|
119
|
+
--_ctm-mob-dn-pt-pe-br-wh,
|
|
120
|
+
var(--_ctm-tab-dn-pt-pe-br-wh, var(--_ctm-dn-pt-pe-br-wh))
|
|
121
|
+
)
|
|
122
|
+
);
|
|
123
|
+
border-radius: var(
|
|
124
|
+
--_ctm-mob-dn-pt-pe-br-rs,
|
|
125
|
+
var(--_ctm-tab-dn-pt-pe-br-rs, var(--_ctm-dn-pt-pe-br-rs))
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
box-shadow: var(
|
|
129
|
+
--_show-shadow,
|
|
130
|
+
var(
|
|
131
|
+
--_ctm-mob-dn-pt-pe-sw-ae,
|
|
132
|
+
var(--_ctm-tab-dn-pt-pe-sw-ae, var(--_ctm-dn-pt-pe-sw-ae))
|
|
133
|
+
)
|
|
134
|
+
var(
|
|
135
|
+
--_ctm-mob-dn-pt-pe-sw-br,
|
|
136
|
+
var(--_ctm-tab-dn-pt-pe-sw-br, var(--_ctm-dn-pt-pe-sw-br))
|
|
137
|
+
)
|
|
138
|
+
var(
|
|
139
|
+
--_ctm-mob-dn-pt-pe-sw-sd,
|
|
140
|
+
var(--_ctm-tab-dn-pt-pe-sw-sd, var(--_ctm-dn-pt-pe-sw-sd))
|
|
141
|
+
)
|
|
142
|
+
var(
|
|
143
|
+
--_ctm-mob-dn-pt-pe-sw-cr,
|
|
144
|
+
var(--_ctm-tab-dn-pt-pe-sw-cr, var(--_ctm-dn-pt-pe-sw-cr))
|
|
145
|
+
)
|
|
146
|
+
);
|
|
147
|
+
background-color: var(
|
|
148
|
+
--_ctm-mob-dn-pt-pe-bd-cr,
|
|
149
|
+
var(--_ctm-tab-dn-pt-pe-bd-cr, var(--_ctm-dn-pt-pe-bd-cr))
|
|
150
|
+
);
|
|
100
151
|
.price-span {
|
|
101
|
-
background-color: var(
|
|
102
|
-
--_ctm-mob-dn-pt-pe-bd-cr,
|
|
103
|
-
var(--_ctm-tab-dn-pt-pe-bd-cr, var(--_ctm-dn-pt-pe-bd-cr))
|
|
104
|
-
);
|
|
105
152
|
color: var(
|
|
106
153
|
--_ctm-mob-dn-pt-pe-cr,
|
|
107
154
|
var(--_ctm-tab-dn-pt-pe-cr, var(--_ctm-dn-pt-pe-cr))
|
|
@@ -139,51 +186,46 @@
|
|
|
139
186
|
--_ctm-mob-dn-pt-pe-ue,
|
|
140
187
|
var(--_ctm-tab-dn-pt-pe-ue, var(--_ctm-dn-pt-pe-ue))
|
|
141
188
|
);
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
var(--_ctm-tab-dn-pt-pe-br-cr, var(--_ctm-dn-pt-pe-br-cr))
|
|
148
|
-
)
|
|
189
|
+
}
|
|
190
|
+
.strike-price {
|
|
191
|
+
color: var(
|
|
192
|
+
--_ctm-mob-dn-pt-pe-cr-dc,
|
|
193
|
+
var(--_ctm-tab-dn-pt-pe-cr-dc, var(--_ctm-dn-pt-pe-cr-dc))
|
|
149
194
|
);
|
|
150
|
-
|
|
151
|
-
--
|
|
195
|
+
font-family: var(
|
|
196
|
+
--_sf-hr-ff,
|
|
152
197
|
var(
|
|
153
|
-
--_ctm-mob-dn-pt-pe-
|
|
154
|
-
var(--_ctm-tab-dn-pt-pe-
|
|
198
|
+
--_ctm-mob-dn-pt-pe-ft-fy-dc,
|
|
199
|
+
var(--_ctm-tab-dn-pt-pe-ft-fy-dc, var(--_ctm-dn-pt-pe-ft-fy-dc))
|
|
155
200
|
)
|
|
156
201
|
);
|
|
157
|
-
|
|
158
|
-
--
|
|
159
|
-
var(
|
|
160
|
-
--_ctm-mob-dn-pt-pe-br-wh,
|
|
161
|
-
var(--_ctm-tab-dn-pt-pe-br-wh, var(--_ctm-dn-pt-pe-br-wh))
|
|
162
|
-
)
|
|
202
|
+
font-size: var(
|
|
203
|
+
--_ctm-mob-dn-pt-pe-ft-se-dc,
|
|
204
|
+
var(--_ctm-tab-dn-pt-pe-ft-se-dc, var(--_ctm-dn-pt-pe-ft-se-dc))
|
|
163
205
|
);
|
|
164
|
-
|
|
165
|
-
--_ctm-mob-dn-pt-pe-
|
|
166
|
-
var(--_ctm-tab-dn-pt-pe-
|
|
206
|
+
font-weight: var(
|
|
207
|
+
--_ctm-mob-dn-pt-pe-ft-wt-dc,
|
|
208
|
+
var(--_ctm-tab-dn-pt-pe-ft-wt-dc, var(--_ctm-dn-pt-pe-ft-wt-dc))
|
|
167
209
|
);
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
--
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
210
|
+
font-style: var(
|
|
211
|
+
--_ctm-mob-dn-pt-pe-ft-se-ic-dc,
|
|
212
|
+
var(--_ctm-tab-dn-pt-pe-ft-se-ic-dc, var(--_ctm-dn-pt-pe-ft-se-ic-dc))
|
|
213
|
+
);
|
|
214
|
+
text-align: var(
|
|
215
|
+
--_ctm-mob-dn-pt-pe-tt-an-dc,
|
|
216
|
+
var(--_ctm-tab-dn-pt-pe-tt-an-dc, var(--_ctm-dn-pt-pe-tt-an-dc))
|
|
217
|
+
);
|
|
218
|
+
letter-spacing: var(
|
|
219
|
+
--_ctm-mob-dn-pt-pe-lr-sg-dc,
|
|
220
|
+
var(--_ctm-tab-dn-pt-pe-lr-sg-dc, var(--_ctm-dn-pt-pe-lr-sg-dc))
|
|
221
|
+
);
|
|
222
|
+
line-height: var(
|
|
223
|
+
--_ctm-mob-dn-pt-pe-le-ht-dc,
|
|
224
|
+
var(--_ctm-tab-dn-pt-pe-le-ht-dc, var(--_ctm-dn-pt-pe-le-ht-dc))
|
|
225
|
+
);
|
|
226
|
+
text-decoration: var(
|
|
227
|
+
--_ctm-mob-dn-pt-pe-ue-dc,
|
|
228
|
+
var(--_ctm-tab-dn-pt-pe-ue-dc, var(--_ctm-dn-pt-pe-ue-dc))
|
|
187
229
|
);
|
|
188
230
|
}
|
|
189
231
|
|
package/dist/section.scss
CHANGED
|
@@ -35,6 +35,16 @@ $rp: (
|
|
|
35
35
|
);
|
|
36
36
|
|
|
37
37
|
body {
|
|
38
|
+
color: var(--_thm-ty-p1-tt-cr);
|
|
39
|
+
font-family: var(--_thm-ty-p1-ft-fy), sans-serif;
|
|
40
|
+
font-size: var(--_thm-ty-p1-ft-se);
|
|
41
|
+
font-weight: var(--_thm-ty-p1-bd);
|
|
42
|
+
font-style: var(--_thm-ty-p1-ic);
|
|
43
|
+
text-align: var(--_thm-ty-p1-tt-an);
|
|
44
|
+
letter-spacing: var(--_thm-ty-p1-cr-sg);
|
|
45
|
+
line-height: var(--_thm-ty-p1-le-ht);
|
|
46
|
+
text-decoration: var(--_thm-ty-p1-ue);
|
|
47
|
+
|
|
38
48
|
// Responsive
|
|
39
49
|
@include prepareCustomClassCSSProps($rp);
|
|
40
50
|
|
|
@@ -94,6 +94,15 @@ export declare const getDefaultData: () => {
|
|
|
94
94
|
property: string;
|
|
95
95
|
propertyType: CMSElementEditTypes;
|
|
96
96
|
};
|
|
97
|
+
showCreateTemplate: {
|
|
98
|
+
value: boolean;
|
|
99
|
+
property: string;
|
|
100
|
+
propertyType: CMSElementEditTypes;
|
|
101
|
+
};
|
|
102
|
+
createTemplateLinkTo: {
|
|
103
|
+
value: boolean;
|
|
104
|
+
propertyType: CMSElementEditTypes;
|
|
105
|
+
};
|
|
97
106
|
showClearCart: {
|
|
98
107
|
value: boolean;
|
|
99
108
|
property: string;
|
package/dist/widget.scss
CHANGED