@gem-sdk/styles 1.14.0-dev.284 → 1.14.0-dev.324

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.
@@ -0,0 +1,858 @@
1
+ [data-toolbar-wrap] {
2
+ position: relative;
3
+
4
+ /* Toolbar style default */
5
+ [data-toolbar] {
6
+ position: absolute;
7
+ z-index: 20;
8
+ height: 24px;
9
+ top: -23px;
10
+ left: 0;
11
+ max-width: unset;
12
+ display: flex;
13
+ align-items: center;
14
+ padding: 4px;
15
+ color: #3c67ff;
16
+ background: #fff;
17
+ border: solid 1px #3c67ff;
18
+ white-space: nowrap;
19
+ pointer-events: unset;
20
+ font-family: Inter, sans-serif, ui-sans-serif, system-ui;
21
+ opacity: 0;
22
+ visibility: hidden;
23
+ cursor: pointer;
24
+ user-select: none;
25
+ transition: background 200ms ease-out;
26
+
27
+ [data-toolbar-show-parent],
28
+ [data-toolbar-parent] {
29
+ display: flex;
30
+ align-items: center;
31
+
32
+ [data-toolbar-icon-drag] {
33
+ display: block;
34
+
35
+ svg {
36
+ display: block;
37
+ max-width: unset;
38
+ width: 16px;
39
+ height: 16px;
40
+ }
41
+ }
42
+
43
+ [data-toolbar-name] {
44
+ display: block;
45
+ white-space: nowrap;
46
+ font-size: 12px;
47
+ padding-left: 4px;
48
+ padding-right: 4px;
49
+ font-weight: 500;
50
+ }
51
+ }
52
+
53
+ [data-toolbar-show-parent] {
54
+ cursor: grab;
55
+ }
56
+
57
+ [data-toolbar-parent] {
58
+ position: absolute;
59
+ top: -24px;
60
+ left: -1px;
61
+ height: 24px;
62
+ padding: 4px;
63
+ opacity: 1;
64
+ visibility: visible;
65
+ z-index: 30;
66
+ color: #3c67ff;
67
+ background: #fff;
68
+ border: solid 1px #3c67ff;
69
+
70
+ &:hover {
71
+ background: #c5d2ff;
72
+ }
73
+ }
74
+
75
+ [data-toolbar-parent][data-toolbar-theme-section='true'] {
76
+ border: solid 1px #9144da;
77
+ color: #9144da;
78
+
79
+ &:hover {
80
+ background: #ebddf8;
81
+ }
82
+
83
+ &[data-toolbar-hover-focus] {
84
+ background: #ebddf8;
85
+
86
+ &:hover {
87
+ background: #ebddf8;
88
+ }
89
+ }
90
+ }
91
+
92
+ [data-toolbar-create-theme-section] {
93
+ padding-left: 8px;
94
+ padding-right: 4px;
95
+ margin-top: 8px;
96
+ margin-bottom: 8px;
97
+ margin-left: 4px;
98
+ border-left: solid 1px;
99
+ border-color: #d6d6d6;
100
+ font-size: 12px;
101
+ font-weight: 500;
102
+ line-height: 16px;
103
+ }
104
+
105
+ /* hidden icon with hover state*/
106
+ [data-toolbar-active-create-theme-section],
107
+ [data-toolbar-icon-parent],
108
+ [data-toolbar-zoom-out],
109
+ [data-toolbar-duplicate],
110
+ [data-toolbar-delete] {
111
+ display: none;
112
+ }
113
+ }
114
+
115
+ [data-toolbar][data-toolbar-theme-section='true'] {
116
+ color: #9144da;
117
+ border: solid 1px #9144da;
118
+ }
119
+
120
+ /* State Toolbar */
121
+ [data-toolbar][data-toolbar-hover],
122
+ [data-toolbar][data-toolbar-force-hover] {
123
+ opacity: 1;
124
+ visibility: visible;
125
+ z-index: 30;
126
+
127
+ &:hover {
128
+ background: #c5d2ff;
129
+ }
130
+ }
131
+
132
+ [data-toolbar][data-toolbar-hover-revert] {
133
+ top: calc(100% - 1px);
134
+ }
135
+
136
+ [data-toolbar][data-toolbar-hover-inside] {
137
+ top: 0;
138
+ }
139
+
140
+ [data-toolbar][data-toolbar-hover][data-toolbar-hover-focus] {
141
+ background: #d8e1ff;
142
+ z-index: 40;
143
+
144
+ &:hover {
145
+ background: #c5d2ff;
146
+ }
147
+ }
148
+
149
+ [data-toolbar][data-toolbar-theme-section='true'][data-toolbar-hover][data-toolbar-hover-focus] {
150
+ background: #ebddf8;
151
+ }
152
+
153
+ [data-toolbar][data-toolbar-theme-section='true'][data-toolbar-hover] {
154
+ &:hover {
155
+ background: #ebddf8;
156
+ }
157
+ }
158
+
159
+ [data-toolbar][data-toolbar-theme-section='true'][data-toolbar-active] {
160
+ &:hover {
161
+ background: #9144da;
162
+ }
163
+ }
164
+
165
+ [data-toolbar][data-toolbar-active] {
166
+ opacity: 1;
167
+ visibility: visible;
168
+ z-index: 20;
169
+ height: 32px;
170
+ top: -31px;
171
+ background: #3c67ff;
172
+ color: #fff;
173
+
174
+ &:hover {
175
+ background: #3c67ff;
176
+ }
177
+
178
+ &[data-toolbar-hover-focus] {
179
+ background: #3c67ff;
180
+
181
+ &:hover {
182
+ background: #3c67ff;
183
+ }
184
+ }
185
+
186
+ &[data-toolbar-theme-section='true'] {
187
+ background: #9144da;
188
+
189
+ &[data-toolbar-hover-focus] {
190
+ background: #9144da;
191
+ }
192
+ }
193
+
194
+ [data-toolbar-show-parent] {
195
+ padding: 4px;
196
+ border-radius: 2px;
197
+ transition: background 200ms ease-in-out;
198
+
199
+ [data-toolbar-icon-parent] {
200
+ display: block;
201
+ transition: transform 200ms ease-in-out;
202
+
203
+ svg {
204
+ display: block;
205
+ max-width: unset;
206
+ width: 16px;
207
+ height: 16px;
208
+ }
209
+
210
+ &[data-toolbar-icon-parent-open='true'] {
211
+ transform: rotate(180deg);
212
+ }
213
+ }
214
+
215
+ &:hover {
216
+ background: rgba(225, 225, 225, 0.2);
217
+ }
218
+ }
219
+
220
+ [data-toolbar-duplicate],
221
+ [data-toolbar-delete],
222
+ [data-toolbar-zoom-out],
223
+ [data-toolbar-active-create-theme-section] {
224
+ display: block;
225
+ padding: 4px;
226
+ border-radius: 2px;
227
+ transition: background 200ms ease-in-out;
228
+
229
+ svg {
230
+ display: block;
231
+ max-width: unset;
232
+ width: 16px;
233
+ height: 16px;
234
+ }
235
+
236
+ &:hover {
237
+ background: rgba(225, 225, 225, 0.2);
238
+ }
239
+
240
+ &[data-toolbar-disable='true'] {
241
+ svg {
242
+ opacity: 0.4;
243
+ }
244
+
245
+ &:hover {
246
+ background: transparent;
247
+ }
248
+ }
249
+ }
250
+
251
+ [data-toolbar-active-create-theme-section-wrapper] {
252
+ padding: 0 4px;
253
+ margin: 0 4px;
254
+ border-left: solid 1px #7190ff;
255
+ border-right: solid 1px #7190ff;
256
+ }
257
+
258
+ [data-toolbar-active-create-theme-section] {
259
+ display: flex !important;
260
+ align-items: center;
261
+ gap: 4px;
262
+
263
+ p {
264
+ font-size: 12px;
265
+ font-weight: 500;
266
+ }
267
+ }
268
+
269
+ [data-toolbar-create-theme-section] {
270
+ display: none;
271
+ }
272
+ }
273
+
274
+ [data-toolbar][data-toolbar-active-revert] {
275
+ top: calc(100% - 1px);
276
+ }
277
+
278
+ [data-toolbar][data-toolbar-active-inside] {
279
+ top: 0;
280
+ }
281
+
282
+ [data-toolbar][data-toolbar-section='true'] {
283
+ left: unset;
284
+ right: 0;
285
+ border-color: #d6d6d6;
286
+ }
287
+
288
+ [data-toolbar][data-toolbar-section='true'][data-toolbar-hover-focus]
289
+ [data-toolbar-create-theme-section] {
290
+ border-color: #3c67ff;
291
+ }
292
+
293
+ [data-toolbar][data-toolbar-section='true'][data-toolbar-hover-focus],
294
+ [data-toolbar][data-toolbar-section='true'][data-toolbar-active] {
295
+ border-color: #3c67ff;
296
+ }
297
+
298
+ [data-toolbar][data-toolbar-editor-inline-focus] {
299
+ display: none;
300
+ }
301
+
302
+ [data-toolbar][data-toolbar-theme-section='true'][data-toolbar-hover-focus],
303
+ [data-toolbar][data-toolbar-theme-section='true'][data-toolbar-active] {
304
+ border-color: #9144da;
305
+ }
306
+
307
+ [data-toolbar][data-toolbar-active][data-toolbar-limit='true'],
308
+ [data-toolbar][data-toolbar-hover][data-toolbar-limit='true'],
309
+ [data-toolbar][data-toolbar-hover][data-toolbar-hover-focus][data-toolbar-limit='true'],
310
+ [data-toolbar][data-toolbar-limit='true'] {
311
+ background: #f44336;
312
+ border-color: #f44336;
313
+ color: #fff;
314
+
315
+ [data-toolbar-active-create-theme-section-wrapper],
316
+ [data-toolbar-create-theme-section] {
317
+ border-color: #fff;
318
+ }
319
+ }
320
+
321
+ /* Outline style default */
322
+ [data-outline] {
323
+ position: absolute;
324
+ z-index: 0;
325
+ top: 0;
326
+ left: 0;
327
+ width: 100%;
328
+ height: 100%;
329
+ border: solid 1px #3c67ff;
330
+ pointer-events: none;
331
+ opacity: 0;
332
+ visibility: hidden;
333
+ }
334
+
335
+ /* State Outline */
336
+ [data-outline][data-outline-hover],
337
+ [data-outline][data-outline-force-hover] {
338
+ opacity: 1;
339
+ visibility: visible;
340
+ z-index: 0;
341
+ }
342
+
343
+ [data-outline][data-outline-active] {
344
+ opacity: 1;
345
+ visibility: visible;
346
+ z-index: 0;
347
+ }
348
+
349
+ [data-outline][data-outline-overlay],
350
+ [data-outline][data-outline-force-overlay] {
351
+ background: rgba(60, 103, 255, 0.2);
352
+ }
353
+ [data-outline][data-outline-overlay][data-outline-theme-section='true'],
354
+ [data-outline][data-outline-force-overlay][data-outline-theme-section='true'] {
355
+ background: #ebddf866;
356
+ }
357
+
358
+ [data-outline][data-outline-overlay-theme-section] {
359
+ background: #ebddf83d;
360
+ }
361
+
362
+ [data-outline][data-outline-section='true'] {
363
+ border-color: #d6d6d6;
364
+ z-index: -1;
365
+ }
366
+
367
+ [data-outline][data-outline-section='true'][data-outline-hover-focus],
368
+ [data-outline][data-outline-section='true'][data-outline-active] {
369
+ border-color: #3c67ff;
370
+ z-index: 0;
371
+ }
372
+
373
+ [data-outline][data-outline-editor-inline-focus],
374
+ [data-outline][data-outline-editor-inline-focus] {
375
+ outline: unset;
376
+ border-color: transparent;
377
+ z-index: 0;
378
+ }
379
+
380
+ [data-component-tag='Heading'],
381
+ [data-component-tag='Text'] {
382
+ [data-outline][data-outline-editor-inline-focus] {
383
+ border-color: #3c67ff;
384
+ outline: 4px solid rgba(60, 103, 255, 0.24);
385
+ top: -2px;
386
+ left: -2px;
387
+ width: calc(100% + 4px);
388
+ height: calc(100% + 4px);
389
+ z-index: 0;
390
+ }
391
+ }
392
+
393
+ [data-outline][data-outline-theme-section='true'],
394
+ [data-outline][data-outline-theme-section='true'][data-outline-hover-focus],
395
+ [data-outline][data-outline-theme-section='true'][data-outline-active] {
396
+ border-color: #9144da;
397
+ z-index: 0;
398
+ }
399
+
400
+ [data-outline][data-outline-active][data-outline-limit='true'],
401
+ [data-outline][data-outline-hover][data-outline-limit='true'],
402
+ [data-outline][data-outline-hover][data-outline-hover-focus][data-outline-limit='true'],
403
+ [data-outline][data-outline-limit='true'] {
404
+ border-color: #f44336;
405
+ }
406
+
407
+ [data-theme-section] {
408
+ .button-text::after {
409
+ display: none !important;
410
+ }
411
+ .gp-text:hover {
412
+ border-color: transparent !important;
413
+ }
414
+ }
415
+
416
+ [data-theme-section-status] {
417
+ display: none;
418
+ align-items: center;
419
+ gap: 4px;
420
+ padding: 4px;
421
+ border-radius: 3px;
422
+ color: #212121;
423
+ background: #ebddf8;
424
+ max-width: 32px;
425
+ position: absolute;
426
+ z-index: 50;
427
+ left: 8px;
428
+ top: 8px;
429
+ font-size: 14px;
430
+ font-weight: 400;
431
+ line-height: 24px;
432
+ overflow: hidden;
433
+ transition: max-width 1s ease-in-out;
434
+ }
435
+
436
+ [data-theme-section-status-active='true'] {
437
+ display: flex;
438
+ }
439
+
440
+ [data-theme-section-status-icon] {
441
+ width: 24px;
442
+ height: 24px;
443
+ display: flex;
444
+ align-items: center;
445
+ justify-content: center;
446
+ cursor: pointer;
447
+ flex-shrink: 0;
448
+ }
449
+
450
+ [data-theme-section-status-text] {
451
+ display: block;
452
+ white-space: nowrap;
453
+ }
454
+
455
+ [data-theme-section-status]:hover {
456
+ max-width: 100%;
457
+ }
458
+
459
+ /* Action add style default */
460
+ [data-toolbar-add-top],
461
+ [data-toolbar-add-bottom] {
462
+ width: 32px;
463
+ height: 32px;
464
+ display: flex;
465
+ justify-content: center;
466
+ align-items: center;
467
+ background: #fff;
468
+ color: #3c67ff;
469
+ border: solid 1px #d6d6d6;
470
+ border-radius: 3px;
471
+ cursor: pointer;
472
+ position: absolute;
473
+ z-index: 50;
474
+ left: calc(50% - 16px);
475
+ top: -16px;
476
+ display: none;
477
+ user-select: none;
478
+ transition: border-color 200ms ease-in-out;
479
+
480
+ svg {
481
+ width: 16px;
482
+ height: 16px;
483
+ transition: transform 200ms ease-in-out;
484
+ }
485
+
486
+ &:hover {
487
+ border-color: #3c67ff;
488
+ }
489
+
490
+ &[data-toolbar-disable='true'] {
491
+ background: #f4f4f4;
492
+ color: #d6d6d6;
493
+ border-color: #d6d6d6;
494
+
495
+ &:hover {
496
+ background: #f4f4f4;
497
+ color: #d6d6d6;
498
+ border-color: #d6d6d6;
499
+ }
500
+ }
501
+ }
502
+
503
+ [data-toolbar-add-bottom] {
504
+ top: unset;
505
+ bottom: -16px;
506
+ }
507
+
508
+ /* Active add state */
509
+ [data-toolbar-add-top][data-toolbar-add-open='true'],
510
+ [data-toolbar-add-bottom][data-toolbar-add-open='true'] {
511
+ svg {
512
+ transform: rotate(45deg);
513
+ }
514
+ }
515
+
516
+ [data-toolbar-add-top][data-toolbar-add-hover],
517
+ [data-toolbar-add-bottom][data-toolbar-add-hover] {
518
+ display: flex;
519
+ }
520
+
521
+ [data-toolbar-add-top][data-toolbar-add-active],
522
+ [data-toolbar-add-bottom][data-toolbar-add-active] {
523
+ display: flex;
524
+ }
525
+
526
+ /* Resize spacing */
527
+ [data-spacing] {
528
+ z-index: 10;
529
+ [data-spacing-margin-bottom] {
530
+ position: absolute;
531
+ z-index: 10;
532
+ bottom: 0;
533
+ left: 0;
534
+ width: 100%;
535
+ display: flex;
536
+ justify-content: center;
537
+
538
+ display: none;
539
+
540
+ [data-spacing-margin-bottom-bg] {
541
+ position: absolute;
542
+ top: 0;
543
+ left: 0;
544
+ width: 100%;
545
+ background-color: #3c67ff33;
546
+
547
+ display: flex;
548
+ justify-content: center;
549
+ align-items: center;
550
+
551
+ [data-spacing-margin-bottom-value] {
552
+ background-color: #3c67ff;
553
+ padding: 2px;
554
+ position: absolute;
555
+ font-size: 8px;
556
+ color: #fff;
557
+ border-radius: 4px;
558
+ font-weight: bold;
559
+
560
+ display: none;
561
+ }
562
+ }
563
+
564
+ [data-spacing-margin-bottom-drag] {
565
+ position: absolute;
566
+ bottom: 0;
567
+ height: 4px;
568
+ width: 40px;
569
+ border-top-left-radius: 4px;
570
+ border-top-right-radius: 4px;
571
+ cursor: ns-resize;
572
+ background-color: #3c67ff;
573
+ transition: height 0.2s;
574
+ transform: translateY(-100%);
575
+
576
+ &:hover {
577
+ height: 6px;
578
+ }
579
+ }
580
+ }
581
+ }
582
+
583
+ [data-spacing][data-spacing-theme-section='true'] {
584
+ [data-spacing-margin-bottom-bg] {
585
+ background-color: #ebddf8;
586
+
587
+ [data-spacing-margin-bottom-value] {
588
+ background-color: #9144da;
589
+ }
590
+ }
591
+
592
+ [data-spacing-margin-bottom-drag] {
593
+ background-color: #9144da;
594
+ }
595
+ }
596
+
597
+ [data-spacing-margin-bottom][data-spacing-margin-bottom-active] {
598
+ display: flex;
599
+ }
600
+
601
+ [data-spacing][data-spacing-hidden] {
602
+ display: none;
603
+ }
604
+
605
+ /* Tooltips */
606
+ [data-toolbar-tooltip-trigger] {
607
+ [data-toolbar-tooltip] {
608
+ width: unset;
609
+ max-width: unset;
610
+ background-color: #676767 !important;
611
+ color: #fff;
612
+ text-align: center;
613
+ border-radius: 6px;
614
+ padding: 5px;
615
+ transition: opacity 1s;
616
+ position: absolute;
617
+ z-index: 1;
618
+ font-size: 16px;
619
+ padding: 8px 12px;
620
+ pointer-events: none;
621
+ white-space: nowrap;
622
+
623
+ opacity: 0;
624
+ }
625
+
626
+ &:hover [data-toolbar-tooltip] {
627
+ opacity: 1;
628
+ }
629
+
630
+ [data-toolbar-tooltip-position='right'] {
631
+ top: -5px;
632
+ left: 105%;
633
+
634
+ &::after {
635
+ content: ' ';
636
+ position: absolute;
637
+ top: 50%;
638
+ right: 100%;
639
+ margin-top: -5px;
640
+ border-width: 5px;
641
+ border-style: solid;
642
+ border-color: transparent #676767 transparent transparent;
643
+ }
644
+ }
645
+
646
+ [data-toolbar-tooltip-position='left'] {
647
+ top: -5px;
648
+ right: 105%;
649
+
650
+ &::after {
651
+ content: ' ';
652
+ position: absolute;
653
+ top: 50%;
654
+ left: 100%;
655
+ margin-top: -5px;
656
+ border-width: 5px;
657
+ border-style: solid;
658
+ border-color: transparent transparent transparent #676767;
659
+ }
660
+ }
661
+
662
+ [data-toolbar-tooltip-position='top'] {
663
+ bottom: 105%;
664
+ left: 0%;
665
+
666
+ &::after {
667
+ content: ' ';
668
+ position: absolute;
669
+ top: 100%;
670
+ left: 50%;
671
+ margin-left: -5px;
672
+ border-width: 5px;
673
+ border-style: solid;
674
+ border-color: #676767 transparent transparent transparent;
675
+ }
676
+ }
677
+
678
+ [data-toolbar-tooltip-position='bottom'] {
679
+ top: 105%;
680
+ left: 0%;
681
+
682
+ &::after {
683
+ content: ' ';
684
+ position: absolute;
685
+ bottom: 100%;
686
+ left: 50%;
687
+ margin-left: -5px;
688
+ border-width: 5px;
689
+ border-style: solid;
690
+ border-color: transparent transparent #676767 transparent;
691
+ }
692
+ }
693
+ }
694
+
695
+ /* Tooltips state */
696
+ [data-toolbar-tooltip-trigger][data-toolbar-duplicate] {
697
+ position: relative;
698
+
699
+ [data-toolbar-tooltip] {
700
+ left: unset;
701
+ right: 0;
702
+ margin-top: 12px;
703
+
704
+ &[data-toolbar-tooltip-position='bottom'] {
705
+ &::after {
706
+ content: ' ';
707
+ left: unset;
708
+ right: 6px;
709
+ }
710
+ }
711
+ }
712
+ }
713
+
714
+ [data-toolbar-tooltip-trigger][data-toolbar-add-top],
715
+ [data-toolbar-tooltip-trigger][data-toolbar-add-bottom] {
716
+ [data-toolbar-tooltip] {
717
+ margin-bottom: 12px;
718
+ left: 50%;
719
+ transform: translateX(-50%);
720
+ }
721
+ }
722
+ }
723
+
724
+ [data-toolbar-debug] {
725
+ [data-toolbar] {
726
+ opacity: 1;
727
+ visibility: visible;
728
+ }
729
+
730
+ [data-outline] {
731
+ opacity: 1;
732
+ visibility: visible;
733
+ }
734
+ }
735
+
736
+ [data-toolbar-active='true'] .theme-section-tooltip {
737
+ right: -53px !important;
738
+ padding-top: 16px !important;
739
+ }
740
+
741
+ [data-toolbar-active='true'] .theme-section-tooltip::before {
742
+ right: 45% !important;
743
+ top: 12px !important;
744
+ }
745
+
746
+ /* Create theme section tooltip */
747
+ .theme-section-tooltip-wrapper {
748
+ position: relative;
749
+
750
+ .theme-section-tooltip {
751
+ cursor: default;
752
+ min-width: 284px;
753
+ display: flex;
754
+ flex-direction: column;
755
+ border-radius: 3px;
756
+ position: absolute;
757
+ right: -4px;
758
+ top: 100%;
759
+ padding-top: 9px;
760
+ }
761
+
762
+ .theme-section-tooltip::before {
763
+ content: '';
764
+ position: absolute;
765
+ height: 8px;
766
+ width: 8px;
767
+ background: #212121;
768
+ transform: rotate(45deg);
769
+ right: 16px;
770
+ top: 5px;
771
+ }
772
+
773
+ .theme-section-tooltip__image {
774
+ background: #212121;
775
+ border-radius: 3px 3px 0 0;
776
+ padding-top: 16px;
777
+ padding-bottom: 8px;
778
+ padding-left: 21px;
779
+ padding-right: 20px;
780
+ min-height: 150px;
781
+ }
782
+
783
+ .theme-section-tooltip__body {
784
+ display: flex;
785
+ flex-direction: column;
786
+ gap: 8px;
787
+ padding: 16px;
788
+ background: #151515;
789
+ text-wrap: wrap;
790
+
791
+ &-title {
792
+ color: #f9f9f9;
793
+ font-size: 14px;
794
+ font-weight: 500;
795
+ line-height: 24px;
796
+ }
797
+
798
+ &-desc {
799
+ color: #aaa;
800
+ font-size: 14px;
801
+ font-weight: 400;
802
+ line-height: 24px;
803
+ }
804
+ }
805
+
806
+ .theme-section-tooltip__action {
807
+ padding: 16px;
808
+ border-radius: 0 0 3px 3px;
809
+ border-top: solid 1px #3b3b3b;
810
+ background: #151515;
811
+ display: flex;
812
+ flex-direction: column;
813
+
814
+ button {
815
+ cursor: pointer;
816
+ width: 100%;
817
+ text-align: center;
818
+ background: #3c67ff;
819
+ border-radius: 3px;
820
+ height: 40px;
821
+ font-size: 14px;
822
+ line-height: 24px;
823
+ color: #f9f9f9;
824
+ font-weight: 500;
825
+ transition: all 0.15s ease-in;
826
+ }
827
+
828
+ button:hover {
829
+ background: #2856f8;
830
+ }
831
+ }
832
+
833
+ .theme-section-tooltip__action-limit {
834
+ button {
835
+ background: #fdb913 !important;
836
+ color: #212121 !important;
837
+ }
838
+
839
+ button:hover {
840
+ background: #fdc742 !important;
841
+ }
842
+ }
843
+
844
+ .theme-section-tooltip__action-learn-more {
845
+ color: #8aa4ff;
846
+ text-align: center;
847
+ font-size: 12px;
848
+ font-weight: 500;
849
+ line-height: 20px;
850
+ margin-top: 8px;
851
+ cursor: pointer;
852
+ transition: all 0.15s ease-in;
853
+
854
+ &:hover {
855
+ color: #3c67ff;
856
+ }
857
+ }
858
+ }