@tight-embedded/react 1.0.0-alpha.0 → 1.0.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/index.css +812 -379
- package/dist/index.css.gz +0 -0
- package/dist/index.js +1846 -1655
- package/dist/index.js.gz +0 -0
- package/dist/index.js.map +1 -1
- package/dist/index.js.map.gz +0 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
* {
|
|
7
7
|
box-sizing: border-box;
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
-moz-osx-font-smoothing: grayscale;
|
|
8
10
|
}
|
|
9
11
|
}
|
|
10
12
|
|
|
@@ -24,6 +26,15 @@
|
|
|
24
26
|
}
|
|
25
27
|
}
|
|
26
28
|
|
|
29
|
+
@keyframes spin {
|
|
30
|
+
from {
|
|
31
|
+
transform: rotate(0deg);
|
|
32
|
+
}
|
|
33
|
+
to {
|
|
34
|
+
transform: rotate(360deg);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
27
38
|
@layer base {
|
|
28
39
|
:root {
|
|
29
40
|
--made-with-panda: '🐼';
|
|
@@ -95,8 +106,9 @@
|
|
|
95
106
|
--Tight-fonts-base: Duplet Regular, sans-serif;
|
|
96
107
|
--Tight-fontSizes-sm: 11px;
|
|
97
108
|
--Tight-fontSizes-md: 14px;
|
|
98
|
-
--Tight-fontSizes-lg:
|
|
99
|
-
--Tight-fontSizes-xl:
|
|
109
|
+
--Tight-fontSizes-lg: 16px;
|
|
110
|
+
--Tight-fontSizes-xl: 20px;
|
|
111
|
+
--Tight-fontSizes-2xl: 36px;
|
|
100
112
|
--Tight-fontWeights-sm: 400;
|
|
101
113
|
--Tight-fontWeights-md: 600;
|
|
102
114
|
--Tight-fontWeights-lg: 900;
|
|
@@ -111,6 +123,7 @@
|
|
|
111
123
|
--Tight-animations-appear-instant: 0.25s linear fade-in;
|
|
112
124
|
--Tight-animations-appear-delay: 0.25s linear both 1.5s fade-in;
|
|
113
125
|
--Tight-animations-shimmer: 2s ease-in-out infinite shimmer;
|
|
126
|
+
--Tight-animations-spin: 1.5s ease-in-out 0.1s spin infinite;
|
|
114
127
|
--Tight-shadows-box-shadow: 0px 10px 30px 0px rgba(24, 36, 40, 0.10);
|
|
115
128
|
--Tight-breakpoints-sm: 640px;
|
|
116
129
|
--Tight-breakpoints-md: 850px;
|
|
@@ -189,8 +202,8 @@
|
|
|
189
202
|
--Tight-colors-typography-intent-secondary-hover: var(--Tight-colors-typography-base);
|
|
190
203
|
--Tight-colors-typography-intent-secondary-active: var(--Tight-colors-typography-base);
|
|
191
204
|
--Tight-colors-typography-intent-action: var(--Tight-colors-typography-base);
|
|
192
|
-
--Tight-colors-typography-intent-action-hover: var(--Tight-colors-
|
|
193
|
-
--Tight-colors-typography-intent-action-active: var(--Tight-colors-
|
|
205
|
+
--Tight-colors-typography-intent-action-hover: var(--Tight-colors-typography-base);
|
|
206
|
+
--Tight-colors-typography-intent-action-active: var(--Tight-colors-typography-base);
|
|
194
207
|
--Tight-colors-typography-intent-success: var(--Tight-colors-typography-base);
|
|
195
208
|
--Tight-colors-typography-intent-success-hover: var(--Tight-colors-typography-base);
|
|
196
209
|
--Tight-colors-typography-intent-success-active: var(--Tight-colors-typography-base);
|
|
@@ -203,11 +216,13 @@
|
|
|
203
216
|
--Tight-colors-typography-accent-success: var(--Tight-colors-brand-success-strong);
|
|
204
217
|
--Tight-colors-typography-accent-warning: var(--Tight-colors-brand-warning-strong);
|
|
205
218
|
--Tight-colors-typography-accent-danger: var(--Tight-colors-brand-danger-strong);
|
|
219
|
+
--Tight-colors-typography-accent-action: var(--Tight-colors-brand-action-strong);
|
|
206
220
|
--Tight-colors-typography-body: var(--Tight-colors-typography-base);
|
|
207
221
|
--Tight-colors-typography-label: var(--Tight-colors-typography-base);
|
|
208
|
-
--Tight-colors-typography-label-sub: var(--Tight-colors-typography-base);
|
|
222
|
+
--Tight-colors-typography-label-sub: var(--Tight-colors-typography-base-weak);
|
|
209
223
|
--Tight-colors-typography-label-strong: var(--Tight-colors-typography-base);
|
|
210
224
|
--Tight-colors-typography-label-strongSub: var(--Tight-colors-typography-base);
|
|
225
|
+
--Tight-colors-typography-label-emphasisSub: var(--Tight-colors-typography-base);
|
|
211
226
|
--Tight-colors-typography-heading: var(--Tight-colors-typography-base);
|
|
212
227
|
--Tight-colors-typography-metric-sm: var(--Tight-colors-typography-base);
|
|
213
228
|
--Tight-colors-typography-metric-md: var(--Tight-colors-typography-base);
|
|
@@ -285,23 +300,25 @@
|
|
|
285
300
|
--Tight-fontWeights-label-strong: var(--Tight-fontWeights-md);
|
|
286
301
|
--Tight-fontWeights-label-sub: var(--Tight-fontWeights-sm);
|
|
287
302
|
--Tight-fontWeights-label-strongSub: var(--Tight-fontWeights-md);
|
|
303
|
+
--Tight-fontWeights-label-emphasisSub: var(--Tight-fontWeights-lg);
|
|
288
304
|
--Tight-fontWeights-heading: var(--Tight-fontWeights-md);
|
|
289
305
|
--Tight-fontWeights-title: var(--Tight-fontWeights-sm);
|
|
290
306
|
--Tight-fontWeights-metric-sm: var(--Tight-fontWeights-sm);
|
|
291
307
|
--Tight-fontWeights-metric-md: var(--Tight-fontWeights-sm);
|
|
292
308
|
--Tight-fontWeights-metric-lg: var(--Tight-fontWeights-sm);
|
|
293
309
|
--Tight-fontWeights-metric-xl: var(--Tight-fontWeights-sm);
|
|
294
|
-
--Tight-fontSizes-title: var(--Tight-fontSizes-
|
|
310
|
+
--Tight-fontSizes-title: var(--Tight-fontSizes-2xl);
|
|
295
311
|
--Tight-fontSizes-body: var(--Tight-fontSizes-md);
|
|
296
312
|
--Tight-fontSizes-label: var(--Tight-fontSizes-md);
|
|
297
313
|
--Tight-fontSizes-label-strong: var(--Tight-fontSizes-md);
|
|
298
314
|
--Tight-fontSizes-label-sub: var(--Tight-fontSizes-sm);
|
|
299
315
|
--Tight-fontSizes-label-strongSub: var(--Tight-fontSizes-sm);
|
|
300
|
-
--Tight-fontSizes-
|
|
316
|
+
--Tight-fontSizes-label-emphasisSub: var(--Tight-fontSizes-sm);
|
|
317
|
+
--Tight-fontSizes-heading: var(--Tight-fontSizes-xl);
|
|
301
318
|
--Tight-fontSizes-metric-sm: var(--Tight-fontSizes-sm);
|
|
302
319
|
--Tight-fontSizes-metric-md: var(--Tight-fontSizes-md);
|
|
303
|
-
--Tight-fontSizes-metric-lg: var(--Tight-fontSizes-
|
|
304
|
-
--Tight-fontSizes-metric-xl: var(--Tight-fontSizes-
|
|
320
|
+
--Tight-fontSizes-metric-lg: var(--Tight-fontSizes-xl);
|
|
321
|
+
--Tight-fontSizes-metric-xl: var(--Tight-fontSizes-2xl);
|
|
305
322
|
}
|
|
306
323
|
}
|
|
307
324
|
|
|
@@ -322,6 +339,10 @@
|
|
|
322
339
|
padding: 6px;
|
|
323
340
|
}
|
|
324
341
|
|
|
342
|
+
.tsystem-p_15px_15px_0_15px {
|
|
343
|
+
padding: 15px 15px 0 15px;
|
|
344
|
+
}
|
|
345
|
+
|
|
325
346
|
.tsystem-p_15px {
|
|
326
347
|
padding: 15px;
|
|
327
348
|
}
|
|
@@ -346,6 +367,10 @@
|
|
|
346
367
|
padding: 15px;
|
|
347
368
|
}
|
|
348
369
|
|
|
370
|
+
.tsystem-bd_none {
|
|
371
|
+
border: none;
|
|
372
|
+
}
|
|
373
|
+
|
|
349
374
|
.tsystem-inset_0 {
|
|
350
375
|
inset: 0;
|
|
351
376
|
}
|
|
@@ -358,8 +383,8 @@
|
|
|
358
383
|
padding: 16px;
|
|
359
384
|
}
|
|
360
385
|
|
|
361
|
-
.tsystem-
|
|
362
|
-
|
|
386
|
+
.tsystem-m_32px {
|
|
387
|
+
margin: 32px;
|
|
363
388
|
}
|
|
364
389
|
|
|
365
390
|
.tsystem-p_0 {
|
|
@@ -446,8 +471,8 @@
|
|
|
446
471
|
background: var(--Tight-colors-transparent);
|
|
447
472
|
}
|
|
448
473
|
|
|
449
|
-
.tsystem-
|
|
450
|
-
padding:
|
|
474
|
+
.tsystem-p_12px {
|
|
475
|
+
padding: 12px;
|
|
451
476
|
}
|
|
452
477
|
|
|
453
478
|
.tsystem-bd_\{borderWidths\.lg\}_solid_\{colors\.border\.layout\.strong\} {
|
|
@@ -482,10 +507,6 @@
|
|
|
482
507
|
padding: 4px 8px;
|
|
483
508
|
}
|
|
484
509
|
|
|
485
|
-
.tsystem-p_15px_15px_0_15px {
|
|
486
|
-
padding: 15px 15px 0 15px;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
510
|
.tsystem-p_0_10px {
|
|
490
511
|
padding: 0 10px;
|
|
491
512
|
}
|
|
@@ -534,10 +555,18 @@
|
|
|
534
555
|
padding: 0 6px 0 0;
|
|
535
556
|
}
|
|
536
557
|
|
|
558
|
+
.tsystem-anim_spin {
|
|
559
|
+
animation: var(--Tight-animations-spin);
|
|
560
|
+
}
|
|
561
|
+
|
|
537
562
|
.tsystem-p_15px_0px {
|
|
538
563
|
padding: 15px 0px;
|
|
539
564
|
}
|
|
540
565
|
|
|
566
|
+
.tsystem-p_4px {
|
|
567
|
+
padding: 4px;
|
|
568
|
+
}
|
|
569
|
+
|
|
541
570
|
.tsystem-ring_none {
|
|
542
571
|
outline: 2px solid transparent;
|
|
543
572
|
outline-offset: 2px;
|
|
@@ -579,6 +608,38 @@
|
|
|
579
608
|
gap: 15px;
|
|
580
609
|
}
|
|
581
610
|
|
|
611
|
+
.tsystem-bd-t_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.strong\} {
|
|
612
|
+
border-top: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-strong);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.tsystem-bd-t_\{borderWidths\.md\}_solid {
|
|
616
|
+
border-top: var(--Tight-borderWidths-md) solid;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.tsystem-bd-c_border\.layout\.strong {
|
|
620
|
+
border-color: var(--Tight-colors-border-layout-strong);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.tsystem-bd-b_\{borderWidths\.md\}_solid {
|
|
624
|
+
border-bottom: var(--Tight-borderWidths-md) solid;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.tsystem-bd-c_border\.layout\.weak {
|
|
628
|
+
border-color: var(--Tight-colors-border-layout-weak);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.tsystem-gap_8px {
|
|
632
|
+
gap: 8px;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.tsystem-bd-c_strong {
|
|
636
|
+
border-color: strong;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.tsystem-gap_16px {
|
|
640
|
+
gap: 16px;
|
|
641
|
+
}
|
|
642
|
+
|
|
582
643
|
.tsystem-bdr_lg {
|
|
583
644
|
border-radius: var(--Tight-radii-lg);
|
|
584
645
|
}
|
|
@@ -595,6 +656,10 @@
|
|
|
595
656
|
border-color: var(--Tight-colors-border-intent-danger);
|
|
596
657
|
}
|
|
597
658
|
|
|
659
|
+
.tsystem-bd-c_border\.intent\.secondary {
|
|
660
|
+
border-color: var(--Tight-colors-border-intent-secondary);
|
|
661
|
+
}
|
|
662
|
+
|
|
598
663
|
.tsystem-flex_1_1_0 {
|
|
599
664
|
flex: 1 1 0;
|
|
600
665
|
}
|
|
@@ -611,6 +676,10 @@
|
|
|
611
676
|
border-radius: 50%;
|
|
612
677
|
}
|
|
613
678
|
|
|
679
|
+
.tsystem-gap_15 {
|
|
680
|
+
gap: 15px;
|
|
681
|
+
}
|
|
682
|
+
|
|
614
683
|
.tsystem-bd-w_1 {
|
|
615
684
|
border-width: 1px;
|
|
616
685
|
}
|
|
@@ -635,50 +704,42 @@
|
|
|
635
704
|
flex: 1 1 0%;
|
|
636
705
|
}
|
|
637
706
|
|
|
638
|
-
.tsystem-ov_scroll {
|
|
639
|
-
overflow: scroll;
|
|
640
|
-
}
|
|
641
|
-
|
|
642
707
|
.tsystem-flex-flow_column {
|
|
643
708
|
flex-flow: column;
|
|
644
709
|
}
|
|
645
710
|
|
|
646
|
-
.tsystem-
|
|
647
|
-
|
|
711
|
+
.tsystem-bdr_0 {
|
|
712
|
+
border-radius: 0;
|
|
648
713
|
}
|
|
649
714
|
|
|
650
|
-
.tsystem-
|
|
651
|
-
|
|
715
|
+
.tsystem-gap_2px {
|
|
716
|
+
gap: 2px;
|
|
652
717
|
}
|
|
653
718
|
|
|
654
|
-
.tsystem-
|
|
655
|
-
gap:
|
|
719
|
+
.tsystem-gap_5 {
|
|
720
|
+
gap: 5px;
|
|
656
721
|
}
|
|
657
722
|
|
|
658
|
-
.tsystem-
|
|
659
|
-
|
|
723
|
+
.tsystem-bd-w_0 {
|
|
724
|
+
border-width: 0;
|
|
660
725
|
}
|
|
661
726
|
|
|
662
|
-
.tsystem-
|
|
663
|
-
|
|
727
|
+
.tsystem-trs_all_300ms_ease-out {
|
|
728
|
+
transition: all 300ms ease-out;
|
|
664
729
|
}
|
|
665
730
|
|
|
666
|
-
.tsystem-
|
|
667
|
-
|
|
731
|
+
.tsystem-place-items_center {
|
|
732
|
+
place-items: center;
|
|
668
733
|
}
|
|
669
734
|
|
|
670
|
-
.tsystem-
|
|
671
|
-
|
|
735
|
+
.tsystem-flex_1 {
|
|
736
|
+
flex: 1 1 0%;
|
|
672
737
|
}
|
|
673
738
|
|
|
674
739
|
.tsystem-bd-c_border\.intent\.success {
|
|
675
740
|
border-color: var(--Tight-colors-border-intent-success);
|
|
676
741
|
}
|
|
677
742
|
|
|
678
|
-
.tsystem-bd-c_border\.layout\.strong {
|
|
679
|
-
border-color: var(--Tight-colors-border-layout-strong);
|
|
680
|
-
}
|
|
681
|
-
|
|
682
743
|
.tsystem-bg-p_100\%_0 {
|
|
683
744
|
background-position: 100% 0;
|
|
684
745
|
}
|
|
@@ -691,6 +752,10 @@
|
|
|
691
752
|
padding-block: 10px;
|
|
692
753
|
}
|
|
693
754
|
|
|
755
|
+
.tsystem-gap_20 {
|
|
756
|
+
gap: 20px;
|
|
757
|
+
}
|
|
758
|
+
|
|
694
759
|
.tsystem-trs_height_0\.5s\,_width_0\.5s {
|
|
695
760
|
transition: height 0.5s, width 0.5s;
|
|
696
761
|
}
|
|
@@ -711,10 +776,6 @@
|
|
|
711
776
|
border-top: hidden;
|
|
712
777
|
}
|
|
713
778
|
|
|
714
|
-
.tsystem-bdr_0 {
|
|
715
|
-
border-radius: 0;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
779
|
.tsystem-gap_9 {
|
|
719
780
|
gap: 9px;
|
|
720
781
|
}
|
|
@@ -879,22 +940,34 @@
|
|
|
879
940
|
letter-spacing: 0.66px;
|
|
880
941
|
}
|
|
881
942
|
|
|
882
|
-
.tsystem-
|
|
883
|
-
|
|
943
|
+
.tsystem-flex-d_column {
|
|
944
|
+
flex-direction: column;
|
|
884
945
|
}
|
|
885
946
|
|
|
886
|
-
.tsystem-
|
|
887
|
-
|
|
947
|
+
.tsystem-pos_relative {
|
|
948
|
+
position: relative;
|
|
888
949
|
}
|
|
889
950
|
|
|
890
|
-
.tsystem-
|
|
891
|
-
|
|
951
|
+
.tsystem-pos_sticky {
|
|
952
|
+
position: sticky;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.tsystem-flex-d_row {
|
|
956
|
+
flex-direction: row;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.tsystem-jc_space-between {
|
|
960
|
+
justify-content: space-between;
|
|
892
961
|
}
|
|
893
962
|
|
|
894
963
|
.tsystem-bg-c_surface\.foreground {
|
|
895
964
|
background-color: var(--Tight-colors-surface-foreground);
|
|
896
965
|
}
|
|
897
966
|
|
|
967
|
+
.tsystem-bd-be-w_var\(--thickness\) {
|
|
968
|
+
border-block-end-width: var(--thickness);
|
|
969
|
+
}
|
|
970
|
+
|
|
898
971
|
.tsystem-jc_flex-end {
|
|
899
972
|
justify-content: flex-end;
|
|
900
973
|
}
|
|
@@ -903,24 +976,20 @@
|
|
|
903
976
|
flex-shrink: 0;
|
|
904
977
|
}
|
|
905
978
|
|
|
906
|
-
.tsystem-flex-d_column {
|
|
907
|
-
flex-direction: column;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
979
|
.tsystem-ai_flex-start {
|
|
911
980
|
align-items: flex-start;
|
|
912
981
|
}
|
|
913
982
|
|
|
914
|
-
.tsystem-
|
|
915
|
-
|
|
983
|
+
.tsystem-as_stretch {
|
|
984
|
+
align-self: stretch;
|
|
916
985
|
}
|
|
917
986
|
|
|
918
|
-
.tsystem-flex-
|
|
919
|
-
flex-
|
|
987
|
+
.tsystem-flex-wrap_wrap {
|
|
988
|
+
flex-wrap: wrap;
|
|
920
989
|
}
|
|
921
990
|
|
|
922
|
-
.tsystem-
|
|
923
|
-
|
|
991
|
+
.tsystem-bg-c_surface\.intent\.secondary {
|
|
992
|
+
background-color: var(--Tight-colors-surface-intent-secondary);
|
|
924
993
|
}
|
|
925
994
|
|
|
926
995
|
.tsystem-flex-d_row-reverse {
|
|
@@ -959,6 +1028,30 @@
|
|
|
959
1028
|
scrollbar-width: thin;
|
|
960
1029
|
}
|
|
961
1030
|
|
|
1031
|
+
.tsystem-d_grid {
|
|
1032
|
+
display: grid;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.tsystem-grid-tc_3fr_1fr {
|
|
1036
|
+
grid-template-columns: 3fr 1fr;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.tsystem-bg-c_transparent {
|
|
1040
|
+
background-color: var(--Tight-colors-transparent);
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.tsystem-ai_start {
|
|
1044
|
+
align-items: start;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.tsystem-jc_end {
|
|
1048
|
+
justify-content: end;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.tsystem-ai_stretch {
|
|
1052
|
+
align-items: stretch;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
962
1055
|
.tsystem-bg-c_border\.layout {
|
|
963
1056
|
background-color: var(--Tight-colors-border-layout);
|
|
964
1057
|
}
|
|
@@ -967,18 +1060,30 @@
|
|
|
967
1060
|
text-align: center;
|
|
968
1061
|
}
|
|
969
1062
|
|
|
970
|
-
.tsystem-
|
|
971
|
-
|
|
1063
|
+
.tsystem-white-space_normal {
|
|
1064
|
+
white-space: normal;
|
|
972
1065
|
}
|
|
973
1066
|
|
|
974
|
-
.tsystem-
|
|
975
|
-
|
|
1067
|
+
.tsystem-ov-wrap_break-word {
|
|
1068
|
+
overflow-wrap: break-word;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.tsystem-pos_fixed {
|
|
1072
|
+
position: fixed;
|
|
976
1073
|
}
|
|
977
1074
|
|
|
978
1075
|
.tsystem-bg-c_overlay {
|
|
979
1076
|
background-color: var(--Tight-colors-overlay);
|
|
980
1077
|
}
|
|
981
1078
|
|
|
1079
|
+
.tsystem-white-space_wrap {
|
|
1080
|
+
white-space: wrap;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.tsystem-tov_wrap {
|
|
1084
|
+
text-overflow: wrap;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
982
1087
|
.tsystem-pos_absolute {
|
|
983
1088
|
position: absolute;
|
|
984
1089
|
}
|
|
@@ -987,6 +1092,10 @@
|
|
|
987
1092
|
background-color: var(--Tight-colors-surface-background);
|
|
988
1093
|
}
|
|
989
1094
|
|
|
1095
|
+
.tsystem-flex-g_1 {
|
|
1096
|
+
flex-grow: 1;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
990
1099
|
.tsystem-stk_currentColor {
|
|
991
1100
|
stroke: var(--Tight-colors-currentColor);
|
|
992
1101
|
}
|
|
@@ -1067,10 +1176,6 @@
|
|
|
1067
1176
|
fill: var(--Tight-colors-transparent);
|
|
1068
1177
|
}
|
|
1069
1178
|
|
|
1070
|
-
.tsystem-bg-c_transparent {
|
|
1071
|
-
background-color: var(--Tight-colors-transparent);
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
1179
|
.tsystem-d_inline-flex {
|
|
1075
1180
|
display: inline-flex;
|
|
1076
1181
|
}
|
|
@@ -1095,6 +1200,10 @@
|
|
|
1095
1200
|
box-shadow: 0 0 0 0 transparent;
|
|
1096
1201
|
}
|
|
1097
1202
|
|
|
1203
|
+
.tsystem-c_icon\.base {
|
|
1204
|
+
color: var(--Tight-colors-icon-base);
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1098
1207
|
.tsystem-c_typography\.intent\.success {
|
|
1099
1208
|
color: var(--Tight-colors-typography-intent-success);
|
|
1100
1209
|
}
|
|
@@ -1135,8 +1244,8 @@
|
|
|
1135
1244
|
background-color: yellow;
|
|
1136
1245
|
}
|
|
1137
1246
|
|
|
1138
|
-
.tsystem-
|
|
1139
|
-
|
|
1247
|
+
.tsystem-bg-c_border\.layout\.strong {
|
|
1248
|
+
background-color: var(--Tight-colors-border-layout-strong);
|
|
1140
1249
|
}
|
|
1141
1250
|
|
|
1142
1251
|
.tsystem-bg-c_surface\.elevated {
|
|
@@ -1155,10 +1264,6 @@
|
|
|
1155
1264
|
box-shadow: var(--Tight-shadows-box-shadow);
|
|
1156
1265
|
}
|
|
1157
1266
|
|
|
1158
|
-
.tsystem-flex-g_1 {
|
|
1159
|
-
flex-grow: 1;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
1267
|
.tsystem-op_0\.6 {
|
|
1163
1268
|
opacity: 0.6;
|
|
1164
1269
|
}
|
|
@@ -1167,18 +1272,10 @@
|
|
|
1167
1272
|
cursor: not-allowed;
|
|
1168
1273
|
}
|
|
1169
1274
|
|
|
1170
|
-
.tsystem-jc_end {
|
|
1171
|
-
justify-content: end;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
1275
|
.tsystem-jc_start {
|
|
1175
1276
|
justify-content: start;
|
|
1176
1277
|
}
|
|
1177
1278
|
|
|
1178
|
-
.tsystem-ai_start {
|
|
1179
|
-
align-items: start;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
1279
|
.tsystem-bdr-b_lg {
|
|
1183
1280
|
border-bottom-left-radius: var(--Tight-radii-lg);
|
|
1184
1281
|
border-bottom-right-radius: var(--Tight-radii-lg);
|
|
@@ -1193,10 +1290,6 @@
|
|
|
1193
1290
|
border-top-right-radius: var(--Tight-radii-lg);
|
|
1194
1291
|
}
|
|
1195
1292
|
|
|
1196
|
-
.tsystem-grid-tc_repeat\(1\,_400px\) {
|
|
1197
|
-
grid-template-columns: repeat(1, 400px);
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
1293
|
.tsystem-c_icon\.intent\.primary {
|
|
1201
1294
|
color: var(--Tight-colors-icon-intent-primary);
|
|
1202
1295
|
}
|
|
@@ -1205,48 +1298,52 @@
|
|
|
1205
1298
|
pointer-events: all;
|
|
1206
1299
|
}
|
|
1207
1300
|
|
|
1208
|
-
.tsystem-
|
|
1209
|
-
|
|
1301
|
+
.tsystem-fw_lg {
|
|
1302
|
+
font-weight: var(--Tight-fontWeights-lg);
|
|
1210
1303
|
}
|
|
1211
1304
|
|
|
1212
|
-
.tsystem-
|
|
1213
|
-
|
|
1305
|
+
.tsystem-ls_0\.84px {
|
|
1306
|
+
letter-spacing: 0.84px;
|
|
1214
1307
|
}
|
|
1215
1308
|
|
|
1216
|
-
.tsystem-
|
|
1217
|
-
line-height:
|
|
1309
|
+
.tsystem-lh_16px {
|
|
1310
|
+
line-height: 16px;
|
|
1218
1311
|
}
|
|
1219
1312
|
|
|
1220
|
-
.tsystem-
|
|
1221
|
-
|
|
1313
|
+
.tsystem-ff_label {
|
|
1314
|
+
font-family: var(--Tight-fonts-label);
|
|
1222
1315
|
}
|
|
1223
1316
|
|
|
1224
1317
|
.tsystem-fw_label {
|
|
1225
1318
|
font-weight: var(--Tight-fontWeights-label);
|
|
1226
1319
|
}
|
|
1227
1320
|
|
|
1228
|
-
.tsystem-
|
|
1229
|
-
font-size: var(--Tight-fontSizes-
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
.tsystem-ff_label {
|
|
1233
|
-
font-family: var(--Tight-fonts-label);
|
|
1321
|
+
.tsystem-fs_lg {
|
|
1322
|
+
font-size: var(--Tight-fontSizes-lg);
|
|
1234
1323
|
}
|
|
1235
1324
|
|
|
1236
|
-
.tsystem-
|
|
1237
|
-
|
|
1325
|
+
.tsystem-lh_18px {
|
|
1326
|
+
line-height: 18px;
|
|
1238
1327
|
}
|
|
1239
1328
|
|
|
1240
1329
|
.tsystem-c_typography\.label {
|
|
1241
1330
|
color: var(--Tight-colors-typography-label);
|
|
1242
1331
|
}
|
|
1243
1332
|
|
|
1244
|
-
.tsystem-
|
|
1245
|
-
|
|
1333
|
+
.tsystem-fw_label\.sub {
|
|
1334
|
+
font-weight: var(--Tight-fontWeights-label-sub);
|
|
1246
1335
|
}
|
|
1247
1336
|
|
|
1248
|
-
.tsystem-
|
|
1249
|
-
|
|
1337
|
+
.tsystem-c_typography\.label\.sub {
|
|
1338
|
+
color: var(--Tight-colors-typography-label-sub);
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.tsystem-c_typography\.accent\.danger {
|
|
1342
|
+
color: var(--Tight-colors-typography-accent-danger);
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.tsystem-c_typography\.accent\.action {
|
|
1346
|
+
color: var(--Tight-colors-typography-accent-action);
|
|
1250
1347
|
}
|
|
1251
1348
|
|
|
1252
1349
|
.tsystem-c_typography\.base\.weak {
|
|
@@ -1277,38 +1374,14 @@
|
|
|
1277
1374
|
font-weight: var(--Tight-fontWeights-body);
|
|
1278
1375
|
}
|
|
1279
1376
|
|
|
1280
|
-
.tsystem-fs_body {
|
|
1281
|
-
font-size: var(--Tight-fontSizes-body);
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
1377
|
.tsystem-ff_body {
|
|
1285
1378
|
font-family: var(--Tight-fonts-body);
|
|
1286
1379
|
}
|
|
1287
1380
|
|
|
1288
|
-
.tsystem-fw_label\.sub {
|
|
1289
|
-
font-weight: var(--Tight-fontWeights-label-sub);
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
.tsystem-fs_label\.sub {
|
|
1293
|
-
font-size: var(--Tight-fontSizes-label-sub);
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
.tsystem-c_typography\.label\.sub {
|
|
1297
|
-
color: var(--Tight-colors-typography-label-sub);
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
.tsystem-lh_14px {
|
|
1301
|
-
line-height: 14px;
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
1381
|
.tsystem-fw_label\.strong {
|
|
1305
1382
|
font-weight: var(--Tight-fontWeights-label-strong);
|
|
1306
1383
|
}
|
|
1307
1384
|
|
|
1308
|
-
.tsystem-fs_label\.strong {
|
|
1309
|
-
font-size: var(--Tight-fontSizes-label-strong);
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
1385
|
.tsystem-c_typography\.label\.strong {
|
|
1313
1386
|
color: var(--Tight-colors-typography-label-strong);
|
|
1314
1387
|
}
|
|
@@ -1317,15 +1390,19 @@
|
|
|
1317
1390
|
font-weight: var(--Tight-fontWeights-label-strongSub);
|
|
1318
1391
|
}
|
|
1319
1392
|
|
|
1320
|
-
.tsystem-fs_label\.strongSub {
|
|
1321
|
-
font-size: var(--Tight-fontSizes-label-strongSub);
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
1393
|
.tsystem-c_typography\.label\.strongSub {
|
|
1325
1394
|
color: var(--Tight-colors-typography-label-strongSub);
|
|
1326
1395
|
}
|
|
1327
1396
|
|
|
1328
|
-
.tsystem-
|
|
1397
|
+
.tsystem-fw_label\.emphasisSub {
|
|
1398
|
+
font-weight: var(--Tight-fontWeights-label-emphasisSub);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.tsystem-c_typography\.label\.emphasisSub {
|
|
1402
|
+
color: var(--Tight-colors-typography-label-emphasisSub);
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.tsystem-fw_heading {
|
|
1329
1406
|
font-weight: var(--Tight-fontWeights-heading);
|
|
1330
1407
|
}
|
|
1331
1408
|
|
|
@@ -1341,6 +1418,14 @@
|
|
|
1341
1418
|
color: var(--Tight-colors-typography-heading);
|
|
1342
1419
|
}
|
|
1343
1420
|
|
|
1421
|
+
.tsystem-lh_25px {
|
|
1422
|
+
line-height: 25px;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.tsystem-ls_2px {
|
|
1426
|
+
letter-spacing: 2px;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1344
1429
|
.tsystem-fw_metric\.sm {
|
|
1345
1430
|
font-weight: var(--Tight-fontWeights-metric-sm);
|
|
1346
1431
|
}
|
|
@@ -1439,12 +1524,8 @@
|
|
|
1439
1524
|
stroke: var(--Tight-colors-icon-base-weak);
|
|
1440
1525
|
}
|
|
1441
1526
|
|
|
1442
|
-
.tsystem-
|
|
1443
|
-
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
.tsystem-c_typography\.accent\.danger {
|
|
1447
|
-
color: var(--Tight-colors-typography-accent-danger);
|
|
1527
|
+
.tsystem-lh_14px {
|
|
1528
|
+
line-height: 14px;
|
|
1448
1529
|
}
|
|
1449
1530
|
|
|
1450
1531
|
.tsystem-c_icon\.accent\.danger {
|
|
@@ -1455,6 +1536,16 @@
|
|
|
1455
1536
|
background-color: var(--Tight-colors-brand-secondary);
|
|
1456
1537
|
}
|
|
1457
1538
|
|
|
1539
|
+
.tsystem-bdr-r_0 {
|
|
1540
|
+
border-top-right-radius: 0;
|
|
1541
|
+
border-bottom-right-radius: 0;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.tsystem-bdr-l_0 {
|
|
1545
|
+
border-top-left-radius: 0;
|
|
1546
|
+
border-bottom-left-radius: 0;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1458
1549
|
.tsystem-grid-tc_repeat\(7\,_1fr\) {
|
|
1459
1550
|
grid-template-columns: repeat(7, 1fr);
|
|
1460
1551
|
}
|
|
@@ -1516,6 +1607,10 @@
|
|
|
1516
1607
|
-webkit-appearance: none;
|
|
1517
1608
|
}
|
|
1518
1609
|
|
|
1610
|
+
.tsystem-fs_16px {
|
|
1611
|
+
font-size: 16px;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1519
1614
|
.tsystem-d_block {
|
|
1520
1615
|
display: block;
|
|
1521
1616
|
}
|
|
@@ -1528,10 +1623,6 @@
|
|
|
1528
1623
|
text-align: start;
|
|
1529
1624
|
}
|
|
1530
1625
|
|
|
1531
|
-
.tsystem-bd-be-w_var\(--thickness\) {
|
|
1532
|
-
border-block-end-width: var(--thickness);
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
1626
|
.tsystem-bg-c_money\.positive\.weak {
|
|
1536
1627
|
background-color: var(--Tight-colors-money-positive-weak);
|
|
1537
1628
|
}
|
|
@@ -1576,22 +1667,54 @@
|
|
|
1576
1667
|
color: var(--Tight-colors-inherit);
|
|
1577
1668
|
}
|
|
1578
1669
|
|
|
1579
|
-
.tsystem-
|
|
1580
|
-
|
|
1670
|
+
.tsystem-mt_15px {
|
|
1671
|
+
margin-top: 15px;
|
|
1581
1672
|
}
|
|
1582
1673
|
|
|
1583
|
-
.tsystem-
|
|
1584
|
-
|
|
1674
|
+
.tsystem-ov-y_auto {
|
|
1675
|
+
overflow-y: auto;
|
|
1585
1676
|
}
|
|
1586
1677
|
|
|
1587
|
-
.tsystem-
|
|
1588
|
-
|
|
1678
|
+
.tsystem-pt_20px {
|
|
1679
|
+
padding-top: 20px;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.tsystem-pb_20px {
|
|
1683
|
+
padding-bottom: 20px;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
.tsystem-bottom_0 {
|
|
1687
|
+
bottom: 0;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
.tsystem-pb_14px {
|
|
1691
|
+
padding-bottom: 14px;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.tsystem-pl_15px {
|
|
1695
|
+
padding-left: 15px;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.tsystem-pr_15px {
|
|
1699
|
+
padding-right: 15px;
|
|
1589
1700
|
}
|
|
1590
1701
|
|
|
1591
1702
|
.tsystem-w_100\% {
|
|
1592
1703
|
width: 100%;
|
|
1593
1704
|
}
|
|
1594
1705
|
|
|
1706
|
+
.tsystem-w_202px {
|
|
1707
|
+
width: 202px;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.tsystem-min-w_300px {
|
|
1711
|
+
min-width: 300px;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.tsystem-min-w_200px {
|
|
1715
|
+
min-width: 200px;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1595
1718
|
.tsystem-h_72 {
|
|
1596
1719
|
height: 72px;
|
|
1597
1720
|
}
|
|
@@ -1632,14 +1755,6 @@
|
|
|
1632
1755
|
height: auto;
|
|
1633
1756
|
}
|
|
1634
1757
|
|
|
1635
|
-
.tsystem-max-h_100\% {
|
|
1636
|
-
max-height: 100%;
|
|
1637
|
-
}
|
|
1638
|
-
|
|
1639
|
-
.tsystem-w_512px {
|
|
1640
|
-
width: 512px;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
1758
|
.tsystem-mb_18px {
|
|
1644
1759
|
margin-bottom: 18px;
|
|
1645
1760
|
}
|
|
@@ -1664,6 +1779,38 @@
|
|
|
1664
1779
|
min-height: 1px;
|
|
1665
1780
|
}
|
|
1666
1781
|
|
|
1782
|
+
.tsystem-w_lg {
|
|
1783
|
+
width: lg;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.tsystem-h_lg {
|
|
1787
|
+
height: lg;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.tsystem-w_md {
|
|
1791
|
+
width: md;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.tsystem-h_xl {
|
|
1795
|
+
height: xl;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.tsystem-pl_16 {
|
|
1799
|
+
padding-left: 16px;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.tsystem-pr_16 {
|
|
1803
|
+
padding-right: 16px;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.tsystem-border-bottom-style_solid {
|
|
1807
|
+
border-bottom-style: solid;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.tsystem-max-h_0 {
|
|
1811
|
+
max-height: 0;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1667
1814
|
.tsystem-min-h_\{borderWidths\.lg\} {
|
|
1668
1815
|
min-height: var(--Tight-borderWidths-lg);
|
|
1669
1816
|
}
|
|
@@ -1700,14 +1847,30 @@
|
|
|
1700
1847
|
top: 0;
|
|
1701
1848
|
}
|
|
1702
1849
|
|
|
1703
|
-
.tsystem-min-w_fit-content {
|
|
1704
|
-
min-width: fit-content;
|
|
1705
|
-
}
|
|
1706
|
-
|
|
1707
1850
|
.tsystem-left_0 {
|
|
1708
1851
|
left: 0;
|
|
1709
1852
|
}
|
|
1710
1853
|
|
|
1854
|
+
.tsystem-max-h_100\% {
|
|
1855
|
+
max-height: 100%;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.tsystem-min-w_100\% {
|
|
1859
|
+
min-width: 100%;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.tsystem-w_0 {
|
|
1863
|
+
width: 0;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.tsystem-h_0 {
|
|
1867
|
+
height: 0;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.tsystem-max-w_0 {
|
|
1871
|
+
max-width: 0;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1711
1874
|
.tsystem-w_100dvw {
|
|
1712
1875
|
width: 100dvw;
|
|
1713
1876
|
}
|
|
@@ -1748,10 +1911,6 @@
|
|
|
1748
1911
|
height: 15px;
|
|
1749
1912
|
}
|
|
1750
1913
|
|
|
1751
|
-
.tsystem-min-w_100\% {
|
|
1752
|
-
min-width: 100%;
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1755
1914
|
.tsystem-w_\{borderWidths\.md\} {
|
|
1756
1915
|
width: var(--Tight-borderWidths-md);
|
|
1757
1916
|
}
|
|
@@ -1768,12 +1927,56 @@
|
|
|
1768
1927
|
min-height: var(--Tight-borderWidths-md);
|
|
1769
1928
|
}
|
|
1770
1929
|
|
|
1930
|
+
.tsystem-w_30px {
|
|
1931
|
+
width: 30px;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
.tsystem-w_60px {
|
|
1935
|
+
width: 60px;
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
.tsystem-w_120px {
|
|
1939
|
+
width: 120px;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.tsystem-w_240px {
|
|
1943
|
+
width: 240px;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.tsystem-w_420px {
|
|
1947
|
+
width: 420px;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.tsystem-h_5px {
|
|
1951
|
+
height: 5px;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.tsystem-h_10px {
|
|
1955
|
+
height: 10px;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
.tsystem-h_40px {
|
|
1959
|
+
height: 40px;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.tsystem-h_80px {
|
|
1963
|
+
height: 80px;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1771
1966
|
.tsystem-w_max-content {
|
|
1772
1967
|
width: max-content;
|
|
1773
1968
|
}
|
|
1774
1969
|
|
|
1775
|
-
.tsystem-
|
|
1776
|
-
height:
|
|
1970
|
+
.tsystem-h_50px {
|
|
1971
|
+
height: 50px;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.tsystem-min-w_fit-content {
|
|
1975
|
+
min-width: fit-content;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.tsystem-h_85px {
|
|
1979
|
+
height: 85px;
|
|
1777
1980
|
}
|
|
1778
1981
|
|
|
1779
1982
|
.tsystem-h_60px {
|
|
@@ -1848,22 +2051,10 @@
|
|
|
1848
2051
|
min-height: 65px;
|
|
1849
2052
|
}
|
|
1850
2053
|
|
|
1851
|
-
.tsystem-mb_16px {
|
|
1852
|
-
margin-bottom: 16px;
|
|
1853
|
-
}
|
|
1854
|
-
|
|
1855
|
-
.tsystem-bottom_0 {
|
|
1856
|
-
bottom: 0;
|
|
1857
|
-
}
|
|
1858
|
-
|
|
1859
2054
|
.tsystem-h_250px {
|
|
1860
2055
|
height: 250px;
|
|
1861
2056
|
}
|
|
1862
2057
|
|
|
1863
|
-
.tsystem-pb_20px {
|
|
1864
|
-
padding-bottom: 20px;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
2058
|
.tsystem-bottom_-25px {
|
|
1868
2059
|
bottom: -25px;
|
|
1869
2060
|
}
|
|
@@ -1888,14 +2079,6 @@
|
|
|
1888
2079
|
height: 80px;
|
|
1889
2080
|
}
|
|
1890
2081
|
|
|
1891
|
-
.tsystem-pl_15px {
|
|
1892
|
-
padding-left: 15px;
|
|
1893
|
-
}
|
|
1894
|
-
|
|
1895
|
-
.tsystem-pr_15px {
|
|
1896
|
-
padding-right: 15px;
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
2082
|
.tsystem-pl_20px {
|
|
1900
2083
|
padding-left: 20px;
|
|
1901
2084
|
}
|
|
@@ -1920,6 +2103,10 @@
|
|
|
1920
2103
|
height: 10px;
|
|
1921
2104
|
}
|
|
1922
2105
|
|
|
2106
|
+
.tsystem-h_35px {
|
|
2107
|
+
height: 35px;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
1923
2110
|
.tsystem-w_17px {
|
|
1924
2111
|
width: 17px;
|
|
1925
2112
|
}
|
|
@@ -1964,6 +2151,10 @@
|
|
|
1964
2151
|
margin-right: 15px;
|
|
1965
2152
|
}
|
|
1966
2153
|
|
|
2154
|
+
.tsystem-w_512px {
|
|
2155
|
+
width: 512px;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
1967
2158
|
.tsystem-max-w_1 {
|
|
1968
2159
|
max-width: 1px;
|
|
1969
2160
|
}
|
|
@@ -1988,10 +2179,6 @@
|
|
|
1988
2179
|
height: 16px;
|
|
1989
2180
|
}
|
|
1990
2181
|
|
|
1991
|
-
.tsystem-h_50px {
|
|
1992
|
-
height: 50px;
|
|
1993
|
-
}
|
|
1994
|
-
|
|
1995
2182
|
.tsystem-h_52px {
|
|
1996
2183
|
height: 52px;
|
|
1997
2184
|
}
|
|
@@ -2008,6 +2195,10 @@
|
|
|
2008
2195
|
width: 100px;
|
|
2009
2196
|
}
|
|
2010
2197
|
|
|
2198
|
+
.tsystem-w_75px {
|
|
2199
|
+
width: 75px;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2011
2202
|
.tsystem-h_55px {
|
|
2012
2203
|
height: 55px;
|
|
2013
2204
|
}
|
|
@@ -2016,10 +2207,6 @@
|
|
|
2016
2207
|
min-height: 55px;
|
|
2017
2208
|
}
|
|
2018
2209
|
|
|
2019
|
-
.tsystem-h_1px {
|
|
2020
|
-
height: 1px;
|
|
2021
|
-
}
|
|
2022
|
-
|
|
2023
2210
|
.tsystem-mb_30px {
|
|
2024
2211
|
margin-bottom: 30px;
|
|
2025
2212
|
}
|
|
@@ -2036,10 +2223,6 @@
|
|
|
2036
2223
|
max-height: 200px;
|
|
2037
2224
|
}
|
|
2038
2225
|
|
|
2039
|
-
.tsystem-ov-y_auto {
|
|
2040
|
-
overflow-y: auto;
|
|
2041
|
-
}
|
|
2042
|
-
|
|
2043
2226
|
.tsystem-min-w_120px {
|
|
2044
2227
|
min-width: 120px;
|
|
2045
2228
|
}
|
|
@@ -2080,12 +2263,12 @@
|
|
|
2080
2263
|
padding-right: 10px;
|
|
2081
2264
|
}
|
|
2082
2265
|
|
|
2083
|
-
.tsystem-
|
|
2084
|
-
padding-top:
|
|
2266
|
+
.tsystem-pt_4px {
|
|
2267
|
+
padding-top: 4px;
|
|
2085
2268
|
}
|
|
2086
2269
|
|
|
2087
|
-
.tsystem-
|
|
2088
|
-
padding-bottom:
|
|
2270
|
+
.tsystem-pb_4px {
|
|
2271
|
+
padding-bottom: 4px;
|
|
2089
2272
|
}
|
|
2090
2273
|
|
|
2091
2274
|
.tsystem-pl_25px {
|
|
@@ -2168,6 +2351,10 @@
|
|
|
2168
2351
|
padding-top: 10px;
|
|
2169
2352
|
}
|
|
2170
2353
|
|
|
2354
|
+
.tsystem-pb_8px {
|
|
2355
|
+
padding-bottom: 8px;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2171
2358
|
.tsystem-max-w_fit-content {
|
|
2172
2359
|
max-width: fit-content;
|
|
2173
2360
|
}
|
|
@@ -2184,6 +2371,10 @@
|
|
|
2184
2371
|
width: 1px;
|
|
2185
2372
|
}
|
|
2186
2373
|
|
|
2374
|
+
.tsystem-h_1px {
|
|
2375
|
+
height: 1px;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2187
2378
|
.tsystem-ml_auto {
|
|
2188
2379
|
margin-left: auto;
|
|
2189
2380
|
}
|
|
@@ -2200,10 +2391,22 @@
|
|
|
2200
2391
|
transition: stroke 300ms ease-out;
|
|
2201
2392
|
}
|
|
2202
2393
|
|
|
2394
|
+
.\[\&\[data-open\=\'true\'\]\]\:tsystem-bd-w_lg[data-open='true'] {
|
|
2395
|
+
border-width: var(--Tight-borderWidths-lg);
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
.\[\&\[data-open\=\'true\'\]\]\:tsystem-ov_scroll[data-open='true'] {
|
|
2399
|
+
overflow: scroll;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2203
2402
|
.\[\&_\.Tight-text\:\:after\]\:tsystem-trs_width_100ms_ease-out .Tight-text::after {
|
|
2204
2403
|
transition: width 100ms ease-out;
|
|
2205
2404
|
}
|
|
2206
2405
|
|
|
2406
|
+
.\[\&\[data-state\=\'open\'\]_\>_\.Tight-text\:\:after\]\:tsystem-trs_width_300ms_ease-out[data-state='open'] > .Tight-text::after {
|
|
2407
|
+
transition: width 300ms ease-out;
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2207
2410
|
.\[\&\[data-haserror\=\'true\'\]\]\:tsystem-bd-c_border\.intent\.danger[data-haserror='true'] {
|
|
2208
2411
|
border-color: var(--Tight-colors-border-intent-danger);
|
|
2209
2412
|
}
|
|
@@ -2397,14 +2600,6 @@
|
|
|
2397
2600
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
2398
2601
|
}
|
|
2399
2602
|
|
|
2400
|
-
.\[\&_\>_\.Tight-text\]\:tsystem-c_typography\.intent\.action > .Tight-text {
|
|
2401
|
-
color: var(--Tight-colors-typography-intent-action);
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
|
-
.\[\&_\>_\.Tight-text\]\:tsystem-c_typography\.intent\.action\.active > .Tight-text {
|
|
2405
|
-
color: var(--Tight-colors-typography-intent-action-active);
|
|
2406
|
-
}
|
|
2407
|
-
|
|
2408
2603
|
.\[\&\[data-active\=\'true\'\]\]\:tsystem-bg-c_surface\.intent\.action\.discrete\.active[data-active='true'] {
|
|
2409
2604
|
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
2410
2605
|
}
|
|
@@ -2417,6 +2612,18 @@
|
|
|
2417
2612
|
color: var(--Tight-colors-inherit);
|
|
2418
2613
|
}
|
|
2419
2614
|
|
|
2615
|
+
.\[\&\[data-open\=\'true\'\]\]\:tsystem-max-h_1\/3[data-open='true'] {
|
|
2616
|
+
max-height: 33.333333%;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
.\[\&\[data-open\=\'true\'\]\]\:tsystem-pt_16[data-open='true'] {
|
|
2620
|
+
padding-top: 16px;
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2623
|
+
.\[\&\[data-open\=\'true\'\]\]\:tsystem-pb_16[data-open='true'] {
|
|
2624
|
+
padding-bottom: 16px;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2420
2627
|
.\[\&\:\:before\]\:tsystem-top_-11px::before {
|
|
2421
2628
|
top: -11px;
|
|
2422
2629
|
}
|
|
@@ -2449,6 +2656,10 @@
|
|
|
2449
2656
|
height: 1px;
|
|
2450
2657
|
}
|
|
2451
2658
|
|
|
2659
|
+
.\[\&\[data-state\=\'open\'\]_\>_\.Tight-text\:\:after\]\:tsystem-w_100\%[data-state='open'] > .Tight-text::after {
|
|
2660
|
+
width: 100%;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2452
2663
|
.\[\&\:\:before\]\:tsystem-top_-10px::before {
|
|
2453
2664
|
top: -10px;
|
|
2454
2665
|
}
|
|
@@ -2518,14 +2729,6 @@
|
|
|
2518
2729
|
cursor: text;
|
|
2519
2730
|
}
|
|
2520
2731
|
|
|
2521
|
-
.\[\&\[data-state\=\'closed\'\]\[data-disablehover\=\'false\'\]\:hover\,_\&\:not\(\[data-state\]\)\[data-disablehover\=\'false\'\]\:hover\:not\(\:focus-within\)\]\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover[data-state='closed'][data-disablehover='false']:hover,.\[\&\[data-state\=\'closed\'\]\[data-disablehover\=\'false\'\]\:hover\,_\&\:not\(\[data-state\]\)\[data-disablehover\=\'false\'\]\:hover\:not\(\:focus-within\)\]\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:not([data-state])[data-disablehover='false']:hover:not(:focus-within) {
|
|
2522
|
-
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
2523
|
-
}
|
|
2524
|
-
|
|
2525
|
-
.\[\&\:hover\:not\(\:focus-within\)\]\:tsystem-c_typography\.intent\.action\.hover:hover:not(:focus-within) {
|
|
2526
|
-
color: var(--Tight-colors-typography-intent-action-hover);
|
|
2527
|
-
}
|
|
2528
|
-
|
|
2529
2732
|
.\[\&\[data-clicked\=\'true\'\]\:focus-within\]\:tsystem-ring-o_2px[data-clicked='true']:focus-within {
|
|
2530
2733
|
outline-offset: 2px;
|
|
2531
2734
|
}
|
|
@@ -2534,23 +2737,23 @@
|
|
|
2534
2737
|
outline-color: var(--Tight-colors-border-layout-strong);
|
|
2535
2738
|
}
|
|
2536
2739
|
|
|
2537
|
-
.\[\&\:
|
|
2740
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.secondary\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.secondary\.hover[data-state='open'] {
|
|
2538
2741
|
background: var(--Tight-colors-surface-intent-secondary-hover);
|
|
2539
2742
|
}
|
|
2540
2743
|
|
|
2541
|
-
.\[\&\:
|
|
2744
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.action\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.action\.hover[data-state='open'] {
|
|
2542
2745
|
background: var(--Tight-colors-surface-intent-action-hover);
|
|
2543
2746
|
}
|
|
2544
2747
|
|
|
2545
|
-
.\[\&\:
|
|
2748
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.success\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.success\.hover[data-state='open'] {
|
|
2546
2749
|
background: var(--Tight-colors-surface-intent-success-hover);
|
|
2547
2750
|
}
|
|
2548
2751
|
|
|
2549
|
-
.\[\&\:
|
|
2752
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.warning\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.warning\.hover[data-state='open'] {
|
|
2550
2753
|
background: var(--Tight-colors-surface-intent-warning-hover);
|
|
2551
2754
|
}
|
|
2552
2755
|
|
|
2553
|
-
.\[\&\:
|
|
2756
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.danger\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bg_surface\.intent\.danger\.hover[data-state='open'] {
|
|
2554
2757
|
background: var(--Tight-colors-surface-intent-danger-hover);
|
|
2555
2758
|
}
|
|
2556
2759
|
|
|
@@ -2568,23 +2771,23 @@
|
|
|
2568
2771
|
outline-offset: 2px;
|
|
2569
2772
|
}
|
|
2570
2773
|
|
|
2571
|
-
.\[\&\:
|
|
2774
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.secondary\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.secondary\.hover[data-state='open'] {
|
|
2572
2775
|
border-color: var(--Tight-colors-border-intent-secondary-hover);
|
|
2573
2776
|
}
|
|
2574
2777
|
|
|
2575
|
-
.\[\&\:
|
|
2778
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.action\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.action\.hover[data-state='open'] {
|
|
2576
2779
|
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
2577
2780
|
}
|
|
2578
2781
|
|
|
2579
|
-
.\[\&\:
|
|
2782
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.success\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.success\.hover[data-state='open'] {
|
|
2580
2783
|
border-color: var(--Tight-colors-border-intent-success-hover);
|
|
2581
2784
|
}
|
|
2582
2785
|
|
|
2583
|
-
.\[\&\:
|
|
2786
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.warning\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.warning\.hover[data-state='open'] {
|
|
2584
2787
|
border-color: var(--Tight-colors-border-intent-warning-hover);
|
|
2585
2788
|
}
|
|
2586
2789
|
|
|
2587
|
-
.\[\&\:
|
|
2790
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.danger\.hover:focus-visible,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:tsystem-bd-c_border\.intent\.danger\.hover[data-state='open'] {
|
|
2588
2791
|
border-color: var(--Tight-colors-border-intent-danger-hover);
|
|
2589
2792
|
}
|
|
2590
2793
|
|
|
@@ -2604,11 +2807,15 @@
|
|
|
2604
2807
|
outline: 4px solid;
|
|
2605
2808
|
}
|
|
2606
2809
|
|
|
2607
|
-
|
|
2810
|
+
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
2608
2811
|
outline: 4px solid;
|
|
2609
2812
|
}
|
|
2610
2813
|
|
|
2611
|
-
.\[\&\:focus-visible\]\:tsystem-
|
|
2814
|
+
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring_4px_solid:has(button:focus-visible) {
|
|
2815
|
+
outline: 4px solid;
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
.focusVisible\:tsystem-bdr_sm:is(:focus-visible, [data-focus-visible]) {
|
|
2612
2819
|
border-radius: var(--Tight-radii-sm);
|
|
2613
2820
|
}
|
|
2614
2821
|
|
|
@@ -2652,11 +2859,15 @@
|
|
|
2652
2859
|
z-index: 1;
|
|
2653
2860
|
}
|
|
2654
2861
|
|
|
2655
|
-
|
|
2656
|
-
|
|
2862
|
+
.focusVisible\:tsystem-ring-o_-2px:is(:focus-visible, [data-focus-visible]) {
|
|
2863
|
+
outline-offset: -2px;
|
|
2657
2864
|
}
|
|
2658
2865
|
|
|
2659
|
-
|
|
2866
|
+
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
2867
|
+
outline-color: var(--Tight-colors-border-layout);
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring-c_border\.layout:has(button:focus-visible) {
|
|
2660
2871
|
outline-color: var(--Tight-colors-border-layout);
|
|
2661
2872
|
}
|
|
2662
2873
|
|
|
@@ -2684,291 +2895,513 @@
|
|
|
2684
2895
|
bottom: 0;
|
|
2685
2896
|
}
|
|
2686
2897
|
|
|
2687
|
-
.\[\&\:
|
|
2688
|
-
border: var(--Tight-
|
|
2898
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.action\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.action\.active[data-active='true']:enabled {
|
|
2899
|
+
border-color: var(--Tight-colors-border-intent-action-active);
|
|
2689
2900
|
}
|
|
2690
2901
|
|
|
2691
|
-
.\[\&\:
|
|
2692
|
-
border-color: var(--Tight-colors-border-
|
|
2902
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.danger\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.danger\.active[data-active='true']:enabled {
|
|
2903
|
+
border-color: var(--Tight-colors-border-intent-danger-active);
|
|
2693
2904
|
}
|
|
2694
2905
|
|
|
2695
|
-
.\[\&\:
|
|
2696
|
-
|
|
2906
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_transparent:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_transparent[data-active='true']:enabled {
|
|
2907
|
+
border-color: var(--Tight-colors-transparent);
|
|
2697
2908
|
}
|
|
2698
2909
|
|
|
2699
|
-
.\[\&\:
|
|
2700
|
-
|
|
2910
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.primary\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.primary\.active[data-active='true']:enabled {
|
|
2911
|
+
border-color: var(--Tight-colors-border-intent-primary-active);
|
|
2701
2912
|
}
|
|
2702
2913
|
|
|
2703
|
-
.\[\&\:
|
|
2704
|
-
|
|
2914
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.success\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.success\.active[data-active='true']:enabled {
|
|
2915
|
+
border-color: var(--Tight-colors-border-intent-success-active);
|
|
2705
2916
|
}
|
|
2706
2917
|
|
|
2707
|
-
.\[\&\:
|
|
2708
|
-
|
|
2918
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.warning\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bd-c_border\.intent\.warning\.active[data-active='true']:enabled {
|
|
2919
|
+
border-color: var(--Tight-colors-border-intent-warning-active);
|
|
2709
2920
|
}
|
|
2710
2921
|
|
|
2711
|
-
.\[\&\:
|
|
2712
|
-
|
|
2922
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.action\.discrete\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.action\.discrete\.active[data-active='true']:enabled {
|
|
2923
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
2713
2924
|
}
|
|
2714
2925
|
|
|
2715
|
-
.\[\&\:
|
|
2716
|
-
|
|
2926
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.action\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.action\.active[data-active='true']:enabled {
|
|
2927
|
+
background-color: var(--Tight-colors-surface-intent-action-active);
|
|
2717
2928
|
}
|
|
2718
2929
|
|
|
2719
|
-
.\[\&\:enabled\:
|
|
2720
|
-
|
|
2930
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.danger\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.danger\.active[data-active='true']:enabled {
|
|
2931
|
+
background-color: var(--Tight-colors-surface-intent-danger-active);
|
|
2721
2932
|
}
|
|
2722
2933
|
|
|
2723
|
-
.\[\&\:
|
|
2724
|
-
|
|
2934
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-c_icon\.intent\.action\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-c_icon\.intent\.action\.active[data-active='true']:enabled {
|
|
2935
|
+
color: var(--Tight-colors-icon-intent-action-active);
|
|
2725
2936
|
}
|
|
2726
2937
|
|
|
2727
|
-
.\[\&\:
|
|
2728
|
-
|
|
2938
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-fill_icon\.intent\.action\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-fill_icon\.intent\.action\.active[data-active='true']:enabled {
|
|
2939
|
+
fill: var(--Tight-colors-icon-intent-action-active);
|
|
2729
2940
|
}
|
|
2730
2941
|
|
|
2731
|
-
.\[\&\:
|
|
2732
|
-
|
|
2942
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.primary\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.primary\.active[data-active='true']:enabled {
|
|
2943
|
+
background-color: var(--Tight-colors-surface-intent-primary-active);
|
|
2733
2944
|
}
|
|
2734
2945
|
|
|
2735
|
-
.\[\&\:
|
|
2736
|
-
|
|
2946
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.success\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.success\.active[data-active='true']:enabled {
|
|
2947
|
+
background-color: var(--Tight-colors-surface-intent-success-active);
|
|
2737
2948
|
}
|
|
2738
2949
|
|
|
2739
|
-
.\[\&\:
|
|
2740
|
-
|
|
2950
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.warning\.active:active:enabled,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-bg-c_surface\.intent\.warning\.active[data-active='true']:enabled {
|
|
2951
|
+
background-color: var(--Tight-colors-surface-intent-warning-active);
|
|
2741
2952
|
}
|
|
2742
2953
|
|
|
2743
|
-
.\[\&\:
|
|
2744
|
-
|
|
2954
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover[data-state='open'] .Tight-sub-label {
|
|
2955
|
+
color: var(--Tight-colors-typography-intent-secondary-hover);
|
|
2745
2956
|
}
|
|
2746
2957
|
|
|
2747
|
-
.\[\&\:
|
|
2748
|
-
|
|
2958
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.secondary\.hover:focus-visible .Tight-medium-icon > path,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.secondary\.hover[data-state='open'] .Tight-medium-icon > path {
|
|
2959
|
+
stroke: var(--Tight-colors-icon-intent-secondary-hover);
|
|
2749
2960
|
}
|
|
2750
2961
|
|
|
2751
|
-
.\[\&\:
|
|
2752
|
-
|
|
2962
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.action\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.action\.hover[data-state='open'] .Tight-sub-label {
|
|
2963
|
+
color: var(--Tight-colors-typography-intent-action-hover);
|
|
2753
2964
|
}
|
|
2754
2965
|
|
|
2755
|
-
.\[\&\:
|
|
2756
|
-
|
|
2966
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.action\.hover:focus-visible .Tight-medium-icon > path,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.action\.hover[data-state='open'] .Tight-medium-icon > path {
|
|
2967
|
+
stroke: var(--Tight-colors-icon-intent-action-hover);
|
|
2757
2968
|
}
|
|
2758
2969
|
|
|
2759
|
-
.\[\&\:
|
|
2760
|
-
|
|
2970
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.success\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.success\.hover[data-state='open'] .Tight-sub-label {
|
|
2971
|
+
color: var(--Tight-colors-typography-intent-success-hover);
|
|
2761
2972
|
}
|
|
2762
2973
|
|
|
2763
|
-
.\[\&\:
|
|
2764
|
-
|
|
2974
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.success\.hover:focus-visible .Tight-medium-icon > path,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.success\.hover[data-state='open'] .Tight-medium-icon > path {
|
|
2975
|
+
stroke: var(--Tight-colors-icon-intent-success-hover);
|
|
2765
2976
|
}
|
|
2766
2977
|
|
|
2767
|
-
.\[\&\:
|
|
2768
|
-
|
|
2978
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.warning\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.warning\.hover[data-state='open'] .Tight-sub-label {
|
|
2979
|
+
color: var(--Tight-colors-typography-intent-warning-hover);
|
|
2769
2980
|
}
|
|
2770
2981
|
|
|
2771
|
-
.\[\&\:
|
|
2772
|
-
|
|
2982
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.warning\.hover:focus-visible .Tight-medium-icon > path,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.warning\.hover[data-state='open'] .Tight-medium-icon > path {
|
|
2983
|
+
stroke: var(--Tight-colors-icon-intent-warning-hover);
|
|
2773
2984
|
}
|
|
2774
2985
|
|
|
2775
|
-
.\[\&\[data-
|
|
2776
|
-
|
|
2986
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.danger\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.danger\.hover[data-state='open'] .Tight-sub-label {
|
|
2987
|
+
color: var(--Tight-colors-typography-intent-danger-hover);
|
|
2777
2988
|
}
|
|
2778
2989
|
|
|
2779
|
-
.\[\&\:
|
|
2780
|
-
|
|
2990
|
+
.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.danger\.hover:focus-visible .Tight-medium-icon > path,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.danger\.hover[data-state='open'] .Tight-medium-icon > path {
|
|
2991
|
+
stroke: var(--Tight-colors-icon-intent-danger-hover);
|
|
2781
2992
|
}
|
|
2782
2993
|
|
|
2783
|
-
.\[\&\:
|
|
2784
|
-
color: var(--Tight-colors-typography-intent-
|
|
2994
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.secondary\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.secondary\.active[data-active='true']:enabled .Tight-text {
|
|
2995
|
+
color: var(--Tight-colors-typography-intent-secondary-active);
|
|
2785
2996
|
}
|
|
2786
2997
|
|
|
2787
|
-
.\[\&\:
|
|
2788
|
-
|
|
2998
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.action\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.action\.active[data-active='true']:enabled .Tight-text {
|
|
2999
|
+
color: var(--Tight-colors-typography-intent-action-active);
|
|
2789
3000
|
}
|
|
2790
3001
|
|
|
2791
|
-
.\[\&\:
|
|
2792
|
-
color: var(--Tight-colors-typography-
|
|
3002
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.danger\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.danger\.active[data-active='true']:enabled .Tight-text {
|
|
3003
|
+
color: var(--Tight-colors-typography-intent-danger-active);
|
|
2793
3004
|
}
|
|
2794
3005
|
|
|
2795
|
-
.\[\&\:
|
|
2796
|
-
color: var(--Tight-colors-typography-intent-
|
|
3006
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.primary\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.primary\.active[data-active='true']:enabled .Tight-text {
|
|
3007
|
+
color: var(--Tight-colors-typography-intent-primary-active);
|
|
2797
3008
|
}
|
|
2798
3009
|
|
|
2799
|
-
.\[\&\:
|
|
2800
|
-
stroke: var(--Tight-colors-
|
|
3010
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_path\]\:tsystem-stk_icon\.intent\.primary\.active:active:enabled path,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_path\]\:tsystem-stk_icon\.intent\.primary\.active[data-active='true']:enabled path {
|
|
3011
|
+
stroke: var(--Tight-colors-icon-intent-primary-active);
|
|
2801
3012
|
}
|
|
2802
3013
|
|
|
2803
|
-
.\[\&\:
|
|
2804
|
-
|
|
3014
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.success\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.success\.active[data-active='true']:enabled .Tight-text {
|
|
3015
|
+
color: var(--Tight-colors-typography-intent-success-active);
|
|
2805
3016
|
}
|
|
2806
3017
|
|
|
2807
|
-
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-
|
|
2808
|
-
|
|
3018
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_path\]\:tsystem-stk_icon\.intent\.success\.active:active:enabled path,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_path\]\:tsystem-stk_icon\.intent\.success\.active[data-active='true']:enabled path {
|
|
3019
|
+
stroke: var(--Tight-colors-icon-intent-success-active);
|
|
2809
3020
|
}
|
|
2810
3021
|
|
|
2811
|
-
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:tsystem-
|
|
2812
|
-
|
|
3022
|
+
.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.warning\.active:active:enabled .Tight-text,.\[\&\:active\:enabled\,_\&\[data-active\=\'true\'\]\:enabled\]\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.warning\.active[data-active='true']:enabled .Tight-text {
|
|
3023
|
+
color: var(--Tight-colors-typography-intent-warning-active);
|
|
2813
3024
|
}
|
|
2814
3025
|
|
|
2815
|
-
.\[\&\:
|
|
2816
|
-
|
|
3026
|
+
.\[\&\:hover\]\:\[\&_svg\]\:\[\&_path\]\:tsystem-stk_icon\.accent\.danger:hover svg path {
|
|
3027
|
+
stroke: var(--Tight-colors-icon-accent-danger);
|
|
2817
3028
|
}
|
|
2818
3029
|
|
|
2819
|
-
|
|
2820
|
-
|
|
3030
|
+
@media screen and (min-width: 40rem) {
|
|
3031
|
+
.sm\:tsystem-p_4px {
|
|
3032
|
+
padding: 4px;
|
|
2821
3033
|
}
|
|
2822
3034
|
|
|
2823
|
-
|
|
2824
|
-
|
|
3035
|
+
.sm\:tsystem-gap_0 {
|
|
3036
|
+
gap: 0;
|
|
2825
3037
|
}
|
|
2826
3038
|
|
|
2827
|
-
|
|
2828
|
-
|
|
3039
|
+
.sm\:tsystem-flex-d_row {
|
|
3040
|
+
flex-direction: row;
|
|
2829
3041
|
}
|
|
2830
3042
|
|
|
2831
|
-
|
|
2832
|
-
|
|
3043
|
+
.sm\:tsystem-ai_center {
|
|
3044
|
+
align-items: center;
|
|
2833
3045
|
}
|
|
2834
3046
|
|
|
2835
|
-
|
|
2836
|
-
|
|
3047
|
+
.sm\:tsystem-fs_label {
|
|
3048
|
+
font-size: var(--Tight-fontSizes-label);
|
|
2837
3049
|
}
|
|
2838
3050
|
|
|
2839
|
-
|
|
2840
|
-
|
|
3051
|
+
.sm\:tsystem-lh_16px {
|
|
3052
|
+
line-height: 16px;
|
|
2841
3053
|
}
|
|
2842
3054
|
|
|
2843
|
-
|
|
2844
|
-
|
|
3055
|
+
.sm\:tsystem-fs_label\.sub {
|
|
3056
|
+
font-size: var(--Tight-fontSizes-label-sub);
|
|
2845
3057
|
}
|
|
2846
3058
|
|
|
2847
|
-
|
|
2848
|
-
|
|
3059
|
+
.sm\:tsystem-lh_14px {
|
|
3060
|
+
line-height: 14px;
|
|
2849
3061
|
}
|
|
2850
3062
|
|
|
2851
|
-
|
|
2852
|
-
|
|
3063
|
+
.sm\:tsystem-fs_sm {
|
|
3064
|
+
font-size: var(--Tight-fontSizes-sm);
|
|
2853
3065
|
}
|
|
2854
3066
|
|
|
2855
|
-
|
|
2856
|
-
|
|
3067
|
+
.sm\:tsystem-fs_md {
|
|
3068
|
+
font-size: var(--Tight-fontSizes-md);
|
|
2857
3069
|
}
|
|
2858
3070
|
|
|
2859
|
-
|
|
2860
|
-
|
|
3071
|
+
.sm\:tsystem-fs_body {
|
|
3072
|
+
font-size: var(--Tight-fontSizes-body);
|
|
2861
3073
|
}
|
|
2862
3074
|
|
|
2863
|
-
|
|
2864
|
-
|
|
3075
|
+
.sm\:tsystem-fs_label\.strong {
|
|
3076
|
+
font-size: var(--Tight-fontSizes-label-strong);
|
|
2865
3077
|
}
|
|
2866
3078
|
|
|
2867
|
-
|
|
2868
|
-
|
|
3079
|
+
.sm\:tsystem-fs_label\.strongSub {
|
|
3080
|
+
font-size: var(--Tight-fontSizes-label-strongSub);
|
|
2869
3081
|
}
|
|
2870
3082
|
|
|
2871
|
-
|
|
2872
|
-
|
|
3083
|
+
.sm\:tsystem-left_auto {
|
|
3084
|
+
left: auto;
|
|
2873
3085
|
}
|
|
2874
3086
|
|
|
2875
|
-
|
|
2876
|
-
|
|
3087
|
+
.sm\:tsystem-bottom_auto {
|
|
3088
|
+
bottom: auto;
|
|
2877
3089
|
}
|
|
2878
3090
|
|
|
2879
|
-
|
|
2880
|
-
|
|
3091
|
+
.sm\:tsystem-w_512px {
|
|
3092
|
+
width: 512px;
|
|
2881
3093
|
}
|
|
2882
3094
|
|
|
2883
|
-
|
|
2884
|
-
|
|
3095
|
+
.sm\:tsystem-min-w_fit-content {
|
|
3096
|
+
min-width: fit-content;
|
|
2885
3097
|
}
|
|
2886
3098
|
|
|
2887
|
-
|
|
2888
|
-
|
|
3099
|
+
.sm\:tsystem-min-w_512px {
|
|
3100
|
+
min-width: 512px;
|
|
2889
3101
|
}
|
|
2890
3102
|
|
|
2891
|
-
|
|
2892
|
-
|
|
3103
|
+
.sm\:tsystem-w_100dvw {
|
|
3104
|
+
width: 100dvw;
|
|
2893
3105
|
}
|
|
2894
3106
|
|
|
2895
|
-
|
|
2896
|
-
|
|
3107
|
+
.sm\:tsystem-h_100dvh {
|
|
3108
|
+
height: 100dvh;
|
|
2897
3109
|
}
|
|
2898
3110
|
|
|
2899
|
-
|
|
2900
|
-
|
|
3111
|
+
.sm\:tsystem-min-w_100dvw {
|
|
3112
|
+
min-width: 100dvw;
|
|
2901
3113
|
}
|
|
2902
3114
|
|
|
2903
|
-
|
|
2904
|
-
|
|
3115
|
+
.sm\:tsystem-min-h_100dvh {
|
|
3116
|
+
min-height: 100dvh;
|
|
2905
3117
|
}
|
|
2906
3118
|
|
|
2907
|
-
|
|
2908
|
-
|
|
3119
|
+
.sm\:tsystem-max-h_100dvh {
|
|
3120
|
+
max-height: 100dvh;
|
|
2909
3121
|
}
|
|
2910
3122
|
|
|
2911
|
-
|
|
2912
|
-
|
|
3123
|
+
.sm\:tsystem-max-w_100dvw {
|
|
3124
|
+
max-width: 100dvw;
|
|
2913
3125
|
}
|
|
2914
3126
|
|
|
2915
|
-
|
|
2916
|
-
|
|
3127
|
+
.sm\:tsystem-h_35px {
|
|
3128
|
+
height: 35px;
|
|
2917
3129
|
}
|
|
2918
3130
|
|
|
2919
|
-
|
|
2920
|
-
|
|
3131
|
+
.sm\:tsystem-h_12px {
|
|
3132
|
+
height: 12px;
|
|
2921
3133
|
}
|
|
2922
3134
|
|
|
2923
|
-
|
|
2924
|
-
|
|
3135
|
+
.sm\:tsystem-w_12px {
|
|
3136
|
+
width: 12px;
|
|
2925
3137
|
}
|
|
2926
3138
|
|
|
2927
|
-
|
|
2928
|
-
|
|
3139
|
+
.sm\:tsystem-h_60px {
|
|
3140
|
+
height: 60px;
|
|
3141
|
+
}
|
|
2929
3142
|
}
|
|
2930
3143
|
|
|
2931
|
-
|
|
2932
|
-
|
|
3144
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3145
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.secondary\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3146
|
+
color: var(--Tight-colors-typography-intent-secondary-hover);
|
|
2933
3147
|
}
|
|
2934
3148
|
|
|
2935
|
-
|
|
2936
|
-
|
|
3149
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3150
|
+
color: var(--Tight-colors-typography-intent-action-hover);
|
|
2937
3151
|
}
|
|
2938
3152
|
|
|
2939
|
-
|
|
2940
|
-
|
|
3153
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3154
|
+
color: var(--Tight-colors-typography-intent-danger-hover);
|
|
2941
3155
|
}
|
|
2942
3156
|
|
|
2943
|
-
|
|
2944
|
-
|
|
3157
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3158
|
+
color: var(--Tight-colors-typography-intent-primary-hover);
|
|
2945
3159
|
}
|
|
2946
3160
|
|
|
2947
|
-
|
|
2948
|
-
|
|
3161
|
+
.supportHover\:notDisabled\:\[\&_path\]\:tsystem-stk_icon\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]) path:hover {
|
|
3162
|
+
stroke: var(--Tight-colors-icon-intent-primary-hover);
|
|
2949
3163
|
}
|
|
2950
3164
|
|
|
2951
|
-
|
|
2952
|
-
|
|
3165
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3166
|
+
color: var(--Tight-colors-typography-intent-success-hover);
|
|
2953
3167
|
}
|
|
2954
3168
|
|
|
2955
|
-
|
|
2956
|
-
|
|
3169
|
+
.supportHover\:notDisabled\:\[\&_path\]\:tsystem-stk_icon\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]) path:hover {
|
|
3170
|
+
stroke: var(--Tight-colors-icon-intent-success-hover);
|
|
2957
3171
|
}
|
|
2958
3172
|
|
|
2959
|
-
|
|
2960
|
-
|
|
3173
|
+
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3174
|
+
color: var(--Tight-colors-typography-intent-warning-hover);
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
.supportHover\:notDisabled\:tsystem-bd_\{borderWidths\.lg\}_solid:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3178
|
+
border: var(--Tight-borderWidths-lg) solid;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3182
|
+
border-color: var(--Tight-colors-border-layout);
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
.\[\&_\>_\.Tight-text\]\:supportHover\:tsystem-trs_color_100ms_ease-out > .Tight-text:hover {
|
|
3186
|
+
transition: color 100ms ease-out;
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
.\[\&_path\]\:supportHover\:tsystem-trs_stroke_100ms_ease-out path:hover {
|
|
3190
|
+
transition: stroke 100ms ease-out;
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3194
|
+
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3198
|
+
border-color: var(--Tight-colors-border-intent-danger-hover);
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
.supportHover\:enabled\:tsystem-bd-c_border\.intent\.action\.hover:enabled:hover {
|
|
3202
|
+
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3206
|
+
border-color: var(--Tight-colors-border-intent-primary-hover);
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3210
|
+
border-color: var(--Tight-colors-border-intent-success-hover);
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3214
|
+
border-color: var(--Tight-colors-border-intent-warning-hover);
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
.\[\&_\.Tight-text\:\:after\]\:supportHover\:tsystem-trs_width_300ms_ease-out .Tight-text::after:hover {
|
|
3218
|
+
transition: width 300ms ease-out;
|
|
3219
|
+
}
|
|
3220
|
+
|
|
3221
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3222
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover .Tight-sub-label:hover {
|
|
3226
|
+
color: var(--Tight-colors-typography-intent-secondary-hover);
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.secondary\.hover .Tight-medium-icon > path:hover {
|
|
3230
|
+
stroke: var(--Tight-colors-icon-intent-secondary-hover);
|
|
3231
|
+
}
|
|
3232
|
+
|
|
3233
|
+
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.action\.hover .Tight-sub-label:hover {
|
|
3234
|
+
color: var(--Tight-colors-typography-intent-action-hover);
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.action\.hover .Tight-medium-icon > path:hover {
|
|
3238
|
+
stroke: var(--Tight-colors-icon-intent-action-hover);
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.success\.hover .Tight-sub-label:hover {
|
|
3242
|
+
color: var(--Tight-colors-typography-intent-success-hover);
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.success\.hover .Tight-medium-icon > path:hover {
|
|
3246
|
+
stroke: var(--Tight-colors-icon-intent-success-hover);
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3249
|
+
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.warning\.hover .Tight-sub-label:hover {
|
|
3250
|
+
color: var(--Tight-colors-typography-intent-warning-hover);
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.warning\.hover .Tight-medium-icon > path:hover {
|
|
3254
|
+
stroke: var(--Tight-colors-icon-intent-warning-hover);
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.danger\.hover .Tight-sub-label:hover {
|
|
3258
|
+
color: var(--Tight-colors-typography-intent-danger-hover);
|
|
3259
|
+
}
|
|
3260
|
+
|
|
3261
|
+
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.danger\.hover .Tight-medium-icon > path:hover {
|
|
3262
|
+
stroke: var(--Tight-colors-icon-intent-danger-hover);
|
|
3263
|
+
}
|
|
3264
|
+
|
|
3265
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3266
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3270
|
+
background-color: var(--Tight-colors-surface-intent-danger-hover);
|
|
3271
|
+
}
|
|
3272
|
+
|
|
3273
|
+
.supportHover\:enabled\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:enabled:hover {
|
|
3274
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
.supportHover\:enabled\:tsystem-c_icon\.intent\.action\.hover:enabled:hover {
|
|
3278
|
+
color: var(--Tight-colors-icon-intent-action-hover);
|
|
2961
3279
|
}
|
|
2962
3280
|
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
grid-template-columns: repeat(2, 400px);
|
|
3281
|
+
.supportHover\:enabled\:tsystem-fill_icon\.intent\.action\.hover:enabled:hover {
|
|
3282
|
+
fill: var(--Tight-colors-icon-intent-action-hover);
|
|
2966
3283
|
}
|
|
3284
|
+
|
|
3285
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3286
|
+
background-color: var(--Tight-colors-surface-intent-primary-hover);
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3290
|
+
background-color: var(--Tight-colors-surface-intent-success-hover);
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3294
|
+
background-color: var(--Tight-colors-surface-intent-warning-hover);
|
|
3295
|
+
}
|
|
3296
|
+
|
|
3297
|
+
.supportHover\:\[\&\[data-is-checked\=\'false\'\]\]\:tsystem-bg-c_surface\.background\.hover[data-is-checked='false']:hover {
|
|
3298
|
+
background-color: var(--Tight-colors-surface-background-hover);
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
.\[\&\[data-state\=\'closed\'\]\[data-disablehover\=\'false\'\]\]\:supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover[data-state='closed'][data-disablehover='false']:hover {
|
|
3302
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.\[\&_\.Tight-medium-icon_\>_path\]\:supportHover\:tsystem-stk_typography\.intent\.action\.hover .Tight-medium-icon > path:hover {
|
|
3306
|
+
stroke: var(--Tight-colors-typography-intent-action-hover);
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.\[\&_\.Tight-text\:\:after\]\:supportHover\:tsystem-w_100\% .Tight-text::after:hover {
|
|
3310
|
+
width: 100%;
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3315
|
+
.\[\&\:not\(\[data-state\]\)\[data-disablehover\=\'false\'\]\:not\(\:focus-within\)\]\:supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:not([data-state])[data-disablehover='false']:not(:focus-within):hover {
|
|
3316
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3317
|
+
}
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3321
|
+
.\[\&\:not\(\:focus-within\)\]\:supportHover\:tsystem-c_typography\.intent\.action\.hover:not(:focus-within):hover {
|
|
3322
|
+
color: var(--Tight-colors-typography-intent-action-hover);
|
|
3323
|
+
}
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3327
|
+
.supportHover\:tsystem-bg_surface\.intent\.secondary\.hover:hover {
|
|
3328
|
+
background: var(--Tight-colors-surface-intent-secondary-hover);
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
.supportHover\:tsystem-bg_surface\.intent\.action\.hover:hover {
|
|
3332
|
+
background: var(--Tight-colors-surface-intent-action-hover);
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
.supportHover\:tsystem-bg_surface\.intent\.success\.hover:hover {
|
|
3336
|
+
background: var(--Tight-colors-surface-intent-success-hover);
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
.supportHover\:tsystem-bg_surface\.intent\.warning\.hover:hover {
|
|
3340
|
+
background: var(--Tight-colors-surface-intent-warning-hover);
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
.supportHover\:tsystem-bg_surface\.intent\.danger\.hover:hover {
|
|
3344
|
+
background: var(--Tight-colors-surface-intent-danger-hover);
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
.supportHover\:tsystem-bd_\{borderWidths\.lg\}_solid:hover {
|
|
3348
|
+
border: var(--Tight-borderWidths-lg) solid;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
.supportHover\:tsystem-trs_background_100ms_ease-out\,_background-color_100ms_ease-out\,_border-color_100ms_ease-out\,_box-shadow_0ms:hover {
|
|
3352
|
+
transition: background 100ms ease-out, background-color 100ms ease-out, border-color 100ms ease-out, box-shadow 0ms;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
.supportHover\:tsystem-trs_background_100ms_ease-out\,_box-shadow_0ms:hover {
|
|
3356
|
+
transition: background 100ms ease-out, box-shadow 0ms;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
.supportHover\:tsystem-trs_color_100ms_ease-out:hover {
|
|
3360
|
+
transition: color 100ms ease-out;
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3363
|
+
.supportHover\:tsystem-bd-c_border\.intent\.secondary\.hover:hover {
|
|
3364
|
+
border-color: var(--Tight-colors-border-intent-secondary-hover);
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
.supportHover\:tsystem-bd-c_border\.intent\.action\.hover:hover {
|
|
3368
|
+
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
.supportHover\:tsystem-bd-c_border\.intent\.success\.hover:hover {
|
|
3372
|
+
border-color: var(--Tight-colors-border-intent-success-hover);
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3375
|
+
.supportHover\:tsystem-bd-c_border\.intent\.warning\.hover:hover {
|
|
3376
|
+
border-color: var(--Tight-colors-border-intent-warning-hover);
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
.supportHover\:tsystem-bd-c_border\.intent\.danger\.hover:hover {
|
|
3380
|
+
border-color: var(--Tight-colors-border-intent-danger-hover);
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action\.hover:hover {
|
|
3384
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3388
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3389
|
+
}
|
|
3390
|
+
|
|
3391
|
+
.supportHover\:tsystem-c_typography\.accent\.action:hover {
|
|
3392
|
+
color: var(--Tight-colors-typography-accent-action);
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3395
|
+
.supportHover\:tsystem-bg-c_brand\.primary:hover {
|
|
3396
|
+
background-color: var(--Tight-colors-brand-primary);
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
.supportHover\:tsystem-c_typography\.contrast:hover {
|
|
3400
|
+
color: var(--Tight-colors-typography-contrast);
|
|
2967
3401
|
}
|
|
2968
3402
|
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
grid-template-columns: 400px 400px 400px minmax(150px, 400px);
|
|
3403
|
+
.supportHover\:tsystem-c_typography\.intent\.action\.hover:hover {
|
|
3404
|
+
color: var(--Tight-colors-typography-intent-action-hover);
|
|
2972
3405
|
}
|
|
2973
3406
|
}
|
|
2974
3407
|
}
|