@gem-sdk/styles 1.36.13 → 2.0.0-dev.877
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/base.css +28 -18
- package/dist/base.min.css +1 -1
- package/dist/builder.css +27 -6
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +197 -34
- package/dist/toolbar.min.css +1 -1
- package/package.json +1 -1
- package/src/css/builds/base.css +48 -17
- package/src/css/builds/builder.css +22 -2
- package/src/css/builds/toolbar.css +246 -29
package/src/css/builds/base.css
CHANGED
|
@@ -30,45 +30,57 @@ html {
|
|
|
30
30
|
width: 100%;
|
|
31
31
|
min-height: 100%;
|
|
32
32
|
}
|
|
33
|
+
|
|
33
34
|
.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse] {
|
|
34
35
|
flex-direction: row-reverse;
|
|
35
36
|
}
|
|
37
|
+
|
|
36
38
|
.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-v] {
|
|
37
39
|
flex-wrap: wrap;
|
|
38
40
|
}
|
|
41
|
+
|
|
39
42
|
[data-keen-slider-moves] * {
|
|
40
43
|
pointer-events: none;
|
|
41
44
|
}
|
|
45
|
+
|
|
42
46
|
.pb-safe {
|
|
43
47
|
padding-bottom: env(safe-area-inset-bottom);
|
|
44
48
|
}
|
|
49
|
+
|
|
45
50
|
.pt-safe {
|
|
46
51
|
padding-top: env(safe-area-inset-top);
|
|
47
52
|
}
|
|
53
|
+
|
|
48
54
|
.pl-safe {
|
|
49
55
|
padding-left: env(safe-area-inset-left);
|
|
50
56
|
}
|
|
57
|
+
|
|
51
58
|
.pr-safe {
|
|
52
59
|
padding-right: env(safe-area-inset-right);
|
|
53
60
|
}
|
|
61
|
+
|
|
54
62
|
.p-safe {
|
|
55
|
-
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom)
|
|
56
|
-
env(safe-area-inset-left);
|
|
63
|
+
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
|
|
57
64
|
}
|
|
65
|
+
|
|
58
66
|
.px-safe {
|
|
59
67
|
padding-left: env(safe-area-inset-left);
|
|
60
68
|
padding-right: env(safe-area-inset-right);
|
|
61
69
|
}
|
|
70
|
+
|
|
62
71
|
.py-safe {
|
|
63
72
|
padding-top: env(safe-area-inset-top);
|
|
64
73
|
padding-bottom: env(safe-area-inset-bottom);
|
|
65
74
|
}
|
|
75
|
+
|
|
66
76
|
.h-safe {
|
|
67
77
|
height: calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)));
|
|
68
78
|
}
|
|
79
|
+
|
|
69
80
|
.min-h-safe {
|
|
70
81
|
min-height: calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)));
|
|
71
82
|
}
|
|
83
|
+
|
|
72
84
|
.gp-text ul,
|
|
73
85
|
.gp-text ol {
|
|
74
86
|
display: block;
|
|
@@ -84,12 +96,15 @@ html {
|
|
|
84
96
|
-webkit-padding-start: 40px;
|
|
85
97
|
padding-left: 40px;
|
|
86
98
|
}
|
|
99
|
+
|
|
87
100
|
.gp-text ul {
|
|
88
101
|
list-style-type: disc;
|
|
89
102
|
}
|
|
103
|
+
|
|
90
104
|
.gp-text li {
|
|
91
105
|
list-style-position: inside;
|
|
92
106
|
}
|
|
107
|
+
|
|
93
108
|
.gp-text ol {
|
|
94
109
|
list-style-type: decimal;
|
|
95
110
|
}
|
|
@@ -105,20 +120,24 @@ html {
|
|
|
105
120
|
align-items: center;
|
|
106
121
|
visibility: hidden;
|
|
107
122
|
overflow: hidden;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
123
|
+
|
|
124
|
+
&:not(.product-feature-image) {
|
|
125
|
+
&:after {
|
|
126
|
+
content: 'Drop element here';
|
|
127
|
+
visibility: hidden;
|
|
128
|
+
text-align: center;
|
|
129
|
+
font-size: 14px;
|
|
130
|
+
font-weight: bold;
|
|
131
|
+
/* display: -webkit-box;
|
|
132
|
+
-webkit-line-clamp: 1;
|
|
133
|
+
-webkit-box-orient: vertical; */
|
|
134
|
+
white-space: nowrap;
|
|
135
|
+
text-overflow: ellipsis;
|
|
136
|
+
overflow: hidden;
|
|
137
|
+
}
|
|
120
138
|
}
|
|
121
139
|
}
|
|
140
|
+
|
|
122
141
|
.gp-dialog {
|
|
123
142
|
display: none;
|
|
124
143
|
}
|
|
@@ -179,12 +198,23 @@ p {
|
|
|
179
198
|
margin-inline-end: 0px;
|
|
180
199
|
}
|
|
181
200
|
|
|
182
|
-
.gp-p-description-text h1,
|
|
201
|
+
.gp-p-description-text h1,
|
|
202
|
+
.gp-p-description-text h2,
|
|
203
|
+
.gp-p-description-text h3,
|
|
204
|
+
.gp-p-description-text h4,
|
|
205
|
+
.gp-p-description-text h5,
|
|
206
|
+
.gp-p-description-text h6 {
|
|
183
207
|
display: block;
|
|
184
208
|
font-weight: bold;
|
|
185
209
|
}
|
|
186
210
|
|
|
187
|
-
.gp-p-description-text p,
|
|
211
|
+
.gp-p-description-text p,
|
|
212
|
+
.gp-p-description-text h1,
|
|
213
|
+
.gp-p-description-text h2,
|
|
214
|
+
.gp-p-description-text h3,
|
|
215
|
+
.gp-p-description-text h4,
|
|
216
|
+
.gp-p-description-text h5,
|
|
217
|
+
.gp-p-description-text h6 {
|
|
188
218
|
margin: 0 0 1em 0;
|
|
189
219
|
line-height: 1.4;
|
|
190
220
|
}
|
|
@@ -218,6 +248,7 @@ p {
|
|
|
218
248
|
.gp-p-description-text ul {
|
|
219
249
|
list-style-type: disc;
|
|
220
250
|
}
|
|
251
|
+
|
|
221
252
|
.gp-p-description-text ol {
|
|
222
253
|
list-style-type: decimal;
|
|
223
254
|
}
|
|
@@ -255,4 +286,4 @@ p {
|
|
|
255
286
|
|
|
256
287
|
.gp-tab-header-list::-webkit-scrollbar {
|
|
257
288
|
display: none;
|
|
258
|
-
}
|
|
289
|
+
}
|
|
@@ -222,11 +222,11 @@
|
|
|
222
222
|
background-color: #d8e1ff !important;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
-
&[is-drag-to-theme-section='true'] {
|
|
225
|
+
&[is-drag-to-theme-section='true'], &[is-drag-to-shopify-section='true'] {
|
|
226
226
|
background-color: rgba(254, 228, 227, 0.24) !important;
|
|
227
227
|
display: block;
|
|
228
228
|
|
|
229
|
-
.drag-to-
|
|
229
|
+
.drag-to-section-message {
|
|
230
230
|
display: flex;
|
|
231
231
|
align-items: center;
|
|
232
232
|
position: sticky;
|
|
@@ -261,6 +261,11 @@
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
&[is-drag-to-exceeded-section='true'] {
|
|
265
|
+
background-color: rgba(244,67,54, 0.08) !important;
|
|
266
|
+
border: 1px solid rgba(244,67,54) !important;
|
|
267
|
+
display: block;
|
|
268
|
+
}
|
|
264
269
|
&[is-component-dragging='true'] {
|
|
265
270
|
background-color: #8aa4ff66 !important;
|
|
266
271
|
}
|
|
@@ -411,6 +416,17 @@
|
|
|
411
416
|
}
|
|
412
417
|
}
|
|
413
418
|
|
|
419
|
+
.post-purchase-page {
|
|
420
|
+
font-size: 14px;
|
|
421
|
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
|
|
422
|
+
line-height: 15px;
|
|
423
|
+
select:focus {
|
|
424
|
+
border-color: #1879b9;
|
|
425
|
+
box-shadow: 0 0 0 1px #1879b9;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
|
|
414
430
|
/* .button-text.ck p {
|
|
415
431
|
overflow: hidden;
|
|
416
432
|
text-overflow: ellipsis;
|
|
@@ -462,3 +478,7 @@
|
|
|
462
478
|
background-color: #d8e1ff !important;
|
|
463
479
|
} */
|
|
464
480
|
}
|
|
481
|
+
|
|
482
|
+
.editor-content {
|
|
483
|
+
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
484
|
+
}
|
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
[data-toolbar-icon-parent],
|
|
126
126
|
[data-toolbar-zoom-out],
|
|
127
127
|
[data-toolbar-duplicate],
|
|
128
|
+
[data-toolbar-visibility],
|
|
128
129
|
[data-toolbar-delete] {
|
|
129
130
|
display: none;
|
|
130
131
|
}
|
|
@@ -200,10 +201,27 @@
|
|
|
200
201
|
}
|
|
201
202
|
}
|
|
202
203
|
|
|
204
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover][data-toolbar-hover-focus] {
|
|
205
|
+
background: #29845A;
|
|
206
|
+
padding: 4px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover] {
|
|
210
|
+
&:hover {
|
|
211
|
+
background: #29845A;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-active] {
|
|
216
|
+
&:hover {
|
|
217
|
+
background: #29845A;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
203
221
|
[data-toolbar][data-toolbar-active] {
|
|
204
222
|
opacity: 1;
|
|
205
223
|
visibility: visible;
|
|
206
|
-
z-index:
|
|
224
|
+
z-index: 1000;
|
|
207
225
|
height: 32px;
|
|
208
226
|
top: -35px;
|
|
209
227
|
background: #151515;
|
|
@@ -231,6 +249,14 @@
|
|
|
231
249
|
}
|
|
232
250
|
}
|
|
233
251
|
|
|
252
|
+
&[data-toolbar-shopify-section='true'] {
|
|
253
|
+
background: #29845A;
|
|
254
|
+
|
|
255
|
+
&[data-toolbar-hover-focus] {
|
|
256
|
+
background: #29845A;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
234
260
|
[data-toolbar-show-parent] {
|
|
235
261
|
padding: 4px;
|
|
236
262
|
margin-right: 9px;
|
|
@@ -276,7 +302,7 @@
|
|
|
276
302
|
}
|
|
277
303
|
|
|
278
304
|
&:hover {
|
|
279
|
-
background: rgba(225, 225, 225, 0.2);
|
|
305
|
+
background-color: rgba(225, 225, 225, 0.2);
|
|
280
306
|
}
|
|
281
307
|
|
|
282
308
|
[data-toolbar-icon-drag] {
|
|
@@ -285,6 +311,7 @@
|
|
|
285
311
|
}
|
|
286
312
|
|
|
287
313
|
[data-toolbar-duplicate],
|
|
314
|
+
[data-toolbar-visibility],
|
|
288
315
|
[data-toolbar-delete],
|
|
289
316
|
[data-toolbar-zoom-out],
|
|
290
317
|
[data-toolbar-active-create-theme-section] {
|
|
@@ -301,7 +328,7 @@
|
|
|
301
328
|
}
|
|
302
329
|
|
|
303
330
|
&:hover {
|
|
304
|
-
background: rgba(225, 225, 225, 0.2);
|
|
331
|
+
background-color: rgba(225, 225, 225, 0.2);
|
|
305
332
|
}
|
|
306
333
|
|
|
307
334
|
&[data-toolbar-disable='true'] {
|
|
@@ -358,8 +385,7 @@
|
|
|
358
385
|
border-color: #424242;
|
|
359
386
|
}
|
|
360
387
|
|
|
361
|
-
[data-toolbar][data-toolbar-section='true'][data-toolbar-hover-focus]
|
|
362
|
-
[data-toolbar-create-theme-section] {
|
|
388
|
+
[data-toolbar][data-toolbar-section='true'][data-toolbar-hover-focus] [data-toolbar-create-theme-section] {
|
|
363
389
|
border-color: #424242;
|
|
364
390
|
}
|
|
365
391
|
|
|
@@ -377,6 +403,11 @@
|
|
|
377
403
|
border-color: #9144da;
|
|
378
404
|
}
|
|
379
405
|
|
|
406
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover-focus],
|
|
407
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-active] {
|
|
408
|
+
border-color: #29845A;
|
|
409
|
+
}
|
|
410
|
+
|
|
380
411
|
[data-toolbar][data-toolbar-active][data-toolbar-limit='true'],
|
|
381
412
|
[data-toolbar][data-toolbar-hover][data-toolbar-limit='true'],
|
|
382
413
|
[data-toolbar][data-toolbar-hover][data-toolbar-hover-focus][data-toolbar-limit='true'],
|
|
@@ -406,6 +437,12 @@
|
|
|
406
437
|
transition: opacity 0ms ease-in-out;
|
|
407
438
|
}
|
|
408
439
|
|
|
440
|
+
&[data-section-exceeded][data-toolbar-wrap] {
|
|
441
|
+
[data-outline][data-outline-section='true'] {
|
|
442
|
+
border-color: #f44336;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
409
446
|
/* State Outline */
|
|
410
447
|
[data-outline][data-outline-hover],
|
|
411
448
|
[data-outline][data-outline-force-hover] {
|
|
@@ -455,7 +492,9 @@
|
|
|
455
492
|
}
|
|
456
493
|
|
|
457
494
|
[data-component-tag='Heading'],
|
|
458
|
-
[data-component-tag='Text']
|
|
495
|
+
[data-component-tag='Text'],
|
|
496
|
+
[data-component-tag='PostPurchaseHeading'],
|
|
497
|
+
[data-component-tag='PostPurchaseText'] {
|
|
459
498
|
[data-outline][data-outline-editor-inline-focus] {
|
|
460
499
|
border-color: #3c67ff;
|
|
461
500
|
outline: 4px solid rgba(60, 103, 255, 0.24);
|
|
@@ -468,8 +507,9 @@
|
|
|
468
507
|
}
|
|
469
508
|
|
|
470
509
|
[data-component-tag='Section'] {
|
|
510
|
+
|
|
471
511
|
/* disable divider */
|
|
472
|
-
>
|
|
512
|
+
>[data-toolbar] [data-toolbar-show-parent] {
|
|
473
513
|
margin-right: 0px;
|
|
474
514
|
|
|
475
515
|
&:before {
|
|
@@ -485,6 +525,13 @@
|
|
|
485
525
|
z-index: 0;
|
|
486
526
|
}
|
|
487
527
|
|
|
528
|
+
[data-outline][data-outline-shopify-section='true'],
|
|
529
|
+
[data-outline][data-outline-shopify-section='true'][data-outline-hover-focus],
|
|
530
|
+
[data-outline][data-outline-shopify-section='true'][data-outline-active] {
|
|
531
|
+
border-color: #29845A;
|
|
532
|
+
z-index: 0;
|
|
533
|
+
}
|
|
534
|
+
|
|
488
535
|
[data-outline][data-outline-active][data-outline-limit='true'],
|
|
489
536
|
[data-outline][data-outline-hover][data-outline-limit='true'],
|
|
490
537
|
[data-outline][data-outline-hover][data-outline-hover-focus][data-outline-limit='true'],
|
|
@@ -498,6 +545,7 @@
|
|
|
498
545
|
}
|
|
499
546
|
|
|
500
547
|
[data-theme-section] {
|
|
548
|
+
|
|
501
549
|
/* disable delay animation on theme section */
|
|
502
550
|
[data-toolbar][data-toolbar-hover][data-toolbar-hover-focus],
|
|
503
551
|
[data-outline][data-outline-hover][data-outline-hover-focus],
|
|
@@ -520,6 +568,22 @@
|
|
|
520
568
|
}
|
|
521
569
|
}
|
|
522
570
|
|
|
571
|
+
[data-shopify-section] {
|
|
572
|
+
|
|
573
|
+
/* disable delay animation on shopify section */
|
|
574
|
+
[data-toolbar][data-toolbar-hover][data-toolbar-hover-focus],
|
|
575
|
+
[data-outline][data-outline-hover][data-outline-hover-focus],
|
|
576
|
+
[data-toolbar-add-top],
|
|
577
|
+
[data-toolbar-add-bottom] {
|
|
578
|
+
transition-delay: 0ms;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
[data-toolbar-add-top],
|
|
582
|
+
[data-toolbar-add-bottom] {
|
|
583
|
+
border-color: #29845A;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
523
587
|
[data-theme-section-status] {
|
|
524
588
|
display: none;
|
|
525
589
|
align-items: center;
|
|
@@ -692,7 +756,7 @@
|
|
|
692
756
|
}
|
|
693
757
|
|
|
694
758
|
[data-value-number] {
|
|
695
|
-
font-family: Inter
|
|
759
|
+
font-family: Inter;
|
|
696
760
|
background-color: #3c67ff;
|
|
697
761
|
border-radius: 6px;
|
|
698
762
|
color: #fff;
|
|
@@ -758,7 +822,7 @@
|
|
|
758
822
|
[data-toolbar-tooltip] {
|
|
759
823
|
width: unset;
|
|
760
824
|
max-width: unset;
|
|
761
|
-
background-color: #
|
|
825
|
+
background-color: #333333 !important;
|
|
762
826
|
color: #fff;
|
|
763
827
|
text-align: center;
|
|
764
828
|
border-radius: 6px;
|
|
@@ -790,7 +854,7 @@
|
|
|
790
854
|
margin-top: -5px;
|
|
791
855
|
border-width: 5px;
|
|
792
856
|
border-style: solid;
|
|
793
|
-
border-color: transparent #
|
|
857
|
+
border-color: transparent #333333 transparent transparent;
|
|
794
858
|
}
|
|
795
859
|
}
|
|
796
860
|
|
|
@@ -806,7 +870,7 @@
|
|
|
806
870
|
margin-top: -5px;
|
|
807
871
|
border-width: 5px;
|
|
808
872
|
border-style: solid;
|
|
809
|
-
border-color: transparent transparent transparent #
|
|
873
|
+
border-color: transparent transparent transparent #333333;
|
|
810
874
|
}
|
|
811
875
|
}
|
|
812
876
|
|
|
@@ -817,12 +881,12 @@
|
|
|
817
881
|
&::after {
|
|
818
882
|
content: ' ';
|
|
819
883
|
position: absolute;
|
|
820
|
-
top: 100
|
|
884
|
+
top: calc(100% - 0.5px);
|
|
821
885
|
left: 50%;
|
|
822
886
|
margin-left: -5px;
|
|
823
887
|
border-width: 5px;
|
|
824
888
|
border-style: solid;
|
|
825
|
-
border-color: #
|
|
889
|
+
border-color: #333333 transparent transparent transparent;
|
|
826
890
|
}
|
|
827
891
|
}
|
|
828
892
|
|
|
@@ -838,7 +902,7 @@
|
|
|
838
902
|
margin-left: -5px;
|
|
839
903
|
border-width: 5px;
|
|
840
904
|
border-style: solid;
|
|
841
|
-
border-color: transparent transparent #
|
|
905
|
+
border-color: transparent transparent #333333 transparent;
|
|
842
906
|
}
|
|
843
907
|
}
|
|
844
908
|
}
|
|
@@ -862,6 +926,36 @@
|
|
|
862
926
|
}
|
|
863
927
|
}
|
|
864
928
|
|
|
929
|
+
[data-toolbar-tooltip-trigger][data-toolbar-delete] {
|
|
930
|
+
position: relative;
|
|
931
|
+
|
|
932
|
+
[data-toolbar-tooltip] {
|
|
933
|
+
width: 206px;
|
|
934
|
+
white-space: normal;
|
|
935
|
+
font-size: 12px;
|
|
936
|
+
line-height: 20px;
|
|
937
|
+
text-align: left;
|
|
938
|
+
padding: 8px;
|
|
939
|
+
|
|
940
|
+
&[data-toolbar-tooltip-position='top'] {
|
|
941
|
+
margin-bottom: 12px;
|
|
942
|
+
left: 50%;
|
|
943
|
+
transform: translateX(-50%);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
&[data-toolbar-tooltip-position='bottom'] {
|
|
947
|
+
top: 36px;
|
|
948
|
+
right: -4px;
|
|
949
|
+
left: unset;
|
|
950
|
+
|
|
951
|
+
&::after {
|
|
952
|
+
right: 10px;
|
|
953
|
+
left: unset;
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
|
|
865
959
|
[data-toolbar-tooltip-trigger][data-toolbar-add-top],
|
|
866
960
|
[data-toolbar-tooltip-trigger][data-toolbar-add-bottom] {
|
|
867
961
|
[data-toolbar-tooltip] {
|
|
@@ -870,6 +964,93 @@
|
|
|
870
964
|
transform: translateX(-50%);
|
|
871
965
|
}
|
|
872
966
|
}
|
|
967
|
+
|
|
968
|
+
/* Resize column */
|
|
969
|
+
[data-column] {
|
|
970
|
+
z-index: 10;
|
|
971
|
+
position: absolute;
|
|
972
|
+
width: 100%;
|
|
973
|
+
height: 100%;
|
|
974
|
+
top: 0;
|
|
975
|
+
left: 0;
|
|
976
|
+
pointer-events: none;
|
|
977
|
+
|
|
978
|
+
[data-column-hand-drag] {
|
|
979
|
+
justify-content: center;
|
|
980
|
+
align-items: center;
|
|
981
|
+
visibility: hidden;
|
|
982
|
+
opacity: 0;
|
|
983
|
+
cursor: grab;
|
|
984
|
+
pointer-events: auto;
|
|
985
|
+
|
|
986
|
+
[data-column-hand-visual] {
|
|
987
|
+
border-radius: 2px;
|
|
988
|
+
width: 3px;
|
|
989
|
+
height: 80%;
|
|
990
|
+
background-color: #d6d6d6;
|
|
991
|
+
transition: all 0.2s;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
[data-column-hand-visual-drag] {
|
|
995
|
+
position: absolute;
|
|
996
|
+
top: 50%;
|
|
997
|
+
left: 50%;
|
|
998
|
+
transform: translate(-50%, -50%);
|
|
999
|
+
color: #3c67ff;
|
|
1000
|
+
visibility: hidden;
|
|
1001
|
+
opacity: 0;
|
|
1002
|
+
transition: all 0.2s;
|
|
1003
|
+
width: 16px;
|
|
1004
|
+
|
|
1005
|
+
svg {
|
|
1006
|
+
width: 16px;
|
|
1007
|
+
height: 16px;
|
|
1008
|
+
transform: rotate(45deg);
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
&:hover,
|
|
1013
|
+
&[data-column-hand-drag-active='true'] {
|
|
1014
|
+
[data-column-hand-visual] {
|
|
1015
|
+
background-color: #3c67ff;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
[data-column-hand-visual-drag] {
|
|
1019
|
+
visibility: visible;
|
|
1020
|
+
opacity: 1;
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
[data-column][data-column-theme-section='true'] {
|
|
1027
|
+
[data-column-hand-drag] {
|
|
1028
|
+
[data-column-hand-visual-drag] {
|
|
1029
|
+
color: #9144da;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
&:hover,
|
|
1033
|
+
&[data-column-hand-drag-active='true'] {
|
|
1034
|
+
[data-column-hand-visual] {
|
|
1035
|
+
background-color: #9144da;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
[data-column-hand-visual-drag] {
|
|
1039
|
+
visibility: visible;
|
|
1040
|
+
opacity: 1;
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
[data-column][data-column-visible],
|
|
1047
|
+
[data-column][data-column-force-visible='true'],
|
|
1048
|
+
[data-column][data-column-is-drag-visible='true'] {
|
|
1049
|
+
[data-column-hand-drag] {
|
|
1050
|
+
visibility: visible;
|
|
1051
|
+
opacity: 1;
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
873
1054
|
}
|
|
874
1055
|
|
|
875
1056
|
[data-toolbar-debug] {
|
|
@@ -903,7 +1084,7 @@
|
|
|
903
1084
|
min-width: 284px;
|
|
904
1085
|
display: flex;
|
|
905
1086
|
flex-direction: column;
|
|
906
|
-
border-radius:
|
|
1087
|
+
border-radius: 12px;
|
|
907
1088
|
position: absolute;
|
|
908
1089
|
right: -4px;
|
|
909
1090
|
top: 100%;
|
|
@@ -923,7 +1104,7 @@
|
|
|
923
1104
|
|
|
924
1105
|
.theme-section-tooltip__image {
|
|
925
1106
|
background: #212121;
|
|
926
|
-
border-radius:
|
|
1107
|
+
border-radius: 12px 12px 0 0;
|
|
927
1108
|
padding-top: 16px;
|
|
928
1109
|
padding-bottom: 8px;
|
|
929
1110
|
padding-left: 21px;
|
|
@@ -956,7 +1137,7 @@
|
|
|
956
1137
|
|
|
957
1138
|
.theme-section-tooltip__action {
|
|
958
1139
|
padding: 16px;
|
|
959
|
-
border-radius: 0 0
|
|
1140
|
+
border-radius: 0 0 12px 12px;
|
|
960
1141
|
border-top: solid 1px #3b3b3b;
|
|
961
1142
|
background: #151515;
|
|
962
1143
|
display: flex;
|
|
@@ -967,7 +1148,7 @@
|
|
|
967
1148
|
width: 100%;
|
|
968
1149
|
text-align: center;
|
|
969
1150
|
background: #3c67ff;
|
|
970
|
-
border-radius:
|
|
1151
|
+
border-radius: 8px;
|
|
971
1152
|
height: 40px;
|
|
972
1153
|
font-size: 14px;
|
|
973
1154
|
line-height: 24px;
|
|
@@ -983,12 +1164,11 @@
|
|
|
983
1164
|
|
|
984
1165
|
.theme-section-tooltip__action-limit {
|
|
985
1166
|
button {
|
|
986
|
-
background: #
|
|
987
|
-
color: #212121 !important;
|
|
1167
|
+
background: #3c67ff !important;
|
|
988
1168
|
}
|
|
989
1169
|
|
|
990
1170
|
button:hover {
|
|
991
|
-
background: #
|
|
1171
|
+
background: #2856f8 !important;
|
|
992
1172
|
}
|
|
993
1173
|
}
|
|
994
1174
|
|
|
@@ -1030,8 +1210,7 @@
|
|
|
1030
1210
|
transition: opacity 0.25s;
|
|
1031
1211
|
}
|
|
1032
1212
|
|
|
1033
|
-
[data-onboarding-wrapper] {
|
|
1034
|
-
}
|
|
1213
|
+
[data-onboarding-wrapper] {}
|
|
1035
1214
|
|
|
1036
1215
|
[data-icon] {
|
|
1037
1216
|
position: absolute;
|
|
@@ -1047,6 +1226,7 @@
|
|
|
1047
1226
|
bottom: -4px;
|
|
1048
1227
|
}
|
|
1049
1228
|
}
|
|
1229
|
+
|
|
1050
1230
|
[data-close] {
|
|
1051
1231
|
position: absolute;
|
|
1052
1232
|
top: 8px;
|
|
@@ -1059,6 +1239,38 @@
|
|
|
1059
1239
|
&:hover {
|
|
1060
1240
|
background-color: #e2e2e2;
|
|
1061
1241
|
}
|
|
1242
|
+
|
|
1243
|
+
svg {
|
|
1244
|
+
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
[data-icon] {
|
|
1249
|
+
position: absolute;
|
|
1250
|
+
top: -4px;
|
|
1251
|
+
left: 16px;
|
|
1252
|
+
/* Popover */
|
|
1253
|
+
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12), 0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1254
|
+
|
|
1255
|
+
&[data-position="top"] {
|
|
1256
|
+
top: unset;
|
|
1257
|
+
bottom: -4px;
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
[data-close] {
|
|
1262
|
+
position: absolute;
|
|
1263
|
+
top: 8px;
|
|
1264
|
+
right: 8px;
|
|
1265
|
+
z-index: 99;
|
|
1266
|
+
border-radius: 8px;
|
|
1267
|
+
background-color: transparent;
|
|
1268
|
+
transition: background .25s;
|
|
1269
|
+
|
|
1270
|
+
&:hover {
|
|
1271
|
+
background-color: #E2E2E2;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1062
1274
|
svg {
|
|
1063
1275
|
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
1064
1276
|
}
|
|
@@ -1067,28 +1279,33 @@
|
|
|
1067
1279
|
[data-content] {
|
|
1068
1280
|
padding: 16px;
|
|
1069
1281
|
}
|
|
1282
|
+
|
|
1070
1283
|
video {
|
|
1071
1284
|
border-radius: 8px 8px 0 0;
|
|
1072
1285
|
}
|
|
1286
|
+
|
|
1073
1287
|
h3 {
|
|
1074
1288
|
color: #212121;
|
|
1075
|
-
font-family: Inter
|
|
1289
|
+
font-family: Inter;
|
|
1076
1290
|
font-size: 16px;
|
|
1077
1291
|
font-style: normal;
|
|
1078
1292
|
font-weight: 600;
|
|
1079
|
-
line-height: 24px;
|
|
1293
|
+
line-height: 24px;
|
|
1294
|
+
/* 150% */
|
|
1080
1295
|
letter-spacing: -0.32px;
|
|
1081
1296
|
}
|
|
1297
|
+
|
|
1082
1298
|
p {
|
|
1083
1299
|
color: #676767;
|
|
1084
|
-
font-family: Inter
|
|
1300
|
+
font-family: Inter;
|
|
1085
1301
|
font-size: 14px;
|
|
1086
1302
|
font-style: normal;
|
|
1087
1303
|
font-weight: 400;
|
|
1088
|
-
line-height: 24px;
|
|
1304
|
+
line-height: 24px;
|
|
1305
|
+
/* 171.429% */
|
|
1089
1306
|
}
|
|
1090
1307
|
}
|
|
1091
1308
|
|
|
1092
|
-
[data-slot=
|
|
1093
|
-
font-family: Inter
|
|
1309
|
+
[data-slot="children"] {
|
|
1310
|
+
font-family: Inter;
|
|
1094
1311
|
}
|