@gem-sdk/styles 1.23.0 → 1.25.0
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/builder.css +157 -8
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +751 -0
- package/dist/toolbar.min.css +1 -0
- package/package.json +1 -1
- package/src/css/builds/builder.css +112 -7
- package/src/css/builds/toolbar.css +866 -0
package/dist/builder.css
CHANGED
|
@@ -3,24 +3,30 @@
|
|
|
3
3
|
-webkit-touch-callout: none;
|
|
4
4
|
user-select: none;
|
|
5
5
|
}
|
|
6
|
+
|
|
6
7
|
.builder [disabled] {
|
|
7
8
|
pointer-events: auto;
|
|
8
9
|
}
|
|
10
|
+
|
|
9
11
|
.builder [data-slot='children'] {
|
|
10
12
|
visibility: visible;
|
|
11
13
|
}
|
|
14
|
+
|
|
12
15
|
.builder [data-slot='children']:after {
|
|
13
16
|
visibility: visible;
|
|
14
17
|
color: #aaa;
|
|
15
18
|
}
|
|
19
|
+
|
|
16
20
|
.builder [data-slot='children'] .drag-placeholder {
|
|
17
21
|
height: 100%;
|
|
18
22
|
}
|
|
23
|
+
|
|
19
24
|
.builder .generate-image-to-layout-btn {
|
|
20
25
|
position: relative;
|
|
21
26
|
background-image: linear-gradient(270.07deg, #874cfd 0.03%, #3c38e1 99.92%);
|
|
22
27
|
z-index: 1;
|
|
23
28
|
}
|
|
29
|
+
|
|
24
30
|
.builder .generate-image-to-layout-btn::before {
|
|
25
31
|
position: absolute;
|
|
26
32
|
content: '';
|
|
@@ -34,22 +40,27 @@
|
|
|
34
40
|
opacity: 0;
|
|
35
41
|
border-radius: 3px;
|
|
36
42
|
}
|
|
43
|
+
|
|
37
44
|
.builder .btn-disable {
|
|
38
45
|
background-image: none;
|
|
39
46
|
background-color: #f4f4f4;
|
|
40
47
|
color: #9e9e9e;
|
|
41
48
|
cursor: not-allowed;
|
|
42
49
|
}
|
|
50
|
+
|
|
43
51
|
.builder .generate-image-to-layout-btn:hover::before {
|
|
44
52
|
opacity: 1;
|
|
45
53
|
}
|
|
54
|
+
|
|
46
55
|
.builder .image-to-layout-input-border {
|
|
47
56
|
border: 1px solid #3c38e1;
|
|
48
57
|
border-radius: 3px;
|
|
49
58
|
}
|
|
59
|
+
|
|
50
60
|
.builder .image-to-layout-input-wrapper-modal {
|
|
51
61
|
position: relative;
|
|
52
62
|
}
|
|
63
|
+
|
|
53
64
|
.builder .image-to-layout-input-wrapper,
|
|
54
65
|
.builder .image-to-layout-input-wrapper-add-section {
|
|
55
66
|
position: relative;
|
|
@@ -57,20 +68,25 @@
|
|
|
57
68
|
background-clip: padding-box;
|
|
58
69
|
box-sizing: border-box;
|
|
59
70
|
}
|
|
71
|
+
|
|
60
72
|
.image-to-layout-input-wrapper-add-section {
|
|
61
73
|
border: 1px solid #3c67ff;
|
|
62
74
|
}
|
|
75
|
+
|
|
63
76
|
.gps-image-to-layout-progress-bar {
|
|
64
77
|
background: linear-gradient(270.07deg, #874cfd 0.03%, #3c38e1 99.92%);
|
|
65
78
|
}
|
|
79
|
+
|
|
66
80
|
.drag-placeholder {
|
|
67
81
|
display: none;
|
|
68
82
|
width: 100%;
|
|
69
83
|
}
|
|
84
|
+
|
|
70
85
|
#storefront {
|
|
71
86
|
position: relative;
|
|
72
87
|
z-index: 20;
|
|
73
88
|
}
|
|
89
|
+
|
|
74
90
|
#visual-content {
|
|
75
91
|
display: none;
|
|
76
92
|
position: absolute;
|
|
@@ -82,19 +98,22 @@
|
|
|
82
98
|
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
83
99
|
min-height: 100vh;
|
|
84
100
|
}
|
|
101
|
+
|
|
85
102
|
#visual-content .fake-placeholder {
|
|
86
103
|
position: absolute;
|
|
87
104
|
top: 0px;
|
|
88
105
|
left: 0px;
|
|
89
|
-
z-index:
|
|
106
|
+
z-index: 0;
|
|
90
107
|
background: transparent;
|
|
91
108
|
visibility: hidden;
|
|
92
109
|
/* display: none; */
|
|
93
110
|
background-image: url('//d1um8515vdn9kb.cloudfront.net/images/background-pattern.png');
|
|
94
111
|
}
|
|
112
|
+
|
|
95
113
|
#visual-content .fake-placeholder.fake-placeholder-slot {
|
|
96
114
|
background: transparent;
|
|
97
115
|
}
|
|
116
|
+
|
|
98
117
|
#visual-content .fake-placeholder.has-section {
|
|
99
118
|
/* background-color: transparent !important;
|
|
100
119
|
border: none !important;
|
|
@@ -107,15 +126,21 @@
|
|
|
107
126
|
height: 6px;
|
|
108
127
|
margin: 0px !important;
|
|
109
128
|
}
|
|
129
|
+
|
|
110
130
|
#visual-content .fake-placeholder.visual-placeholder-error {
|
|
111
131
|
background-color: #fee4e3 !important;
|
|
112
132
|
}
|
|
133
|
+
|
|
113
134
|
#visual-content .fake-placeholder.visual-placeholder-error .limitation-error-content {
|
|
114
135
|
display: none;
|
|
115
136
|
}
|
|
137
|
+
|
|
116
138
|
#visual-content .fake-placeholder.visual-placeholder-error {
|
|
117
139
|
|
|
118
|
-
font-family: Inter,
|
|
140
|
+
font-family: Inter,
|
|
141
|
+
sans-serif,
|
|
142
|
+
ui-sans-serif,
|
|
143
|
+
system-ui;
|
|
119
144
|
border: 1px dashed #f44336 !important;
|
|
120
145
|
visibility: visible;
|
|
121
146
|
color: #f44336 !important;
|
|
@@ -125,11 +150,14 @@
|
|
|
125
150
|
position: relative;
|
|
126
151
|
text-align: center;
|
|
127
152
|
}
|
|
153
|
+
|
|
128
154
|
/* border-radius: 3px; */
|
|
155
|
+
|
|
129
156
|
#visual-content .fake-placeholder.visual-placeholder-error.children-error {
|
|
130
157
|
background-color: #f44336 !important;
|
|
131
158
|
border: none !important;
|
|
132
159
|
}
|
|
160
|
+
|
|
133
161
|
#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content {
|
|
134
162
|
display: flex;
|
|
135
163
|
align-items: center;
|
|
@@ -138,12 +166,14 @@
|
|
|
138
166
|
padding: 4px 8px;
|
|
139
167
|
border-radius: 3px;
|
|
140
168
|
}
|
|
169
|
+
|
|
141
170
|
#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content span {
|
|
142
171
|
margin-left: 8px;
|
|
143
172
|
font-weight: 500;
|
|
144
173
|
font-size: 14px;
|
|
145
174
|
line-height: 150%;
|
|
146
175
|
}
|
|
176
|
+
|
|
147
177
|
#visual-content .fake-placeholder.visual-placeholder {
|
|
148
178
|
z-index: 20;
|
|
149
179
|
/* border-radius: 3px; */
|
|
@@ -157,9 +187,27 @@
|
|
|
157
187
|
visibility: visible;
|
|
158
188
|
background-color: #8aa4ff66;
|
|
159
189
|
}
|
|
190
|
+
|
|
191
|
+
#visual-content .fake-placeholder.visual-placeholder-theme-section[is-component-dragging='true'] {
|
|
192
|
+
background-color: #ebddf866 !important;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
#visual-content .fake-placeholder.visual-placeholder-theme-section {
|
|
196
|
+
background-color: #ebddf866;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not([is-component-dragging='true']) {
|
|
200
|
+
background-color: #f44336 !important;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
#visual-content .fake-placeholder.visual-placeholder-theme-section.has-section:not([is-component-dragging='true']) {
|
|
204
|
+
background-color: #9144da !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
160
207
|
#visual-content .fake-placeholder.visual-placeholder-child-on-sections {
|
|
161
208
|
margin: 16px !important;
|
|
162
209
|
}
|
|
210
|
+
|
|
163
211
|
#visual-content .fake-placeholder.visual-placeholder-between-sections {
|
|
164
212
|
background-color: #3c67ff;
|
|
165
213
|
border: none;
|
|
@@ -168,107 +216,201 @@
|
|
|
168
216
|
height: 6px;
|
|
169
217
|
margin: 0px !important;
|
|
170
218
|
}
|
|
219
|
+
|
|
171
220
|
#visual-content .fake-placeholder.not-show {
|
|
172
221
|
display: none;
|
|
173
222
|
}
|
|
223
|
+
|
|
174
224
|
#visual-content .fake-placeholder[is-blank-page='true'] {
|
|
175
225
|
background-color: #d8e1ff !important;
|
|
176
226
|
}
|
|
227
|
+
|
|
228
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'] {
|
|
229
|
+
background-color: rgba(254, 228, 227, 0.24) !important;
|
|
230
|
+
display: block;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'] .drag-to-theme-section-message {
|
|
234
|
+
display: flex;
|
|
235
|
+
align-items: center;
|
|
236
|
+
position: -webkit-sticky;
|
|
237
|
+
position: sticky;
|
|
238
|
+
top: 8px;
|
|
239
|
+
left: 8px;
|
|
240
|
+
padding: 4px;
|
|
241
|
+
font-size: 14px;
|
|
242
|
+
font-weight: 400;
|
|
243
|
+
line-height: 24px;
|
|
244
|
+
width: -webkit-fit-content;
|
|
245
|
+
width: -moz-fit-content;
|
|
246
|
+
width: fit-content;
|
|
247
|
+
margin-top: 8px;
|
|
248
|
+
margin-left: 8px;
|
|
249
|
+
color: #f9f9f9 !important;
|
|
250
|
+
border-radius: 3px !important;
|
|
251
|
+
background: #f44336 !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'] .drag-to-theme-section-message.exceed-limit {
|
|
255
|
+
margin-left: 48px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'] .drag-to-theme-section-message-icon {
|
|
259
|
+
width: 24px;
|
|
260
|
+
height: 24px;
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'] .drag-to-theme-section-message svg {
|
|
267
|
+
margin-right: 4px;
|
|
268
|
+
}
|
|
269
|
+
|
|
177
270
|
#visual-content .fake-placeholder[is-component-dragging='true'] {
|
|
178
271
|
background-color: #8aa4ff66 !important;
|
|
179
272
|
}
|
|
273
|
+
|
|
180
274
|
/* section:last-child {
|
|
181
275
|
[data-slot='children'] {
|
|
182
276
|
min-height: 358px;
|
|
183
277
|
}
|
|
184
278
|
} */
|
|
279
|
+
|
|
185
280
|
[contenteditable='true']:active,
|
|
186
281
|
[contenteditable='true']:focus,
|
|
187
282
|
[contenteditable='true']:focus-visible {
|
|
188
283
|
outline: none;
|
|
189
284
|
overflow: hidden;
|
|
190
285
|
}
|
|
286
|
+
|
|
191
287
|
[data-component-is-third-party='true'] {
|
|
192
288
|
background-color: #f4f4f4;
|
|
193
289
|
}
|
|
290
|
+
|
|
194
291
|
[data-component-tag='ProductTitle'],
|
|
195
292
|
[data-component-tag='ProductDescription'],
|
|
196
293
|
[data-component-tag='ProductPrice'],
|
|
197
294
|
[data-component-tag='ProductTag'] {
|
|
198
295
|
cursor: default;
|
|
199
296
|
}
|
|
297
|
+
|
|
200
298
|
:root {
|
|
201
299
|
--selection-bg: #accef7;
|
|
202
300
|
}
|
|
301
|
+
|
|
203
302
|
.builder ::selection {
|
|
204
303
|
color: currentColor;
|
|
205
304
|
background: var(--selection-bg);
|
|
206
305
|
}
|
|
306
|
+
|
|
207
307
|
.builder ::-moz-selection {
|
|
208
308
|
color: currentColor;
|
|
209
309
|
background: var(--selection-bg);
|
|
210
310
|
}
|
|
311
|
+
|
|
211
312
|
.gps-drag-element-here {
|
|
212
313
|
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
213
314
|
background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%233C67FFFF' stroke-width='2' stroke-dasharray='12%2c12' stroke-dashoffset='72' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
214
315
|
}
|
|
316
|
+
|
|
215
317
|
.gps-page-suggestion {
|
|
216
318
|
background: #fff;
|
|
217
319
|
border-radius: 3px;
|
|
218
320
|
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
219
|
-
box-shadow:
|
|
321
|
+
box-shadow:
|
|
322
|
+
0px 4px 16px rgba(0, 0, 0, 0.06),
|
|
323
|
+
0px 4px 16px rgba(0, 0, 0, 0.12);
|
|
220
324
|
}
|
|
325
|
+
|
|
221
326
|
.gps-suggestion-item .gps-suggestion-item-btn {
|
|
222
327
|
display: flex;
|
|
223
328
|
}
|
|
329
|
+
|
|
224
330
|
.gps-suggestion-item .item-link {
|
|
225
331
|
white-space: nowrap;
|
|
226
332
|
overflow: hidden;
|
|
227
333
|
text-overflow: ellipsis;
|
|
228
334
|
width: 360px;
|
|
229
335
|
}
|
|
336
|
+
|
|
230
337
|
.gps-suggestion-item:hover .item-link {
|
|
231
338
|
width: 360px;
|
|
232
339
|
}
|
|
340
|
+
|
|
233
341
|
.gps-base-font-family {
|
|
234
342
|
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
235
343
|
}
|
|
344
|
+
|
|
236
345
|
.btn-disable::before {
|
|
237
346
|
background: none !important;
|
|
238
347
|
background-color: #f4f4f4 !important;
|
|
239
348
|
color: #9e9e9e;
|
|
240
349
|
}
|
|
350
|
+
|
|
241
351
|
.gps-image-detection-section:hover .gps-generating-actions {
|
|
242
352
|
display: flex;
|
|
243
353
|
}
|
|
354
|
+
|
|
244
355
|
.gps-generating-section-text {
|
|
245
356
|
background: -webkit-linear-gradient(#874cfd, #3c38e1);
|
|
246
357
|
-webkit-background-clip: text;
|
|
247
358
|
-webkit-text-fill-color: transparent;
|
|
248
359
|
}
|
|
360
|
+
|
|
249
361
|
.ck-blurred {
|
|
250
362
|
cursor: pointer;
|
|
251
363
|
}
|
|
364
|
+
|
|
252
365
|
.ck-focused {
|
|
253
366
|
cursor: text;
|
|
254
367
|
}
|
|
368
|
+
|
|
255
369
|
.button-text {
|
|
256
370
|
position: relative;
|
|
257
371
|
}
|
|
372
|
+
|
|
258
373
|
.button-text.ck-focused,
|
|
259
374
|
.child-item-text.ck-focused {
|
|
260
375
|
border-color: transparent !important;
|
|
261
|
-
box-shadow:
|
|
376
|
+
box-shadow:
|
|
377
|
+
rgba(255, 255, 255, 0) 0px 0px 0px 2px,
|
|
378
|
+
#3c67ff 0px 0px 0px 1px,
|
|
262
379
|
#3c67ff3d 0px 0px 0px 5px;
|
|
263
380
|
}
|
|
381
|
+
|
|
382
|
+
.theme-section-editor .child-item-text:hover {
|
|
383
|
+
border-color: #9144da !important;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.theme-section-editor .button-text:hover::after {
|
|
387
|
+
border: 1px solid #9144da;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.theme-section-editor .button-text.ck-focused,
|
|
391
|
+
.theme-section-editor .child-item-text.ck-focused {
|
|
392
|
+
border-color: transparent !important;
|
|
393
|
+
box-shadow:
|
|
394
|
+
rgba(255, 255, 255, 0) 0px 0px 0px 2px,
|
|
395
|
+
#9144da 0px 0px 0px 1px,
|
|
396
|
+
#9144da3d 0px 0px 0px 5px;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.theme-section-editor [data-component-tag='Heading'] [data-outline][data-outline-editor-inline-focus], .theme-section-editor [data-component-tag='Text'] [data-outline][data-outline-editor-inline-focus] {
|
|
400
|
+
border-color: #9144da;
|
|
401
|
+
outline: 4px solid #9144da3d !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
264
404
|
.button-text.ck p {
|
|
265
405
|
overflow: hidden;
|
|
266
406
|
text-overflow: ellipsis;
|
|
267
407
|
white-space: nowrap;
|
|
268
408
|
}
|
|
409
|
+
|
|
269
410
|
.gp-text.ck p {
|
|
270
411
|
word-break: break-word;
|
|
271
412
|
}
|
|
413
|
+
|
|
272
414
|
.button-text:hover::after {
|
|
273
415
|
content: '';
|
|
274
416
|
position: absolute;
|
|
@@ -279,9 +421,11 @@
|
|
|
279
421
|
border: 1px solid #3c67ff;
|
|
280
422
|
pointer-events: none;
|
|
281
423
|
}
|
|
424
|
+
|
|
282
425
|
.button-text.ck-focused:hover::after {
|
|
283
426
|
border: 0 !important;
|
|
284
427
|
}
|
|
428
|
+
|
|
285
429
|
.sticky-overlay {
|
|
286
430
|
position: fixed;
|
|
287
431
|
top: 0;
|
|
@@ -295,21 +439,26 @@
|
|
|
295
439
|
display: flex;
|
|
296
440
|
align-items: center;
|
|
297
441
|
justify-content: center;
|
|
442
|
+
|
|
443
|
+
/* &.is-blank-page {
|
|
444
|
+
background-color: #d8e1ff !important;
|
|
445
|
+
} */
|
|
298
446
|
}
|
|
447
|
+
|
|
299
448
|
.sticky-overlay.highlight-top {
|
|
300
449
|
border-top-width: 6px;
|
|
301
450
|
}
|
|
451
|
+
|
|
302
452
|
.sticky-overlay.highlight-bottom {
|
|
303
453
|
border-bottom-width: 6px;
|
|
304
454
|
}
|
|
305
|
-
|
|
306
|
-
background-color: #d8e1ff !important;
|
|
307
|
-
}
|
|
455
|
+
|
|
308
456
|
@media (max-width: 768px) {
|
|
309
457
|
.gps-suggestion-item:hover .item-link {
|
|
310
458
|
width: 196px;
|
|
311
459
|
}
|
|
460
|
+
|
|
312
461
|
.gps-suggestion-item .item-link {
|
|
313
462
|
width: 196px;
|
|
314
463
|
}
|
|
315
|
-
}
|
|
464
|
+
}
|
package/dist/builder.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.builder{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.builder [disabled]{pointer-events:auto}.builder [data-slot=children]{visibility:visible}.builder [data-slot=children]:after{color:#aaa;visibility:visible}.builder [data-slot=children] .drag-placeholder{height:100%}.builder .generate-image-to-layout-btn{background-image:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%);position:relative;z-index:1}.builder .generate-image-to-layout-btn:before{background-image:linear-gradient(270.07deg,#3633cc .03%,#6d3dcc 99.92%);border-radius:3px;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:opacity .3s ease-out;z-index:-1}.builder .btn-disable{background-color:#f4f4f4;background-image:none;color:#9e9e9e;cursor:not-allowed}.builder .generate-image-to-layout-btn:hover:before{opacity:1}.builder .image-to-layout-input-border{border:1px solid #3c38e1;border-radius:3px}.builder .image-to-layout-input-wrapper-modal{position:relative}.builder .image-to-layout-input-wrapper,.builder .image-to-layout-input-wrapper-add-section{background:#fff;background-clip:padding-box;box-sizing:border-box;position:relative}.image-to-layout-input-wrapper-add-section{border:1px solid #3c67ff}.gps-image-to-layout-progress-bar{background:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%)}.drag-placeholder{display:none;width:100%}#storefront{position:relative;z-index:20}#visual-content{display:none;font-family:Inter,sans-serif,ui-sans-serif,system-ui!important;height:100%;left:0;min-height:100vh;position:absolute;top:0;width:100%;z-index:50}#visual-content .fake-placeholder{background:transparent;background-image:url(//d1um8515vdn9kb.cloudfront.net/images/background-pattern.png);left:0;position:absolute;top:0;visibility:hidden;z-index:
|
|
1
|
+
.builder{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.builder [disabled]{pointer-events:auto}.builder [data-slot=children]{visibility:visible}.builder [data-slot=children]:after{color:#aaa;visibility:visible}.builder [data-slot=children] .drag-placeholder{height:100%}.builder .generate-image-to-layout-btn{background-image:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%);position:relative;z-index:1}.builder .generate-image-to-layout-btn:before{background-image:linear-gradient(270.07deg,#3633cc .03%,#6d3dcc 99.92%);border-radius:3px;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:opacity .3s ease-out;z-index:-1}.builder .btn-disable{background-color:#f4f4f4;background-image:none;color:#9e9e9e;cursor:not-allowed}.builder .generate-image-to-layout-btn:hover:before{opacity:1}.builder .image-to-layout-input-border{border:1px solid #3c38e1;border-radius:3px}.builder .image-to-layout-input-wrapper-modal{position:relative}.builder .image-to-layout-input-wrapper,.builder .image-to-layout-input-wrapper-add-section{background:#fff;background-clip:padding-box;box-sizing:border-box;position:relative}.image-to-layout-input-wrapper-add-section{border:1px solid #3c67ff}.gps-image-to-layout-progress-bar{background:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%)}.drag-placeholder{display:none;width:100%}#storefront{position:relative;z-index:20}#visual-content{display:none;font-family:Inter,sans-serif,ui-sans-serif,system-ui!important;height:100%;left:0;min-height:100vh;position:absolute;top:0;width:100%;z-index:50}#visual-content .fake-placeholder{background:transparent;background-image:url(//d1um8515vdn9kb.cloudfront.net/images/background-pattern.png);left:0;position:absolute;top:0;visibility:hidden;z-index:0}#visual-content .fake-placeholder.fake-placeholder-slot{background:transparent}#visual-content .fake-placeholder.has-section{background-color:#3c67ff!important;background-image:none;border:none!important;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error{background-color:#fee4e3!important}#visual-content .fake-placeholder.visual-placeholder-error .limitation-error-content{display:none}#visual-content .fake-placeholder.visual-placeholder-error{border:1px dashed #f44336!important;color:#f44336!important;font-family:Inter,sans-serif,ui-sans-serif,system-ui;font-size:14px;font-weight:500;line-height:150%;position:relative;text-align:center;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error.children-error{background-color:#f44336!important;border:none!important}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content{align-items:center;background-color:#fee4e3!important;border-radius:3px;display:flex;height:29px;padding:4px 8px}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content span{font-size:14px;font-weight:500;line-height:150%;margin-left:8px}#visual-content .fake-placeholder.visual-placeholder{align-items:center;background-color:#8aa4ff66;color:#3c67ff;display:flex;font-size:14px;font-weight:500;justify-content:center;line-height:150%;visibility:visible;z-index:20}#visual-content .fake-placeholder.visual-placeholder-theme-section[is-component-dragging=true]{background-color:#ebddf866!important}#visual-content .fake-placeholder.visual-placeholder-theme-section{background-color:#ebddf866}#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not([is-component-dragging=true]){background-color:#f44336!important}#visual-content .fake-placeholder.visual-placeholder-theme-section.has-section:not([is-component-dragging=true]){background-color:#9144da!important}#visual-content .fake-placeholder.visual-placeholder-child-on-sections{margin:16px!important}#visual-content .fake-placeholder.visual-placeholder-between-sections{background-color:#3c67ff;background-image:none;border:none;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.not-show{display:none}#visual-content .fake-placeholder[is-blank-page=true]{background-color:#d8e1ff!important}#visual-content .fake-placeholder[is-drag-to-theme-section=true]{background-color:hsla(2,93%,94%,.24)!important;display:block}#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-theme-section-message{align-items:center;background:#f44336!important;border-radius:3px!important;color:#f9f9f9!important;display:flex;font-size:14px;font-weight:400;left:8px;line-height:24px;margin-left:8px;margin-top:8px;padding:4px;position:-webkit-sticky;position:sticky;top:8px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-theme-section-message.exceed-limit{margin-left:48px}#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-theme-section-message-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-theme-section-message svg{margin-right:4px}#visual-content .fake-placeholder[is-component-dragging=true]{background-color:#8aa4ff66!important}[contenteditable=true]:active,[contenteditable=true]:focus,[contenteditable=true]:focus-visible{outline:none;overflow:hidden}[data-component-is-third-party=true]{background-color:#f4f4f4}[data-component-tag=ProductDescription],[data-component-tag=ProductPrice],[data-component-tag=ProductTag],[data-component-tag=ProductTitle]{cursor:default}:root{--selection-bg:#accef7}.builder ::selection{background:var(--selection-bg);color:currentColor}.builder ::-moz-selection{background:var(--selection-bg);color:currentColor}.gps-drag-element-here{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%233C67FFFF' stroke-dasharray='12,12' stroke-dashoffset='72' stroke-linecap='square' stroke-width='2'/%3E%3C/svg%3E")}.gps-drag-element-here,.gps-page-suggestion{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.gps-page-suggestion{background:#fff;border-radius:3px;box-shadow:0 4px 16px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.12)}.gps-suggestion-item .gps-suggestion-item-btn{display:flex}.gps-suggestion-item .item-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:360px}.gps-suggestion-item:hover .item-link{width:360px}.gps-base-font-family{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.btn-disable:before{background:none!important;background-color:#f4f4f4!important;color:#9e9e9e}.gps-image-detection-section:hover .gps-generating-actions{display:flex}.gps-generating-section-text{-webkit-text-fill-color:transparent;background:-webkit-linear-gradient(#874cfd,#3c38e1);-webkit-background-clip:text}.ck-blurred{cursor:pointer}.ck-focused{cursor:text}.button-text{position:relative}.button-text.ck-focused,.child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #3c67ff,0 0 0 5px #3c67ff3d}.theme-section-editor .child-item-text:hover{border-color:#9144da!important}.theme-section-editor .button-text:hover:after{border:1px solid #9144da}.theme-section-editor .button-text.ck-focused,.theme-section-editor .child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #9144da,0 0 0 5px #9144da3d}.theme-section-editor [data-component-tag=Heading] [data-outline][data-outline-editor-inline-focus],.theme-section-editor [data-component-tag=Text] [data-outline][data-outline-editor-inline-focus]{border-color:#9144da;outline:4px solid #9144da3d!important}.button-text.ck p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gp-text.ck p{word-break:break-word}.button-text:hover:after{border:1px solid #3c67ff;content:"";height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.button-text.ck-focused:hover:after{border:0!important}.sticky-overlay{align-items:center;background-color:#3c67ff26;border:2px solid #3c67ff;color:#3c67ff;display:flex;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:1}.sticky-overlay.highlight-top{border-top-width:6px}.sticky-overlay.highlight-bottom{border-bottom-width:6px}@media (max-width:768px){.gps-suggestion-item .item-link,.gps-suggestion-item:hover .item-link{width:196px}}
|