@tight-embedded/react 1.1.0 → 1.3.1
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 +928 -376
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.js +1 -3557
- 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 +28 -16
package/dist/index.css
CHANGED
|
@@ -22,31 +22,6 @@
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
@keyframes fade-in {
|
|
26
|
-
from {
|
|
27
|
-
opacity: 0;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
to {
|
|
31
|
-
opacity: 100%;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@keyframes shimmer {
|
|
36
|
-
to {
|
|
37
|
-
background-position: 0 0;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@keyframes spin {
|
|
42
|
-
from {
|
|
43
|
-
transform: rotate(0deg);
|
|
44
|
-
}
|
|
45
|
-
to {
|
|
46
|
-
transform: rotate(360deg);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
25
|
@layer base {
|
|
51
26
|
:root {
|
|
52
27
|
--made-with-panda: '🐼';
|
|
@@ -129,13 +104,17 @@
|
|
|
129
104
|
--Tight-radii-md: 2px;
|
|
130
105
|
--Tight-radii-lg: 4px;
|
|
131
106
|
--Tight-borderWidths-sm: 0.5px;
|
|
132
|
-
--Tight-borderWidths-md:
|
|
107
|
+
--Tight-borderWidths-md: 1px;
|
|
133
108
|
--Tight-borderWidths-lg: 1px;
|
|
134
109
|
--Tight-borderWidths-xl: 2px;
|
|
135
110
|
--Tight-animations-appear-instant: 0.25s linear fade-in;
|
|
136
111
|
--Tight-animations-appear-delay: 0.25s linear both 1.5s fade-in;
|
|
137
112
|
--Tight-animations-shimmer: 2s ease-in-out infinite shimmer;
|
|
138
113
|
--Tight-animations-spin: 1.5s ease-in-out 0.1s spin infinite;
|
|
114
|
+
--Tight-animations-slideIn-right: 0.3s ease-out both slide-in-right;
|
|
115
|
+
--Tight-animations-slideIn-up: 0.3s ease-out both slide-in-up;
|
|
116
|
+
--Tight-animations-slideOut-right: 0.3s ease-in both slide-out-right;
|
|
117
|
+
--Tight-animations-slideOut-down: 0.3s ease-in both slide-out-down;
|
|
139
118
|
--Tight-shadows-box-shadow: 0px 10px 30px 0px rgba(24, 36, 40, 0.10);
|
|
140
119
|
--Tight-breakpoints-sm: 640px;
|
|
141
120
|
--Tight-breakpoints-md: 850px;
|
|
@@ -331,6 +310,72 @@
|
|
|
331
310
|
--Tight-fontSizes-metric-md: var(--Tight-fontSizes-md);
|
|
332
311
|
--Tight-fontSizes-metric-lg: var(--Tight-fontSizes-xl);
|
|
333
312
|
--Tight-fontSizes-metric-xl: var(--Tight-fontSizes-2xl);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
@keyframes fade-in {
|
|
316
|
+
from {
|
|
317
|
+
opacity: 0;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
to {
|
|
321
|
+
opacity: 1;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
@keyframes shimmer {
|
|
326
|
+
to {
|
|
327
|
+
background-position: 0 0;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
@keyframes spin {
|
|
332
|
+
from {
|
|
333
|
+
transform: rotate(0deg);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
to {
|
|
337
|
+
transform: rotate(360deg);
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
@keyframes slide-in-right {
|
|
342
|
+
from {
|
|
343
|
+
transform: translateX(100%);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
to {
|
|
347
|
+
transform: translateX(0);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
@keyframes slide-in-up {
|
|
352
|
+
from {
|
|
353
|
+
transform: translateY(100%);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
to {
|
|
357
|
+
transform: translateY(0);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
@keyframes slide-out-right {
|
|
362
|
+
from {
|
|
363
|
+
transform: translateX(0);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
to {
|
|
367
|
+
transform: translateX(100%);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
@keyframes slide-out-down {
|
|
372
|
+
from {
|
|
373
|
+
transform: translateY(0);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
to {
|
|
377
|
+
transform: translateY(100%);
|
|
378
|
+
}
|
|
334
379
|
}
|
|
335
380
|
}
|
|
336
381
|
|
|
@@ -351,10 +396,22 @@
|
|
|
351
396
|
padding: 6px;
|
|
352
397
|
}
|
|
353
398
|
|
|
399
|
+
.tsystem-bd_\{borderWidths\.md\}_solid_transparent {
|
|
400
|
+
border: var(--Tight-borderWidths-md) solid transparent;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.tsystem-p_5px {
|
|
404
|
+
padding: 5px;
|
|
405
|
+
}
|
|
406
|
+
|
|
354
407
|
.tsystem-p_15px {
|
|
355
408
|
padding: 15px;
|
|
356
409
|
}
|
|
357
410
|
|
|
411
|
+
.tsystem-p_12px_16px {
|
|
412
|
+
padding: 12px 16px;
|
|
413
|
+
}
|
|
414
|
+
|
|
358
415
|
.tsystem-bd_1px_solid {
|
|
359
416
|
border: 1px solid;
|
|
360
417
|
}
|
|
@@ -367,10 +424,6 @@
|
|
|
367
424
|
padding: 0 15px 15px;
|
|
368
425
|
}
|
|
369
426
|
|
|
370
|
-
.tsystem-p_12px_16px {
|
|
371
|
-
padding: 12px 16px;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
427
|
.tsystem-p_15 {
|
|
375
428
|
padding: 15px;
|
|
376
429
|
}
|
|
@@ -379,6 +432,10 @@
|
|
|
379
432
|
border: none;
|
|
380
433
|
}
|
|
381
434
|
|
|
435
|
+
.tsystem-p_md {
|
|
436
|
+
padding: md;
|
|
437
|
+
}
|
|
438
|
+
|
|
382
439
|
.tsystem-inset_0 {
|
|
383
440
|
inset: 0;
|
|
384
441
|
}
|
|
@@ -387,18 +444,34 @@
|
|
|
387
444
|
background: var(--Tight-colors-surface-background);
|
|
388
445
|
}
|
|
389
446
|
|
|
390
|
-
.tsystem-p_16px {
|
|
391
|
-
padding: 16px;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
447
|
.tsystem-m_32px {
|
|
395
448
|
margin: 32px;
|
|
396
449
|
}
|
|
397
450
|
|
|
451
|
+
.tsystem-m_0 {
|
|
452
|
+
margin: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
398
455
|
.tsystem-p_0 {
|
|
399
456
|
padding: 0;
|
|
400
457
|
}
|
|
401
458
|
|
|
459
|
+
.tsystem-p_8px {
|
|
460
|
+
padding: 8px;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.tsystem-p_16px {
|
|
464
|
+
padding: 16px;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.tsystem-p_24px {
|
|
468
|
+
padding: 24px;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.tsystem-m_0_0_7px_0 {
|
|
472
|
+
margin: 0 0 7px 0;
|
|
473
|
+
}
|
|
474
|
+
|
|
402
475
|
.tsystem-p_4px_5px {
|
|
403
476
|
padding: 4px 5px;
|
|
404
477
|
}
|
|
@@ -431,10 +504,6 @@
|
|
|
431
504
|
border: 1px solid var(--Tight-colors-border-intent-action);
|
|
432
505
|
}
|
|
433
506
|
|
|
434
|
-
.tsystem-bd_\{borderWidths\.md\}_solid_transparent {
|
|
435
|
-
border: var(--Tight-borderWidths-md) solid transparent;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
507
|
.tsystem-bd_1px_solid_\{colors\.border\.intent\.warning\} {
|
|
439
508
|
border: 1px solid var(--Tight-colors-border-intent-warning);
|
|
440
509
|
}
|
|
@@ -443,10 +512,6 @@
|
|
|
443
512
|
padding: 0 25px;
|
|
444
513
|
}
|
|
445
514
|
|
|
446
|
-
.tsystem-m_0 {
|
|
447
|
-
margin: 0;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
515
|
.tsystem-bd_\{borderWidths\.lg\}_solid {
|
|
451
516
|
border: var(--Tight-borderWidths-lg) solid;
|
|
452
517
|
}
|
|
@@ -507,14 +572,42 @@
|
|
|
507
572
|
margin: 0 auto;
|
|
508
573
|
}
|
|
509
574
|
|
|
510
|
-
.tsystem-
|
|
511
|
-
padding:
|
|
575
|
+
.tsystem-p_10 {
|
|
576
|
+
padding: 10px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.tsystem-p_20px {
|
|
580
|
+
padding: 20px;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.tsystem-p_none {
|
|
584
|
+
padding: none;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.tsystem-p_20px_15px_14px_15px {
|
|
588
|
+
padding: 20px 15px 14px 15px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.tsystem-m_15px {
|
|
592
|
+
margin: 15px;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.tsystem-bg_foreground {
|
|
596
|
+
background: foreground;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.tsystem-p_10px_8px {
|
|
600
|
+
padding: 10px 8px;
|
|
512
601
|
}
|
|
513
602
|
|
|
514
603
|
.tsystem-p_4px_8px {
|
|
515
604
|
padding: 4px 8px;
|
|
516
605
|
}
|
|
517
606
|
|
|
607
|
+
.tsystem-p_40px_20px {
|
|
608
|
+
padding: 40px 20px;
|
|
609
|
+
}
|
|
610
|
+
|
|
518
611
|
.tsystem-p_15px_15px_0_15px {
|
|
519
612
|
padding: 15px 15px 0 15px;
|
|
520
613
|
}
|
|
@@ -535,10 +628,6 @@
|
|
|
535
628
|
padding: 5px 10px;
|
|
536
629
|
}
|
|
537
630
|
|
|
538
|
-
.tsystem-m_0_0_7px_0 {
|
|
539
|
-
margin: 0 0 7px 0;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
631
|
.tsystem-bd_1px_solid_\{colors\.border\.layout\} {
|
|
543
632
|
border: 1px solid var(--Tight-colors-border-layout);
|
|
544
633
|
}
|
|
@@ -547,12 +636,24 @@
|
|
|
547
636
|
padding: 10px 25px 10px 15px;
|
|
548
637
|
}
|
|
549
638
|
|
|
639
|
+
.tsystem-p_5 {
|
|
640
|
+
padding: 5px;
|
|
641
|
+
}
|
|
642
|
+
|
|
550
643
|
.tsystem-p_25px {
|
|
551
644
|
padding: 25px;
|
|
552
645
|
}
|
|
553
646
|
|
|
554
|
-
.tsystem-
|
|
555
|
-
|
|
647
|
+
.tsystem-bg_brand\.success {
|
|
648
|
+
background: var(--Tight-colors-brand-success);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.tsystem-p_2px_6px {
|
|
652
|
+
padding: 2px 6px;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.tsystem-bd_\{borderWidths\.lg\}_solid_\{colors\.border\.layout\} {
|
|
656
|
+
border: var(--Tight-borderWidths-lg) solid var(--Tight-colors-border-layout);
|
|
556
657
|
}
|
|
557
658
|
|
|
558
659
|
.tsystem-p_6px_0_6px_6px {
|
|
@@ -616,16 +717,28 @@
|
|
|
616
717
|
transition: color 300ms ease-out;
|
|
617
718
|
}
|
|
618
719
|
|
|
619
|
-
.tsystem-
|
|
620
|
-
|
|
720
|
+
.tsystem-bdr_lg {
|
|
721
|
+
border-radius: var(--Tight-radii-lg);
|
|
621
722
|
}
|
|
622
723
|
|
|
623
|
-
.tsystem-
|
|
624
|
-
|
|
724
|
+
.tsystem-gap_8px {
|
|
725
|
+
gap: 8px;
|
|
625
726
|
}
|
|
626
727
|
|
|
627
|
-
.tsystem-
|
|
628
|
-
border-
|
|
728
|
+
.tsystem-bd-w_lg {
|
|
729
|
+
border-width: var(--Tight-borderWidths-lg);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.tsystem-border-style_solid {
|
|
733
|
+
border-style: solid;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.tsystem-bd-c_border\.layout\.strong {
|
|
737
|
+
border-color: var(--Tight-colors-border-layout-strong);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.tsystem-gap_15px {
|
|
741
|
+
gap: 15px;
|
|
629
742
|
}
|
|
630
743
|
|
|
631
744
|
.tsystem-bd-c_border\.intent\.warning {
|
|
@@ -636,6 +749,10 @@
|
|
|
636
749
|
border-color: var(--Tight-colors-border-intent-action);
|
|
637
750
|
}
|
|
638
751
|
|
|
752
|
+
.tsystem-bd-c_border\.intent\.success {
|
|
753
|
+
border-color: var(--Tight-colors-border-intent-success);
|
|
754
|
+
}
|
|
755
|
+
|
|
639
756
|
.tsystem-bd-c_border\.intent\.danger {
|
|
640
757
|
border-color: var(--Tight-colors-border-intent-danger);
|
|
641
758
|
}
|
|
@@ -668,10 +785,6 @@
|
|
|
668
785
|
border-width: 1px;
|
|
669
786
|
}
|
|
670
787
|
|
|
671
|
-
.tsystem-border-style_solid {
|
|
672
|
-
border-style: solid;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
788
|
.tsystem-ov_wrap {
|
|
676
789
|
overflow: wrap;
|
|
677
790
|
}
|
|
@@ -680,6 +793,10 @@
|
|
|
680
793
|
border-color: var(--Tight-colors-border-intent-primary);
|
|
681
794
|
}
|
|
682
795
|
|
|
796
|
+
.tsystem-bdr_999px {
|
|
797
|
+
border-radius: 999px;
|
|
798
|
+
}
|
|
799
|
+
|
|
683
800
|
.tsystem-gap_26px {
|
|
684
801
|
gap: 26px;
|
|
685
802
|
}
|
|
@@ -708,38 +825,34 @@
|
|
|
708
825
|
border-width: 0;
|
|
709
826
|
}
|
|
710
827
|
|
|
711
|
-
.tsystem-bd-c_border\.layout\.strong {
|
|
712
|
-
border-color: var(--Tight-colors-border-layout-strong);
|
|
713
|
-
}
|
|
714
|
-
|
|
715
828
|
.tsystem-trs_all_300ms_ease-out {
|
|
716
829
|
transition: all 300ms ease-out;
|
|
717
830
|
}
|
|
718
831
|
|
|
719
|
-
.tsystem-place-items_center {
|
|
720
|
-
place-items: center;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
832
|
.tsystem-gap_16px {
|
|
724
833
|
gap: 16px;
|
|
725
834
|
}
|
|
726
835
|
|
|
727
|
-
.tsystem-
|
|
728
|
-
gap:
|
|
836
|
+
.tsystem-gap_4px {
|
|
837
|
+
gap: 4px;
|
|
729
838
|
}
|
|
730
839
|
|
|
731
840
|
.tsystem-flex_1 {
|
|
732
841
|
flex: 1 1 0%;
|
|
733
842
|
}
|
|
734
843
|
|
|
735
|
-
.tsystem-
|
|
736
|
-
|
|
844
|
+
.tsystem-ov_auto {
|
|
845
|
+
overflow: auto;
|
|
737
846
|
}
|
|
738
847
|
|
|
739
848
|
.tsystem-bg-p_100\%_0 {
|
|
740
849
|
background-position: 100% 0;
|
|
741
850
|
}
|
|
742
851
|
|
|
852
|
+
.tsystem-gap_12px {
|
|
853
|
+
gap: 12px;
|
|
854
|
+
}
|
|
855
|
+
|
|
743
856
|
.tsystem-bdr_zero {
|
|
744
857
|
border-radius: var(--Tight-radii-zero);
|
|
745
858
|
}
|
|
@@ -776,8 +889,8 @@
|
|
|
776
889
|
gap: 9px;
|
|
777
890
|
}
|
|
778
891
|
|
|
779
|
-
.tsystem-bd-
|
|
780
|
-
border-
|
|
892
|
+
.tsystem-bd-c_strong {
|
|
893
|
+
border-color: strong;
|
|
781
894
|
}
|
|
782
895
|
|
|
783
896
|
.tsystem-bd-b_\{borderWidths\.md\}_solid {
|
|
@@ -800,44 +913,44 @@
|
|
|
800
913
|
border-right: none;
|
|
801
914
|
}
|
|
802
915
|
|
|
803
|
-
.tsystem-bd-
|
|
804
|
-
border-
|
|
916
|
+
.tsystem-bd-t_1px_solid {
|
|
917
|
+
border-top: 1px solid;
|
|
805
918
|
}
|
|
806
919
|
|
|
807
|
-
.tsystem-
|
|
808
|
-
|
|
920
|
+
.tsystem-place-self_center {
|
|
921
|
+
place-self: center;
|
|
809
922
|
}
|
|
810
923
|
|
|
811
|
-
.tsystem-
|
|
812
|
-
|
|
924
|
+
.tsystem-mx_15px {
|
|
925
|
+
margin-inline: 15px;
|
|
813
926
|
}
|
|
814
927
|
|
|
815
|
-
.tsystem-
|
|
816
|
-
|
|
928
|
+
.tsystem-bd-b_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.weak\} {
|
|
929
|
+
border-bottom: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-weak);
|
|
817
930
|
}
|
|
818
931
|
|
|
819
|
-
.tsystem-
|
|
820
|
-
|
|
932
|
+
.tsystem-my_20px {
|
|
933
|
+
margin-block: 20px;
|
|
821
934
|
}
|
|
822
935
|
|
|
823
|
-
.tsystem-
|
|
824
|
-
border-
|
|
936
|
+
.tsystem-bd-w_sm {
|
|
937
|
+
border-width: var(--Tight-borderWidths-sm);
|
|
825
938
|
}
|
|
826
939
|
|
|
827
|
-
.tsystem-
|
|
828
|
-
|
|
940
|
+
.tsystem-bd-t_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.strong\} {
|
|
941
|
+
border-top: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-strong);
|
|
829
942
|
}
|
|
830
943
|
|
|
831
|
-
.tsystem-
|
|
832
|
-
gap:
|
|
944
|
+
.tsystem-gap_10 {
|
|
945
|
+
gap: 10px;
|
|
833
946
|
}
|
|
834
947
|
|
|
835
|
-
.tsystem-
|
|
836
|
-
|
|
948
|
+
.tsystem-flex_1_0_0 {
|
|
949
|
+
flex: 1 0 0;
|
|
837
950
|
}
|
|
838
951
|
|
|
839
|
-
.tsystem-
|
|
840
|
-
|
|
952
|
+
.tsystem-gap_7px {
|
|
953
|
+
gap: 7px;
|
|
841
954
|
}
|
|
842
955
|
|
|
843
956
|
.tsystem-gap_16 {
|
|
@@ -852,6 +965,14 @@
|
|
|
852
965
|
border-left: 1px solid var(--Tight-colors-border-layout);
|
|
853
966
|
}
|
|
854
967
|
|
|
968
|
+
.tsystem-bd-l_1px_solid_\{colors\.border\.layout\.strong\} {
|
|
969
|
+
border-left: 1px solid var(--Tight-colors-border-layout-strong);
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.tsystem-mx_40px {
|
|
973
|
+
margin-inline: 40px;
|
|
974
|
+
}
|
|
975
|
+
|
|
855
976
|
.tsystem-tw_nowrap {
|
|
856
977
|
text-wrap: nowrap;
|
|
857
978
|
}
|
|
@@ -880,16 +1001,20 @@
|
|
|
880
1001
|
gap: 30px;
|
|
881
1002
|
}
|
|
882
1003
|
|
|
883
|
-
.tsystem-
|
|
884
|
-
|
|
1004
|
+
.tsystem-flex_1_1_100\% {
|
|
1005
|
+
flex: 1 1 100%;
|
|
885
1006
|
}
|
|
886
1007
|
|
|
887
|
-
.tsystem-bd-
|
|
888
|
-
border-
|
|
1008
|
+
.tsystem-bd-b_\{borderWidths\.lg\}_solid_\{colors\.border\.layout\.strong\} {
|
|
1009
|
+
border-bottom: var(--Tight-borderWidths-lg) solid var(--Tight-colors-border-layout-strong);
|
|
889
1010
|
}
|
|
890
1011
|
|
|
891
|
-
.tsystem-
|
|
892
|
-
|
|
1012
|
+
.tsystem-ov_scroll {
|
|
1013
|
+
overflow: scroll;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.tsystem-gap_6px {
|
|
1017
|
+
gap: 6px;
|
|
893
1018
|
}
|
|
894
1019
|
|
|
895
1020
|
.tsystem-d_flex {
|
|
@@ -932,6 +1057,18 @@
|
|
|
932
1057
|
font-weight: var(--Tight-fontWeights-sm);
|
|
933
1058
|
}
|
|
934
1059
|
|
|
1060
|
+
.tsystem-bx-sh_0_0_0_0_transparent {
|
|
1061
|
+
box-shadow: 0 0 0 0 transparent;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.tsystem-pos_relative {
|
|
1065
|
+
position: relative;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.tsystem-c_icon\.base {
|
|
1069
|
+
color: var(--Tight-colors-icon-base);
|
|
1070
|
+
}
|
|
1071
|
+
|
|
935
1072
|
.tsystem-bg-c_brand\.primary {
|
|
936
1073
|
background-color: var(--Tight-colors-brand-primary);
|
|
937
1074
|
}
|
|
@@ -964,16 +1101,40 @@
|
|
|
964
1101
|
letter-spacing: 0.66px;
|
|
965
1102
|
}
|
|
966
1103
|
|
|
967
|
-
.tsystem-
|
|
1104
|
+
.tsystem-bx-s_border-box {
|
|
1105
|
+
box-sizing: border-box;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.tsystem-bg-c_surface\.intent\.action {
|
|
1109
|
+
background-color: var(--Tight-colors-surface-intent-action);
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.tsystem-flex-d_column {
|
|
968
1113
|
flex-direction: column;
|
|
969
1114
|
}
|
|
970
1115
|
|
|
971
|
-
.tsystem-
|
|
972
|
-
|
|
1116
|
+
.tsystem-ta_right {
|
|
1117
|
+
text-align: right;
|
|
973
1118
|
}
|
|
974
1119
|
|
|
975
|
-
.tsystem-
|
|
976
|
-
|
|
1120
|
+
.tsystem-bg-c_surface\.foreground {
|
|
1121
|
+
background-color: var(--Tight-colors-surface-foreground);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.tsystem-ai_flex-start {
|
|
1125
|
+
align-items: flex-start;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.tsystem-ai_flex-end {
|
|
1129
|
+
align-items: flex-end;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.tsystem-flex-d_row {
|
|
1133
|
+
flex-direction: row;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.tsystem-ta_left {
|
|
1137
|
+
text-align: left;
|
|
977
1138
|
}
|
|
978
1139
|
|
|
979
1140
|
.tsystem-jc_flex-end {
|
|
@@ -988,30 +1149,14 @@
|
|
|
988
1149
|
justify-content: space-between;
|
|
989
1150
|
}
|
|
990
1151
|
|
|
991
|
-
.tsystem-ai_flex-start {
|
|
992
|
-
align-items: flex-start;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
1152
|
.tsystem-as_stretch {
|
|
996
1153
|
align-self: stretch;
|
|
997
1154
|
}
|
|
998
1155
|
|
|
999
|
-
.tsystem-flex-wrap_wrap {
|
|
1000
|
-
flex-wrap: wrap;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
.tsystem-bg-c_surface\.foreground {
|
|
1004
|
-
background-color: var(--Tight-colors-surface-foreground);
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
1156
|
.tsystem-bg-c_surface\.intent\.secondary {
|
|
1008
1157
|
background-color: var(--Tight-colors-surface-intent-secondary);
|
|
1009
1158
|
}
|
|
1010
1159
|
|
|
1011
|
-
.tsystem-flex-d_row {
|
|
1012
|
-
flex-direction: row;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
1160
|
.tsystem-flex-d_row-reverse {
|
|
1016
1161
|
flex-direction: row-reverse;
|
|
1017
1162
|
}
|
|
@@ -1044,6 +1189,18 @@
|
|
|
1044
1189
|
flex-direction: column-reverse;
|
|
1045
1190
|
}
|
|
1046
1191
|
|
|
1192
|
+
.tsystem-pos_absolute {
|
|
1193
|
+
position: absolute;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.tsystem-bg-c_surface\.intent\.warning {
|
|
1197
|
+
background-color: var(--Tight-colors-surface-intent-warning);
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.tsystem-bx-sh_0_0_0_1px_\{colors\.border\.intent\.warning\} {
|
|
1201
|
+
box-shadow: 0 0 0 1px var(--Tight-colors-border-intent-warning);
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1047
1204
|
.tsystem-scr-bar-w_thin {
|
|
1048
1205
|
scrollbar-width: thin;
|
|
1049
1206
|
}
|
|
@@ -1080,14 +1237,6 @@
|
|
|
1080
1237
|
text-align: center;
|
|
1081
1238
|
}
|
|
1082
1239
|
|
|
1083
|
-
.tsystem-white-space_normal {
|
|
1084
|
-
white-space: normal;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
.tsystem-ov-wrap_break-word {
|
|
1088
|
-
overflow-wrap: break-word;
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
1240
|
.tsystem-pos_fixed {
|
|
1092
1241
|
position: fixed;
|
|
1093
1242
|
}
|
|
@@ -1096,26 +1245,22 @@
|
|
|
1096
1245
|
background-color: var(--Tight-colors-overlay);
|
|
1097
1246
|
}
|
|
1098
1247
|
|
|
1099
|
-
.tsystem-white-space_wrap {
|
|
1100
|
-
white-space: wrap;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
.tsystem-tov_wrap {
|
|
1104
|
-
text-overflow: wrap;
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
.tsystem-pos_absolute {
|
|
1108
|
-
position: absolute;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
1248
|
.tsystem-bg-c_surface\.background {
|
|
1112
1249
|
background-color: var(--Tight-colors-surface-background);
|
|
1113
1250
|
}
|
|
1114
1251
|
|
|
1252
|
+
.tsystem-d_none {
|
|
1253
|
+
display: none;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1115
1256
|
.tsystem-flex-g_1 {
|
|
1116
1257
|
flex-grow: 1;
|
|
1117
1258
|
}
|
|
1118
1259
|
|
|
1260
|
+
.tsystem-c_icon\.accent\.danger {
|
|
1261
|
+
color: var(--Tight-colors-icon-accent-danger);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1119
1264
|
.tsystem-stk_currentColor {
|
|
1120
1265
|
stroke: var(--Tight-colors-currentColor);
|
|
1121
1266
|
}
|
|
@@ -1196,6 +1341,10 @@
|
|
|
1196
1341
|
fill: var(--Tight-colors-transparent);
|
|
1197
1342
|
}
|
|
1198
1343
|
|
|
1344
|
+
.tsystem-obj-f_contain {
|
|
1345
|
+
object-fit: contain;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1199
1348
|
.tsystem-d_inline-flex {
|
|
1200
1349
|
display: inline-flex;
|
|
1201
1350
|
}
|
|
@@ -1204,10 +1353,6 @@
|
|
|
1204
1353
|
color: var(--Tight-colors-typography-intent-action);
|
|
1205
1354
|
}
|
|
1206
1355
|
|
|
1207
|
-
.tsystem-bg-c_surface\.intent\.action {
|
|
1208
|
-
background-color: var(--Tight-colors-surface-intent-action);
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
1356
|
.tsystem-c_typography\.intent\.danger {
|
|
1212
1357
|
color: var(--Tight-colors-typography-intent-danger);
|
|
1213
1358
|
}
|
|
@@ -1216,14 +1361,6 @@
|
|
|
1216
1361
|
background-color: var(--Tight-colors-surface-intent-danger);
|
|
1217
1362
|
}
|
|
1218
1363
|
|
|
1219
|
-
.tsystem-bx-sh_0_0_0_0_transparent {
|
|
1220
|
-
box-shadow: 0 0 0 0 transparent;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
.tsystem-c_icon\.base {
|
|
1224
|
-
color: var(--Tight-colors-icon-base);
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
1364
|
.tsystem-c_typography\.intent\.success {
|
|
1228
1365
|
color: var(--Tight-colors-typography-intent-success);
|
|
1229
1366
|
}
|
|
@@ -1236,10 +1373,6 @@
|
|
|
1236
1373
|
color: var(--Tight-colors-typography-intent-warning);
|
|
1237
1374
|
}
|
|
1238
1375
|
|
|
1239
|
-
.tsystem-bg-c_surface\.intent\.warning {
|
|
1240
|
-
background-color: var(--Tight-colors-surface-intent-warning);
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
1376
|
.tsystem-jc_flex-start {
|
|
1244
1377
|
justify-content: flex-start;
|
|
1245
1378
|
}
|
|
@@ -1264,6 +1397,34 @@
|
|
|
1264
1397
|
background-color: yellow;
|
|
1265
1398
|
}
|
|
1266
1399
|
|
|
1400
|
+
.tsystem-ov-wrap_break-word {
|
|
1401
|
+
overflow-wrap: break-word;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.tsystem-fw_label\.strong {
|
|
1405
|
+
font-weight: var(--Tight-fontWeights-label-strong);
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.tsystem-fs_lg {
|
|
1409
|
+
font-size: var(--Tight-fontSizes-lg);
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.tsystem-ff_label {
|
|
1413
|
+
font-family: var(--Tight-fonts-label);
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.tsystem-c_typography\.label\.strong {
|
|
1417
|
+
color: var(--Tight-colors-typography-label-strong);
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.tsystem-lh_18px {
|
|
1421
|
+
line-height: 18px;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
.tsystem-ls_0\.84px {
|
|
1425
|
+
letter-spacing: 0.84px;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1267
1428
|
.tsystem-bg-c_border\.layout\.strong {
|
|
1268
1429
|
background-color: var(--Tight-colors-border-layout-strong);
|
|
1269
1430
|
}
|
|
@@ -1310,6 +1471,10 @@
|
|
|
1310
1471
|
border-top-right-radius: var(--Tight-radii-lg);
|
|
1311
1472
|
}
|
|
1312
1473
|
|
|
1474
|
+
.tsystem-flex-wrap_wrap {
|
|
1475
|
+
flex-wrap: wrap;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1313
1478
|
.tsystem-c_icon\.intent\.primary {
|
|
1314
1479
|
color: var(--Tight-colors-icon-intent-primary);
|
|
1315
1480
|
}
|
|
@@ -1322,32 +1487,24 @@
|
|
|
1322
1487
|
font-weight: var(--Tight-fontWeights-lg);
|
|
1323
1488
|
}
|
|
1324
1489
|
|
|
1325
|
-
.tsystem-ls_0\.84px {
|
|
1326
|
-
letter-spacing: 0.84px;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
1490
|
.tsystem-lh_16px {
|
|
1330
1491
|
line-height: 16px;
|
|
1331
1492
|
}
|
|
1332
1493
|
|
|
1333
|
-
.tsystem-ff_label {
|
|
1334
|
-
font-family: var(--Tight-fonts-label);
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
1494
|
.tsystem-fw_label {
|
|
1338
1495
|
font-weight: var(--Tight-fontWeights-label);
|
|
1339
1496
|
}
|
|
1340
1497
|
|
|
1341
|
-
.tsystem-
|
|
1342
|
-
|
|
1498
|
+
.tsystem-c_typography\.label {
|
|
1499
|
+
color: var(--Tight-colors-typography-label);
|
|
1343
1500
|
}
|
|
1344
1501
|
|
|
1345
|
-
.tsystem-
|
|
1346
|
-
|
|
1502
|
+
.tsystem-white-space_normal {
|
|
1503
|
+
white-space: normal;
|
|
1347
1504
|
}
|
|
1348
1505
|
|
|
1349
|
-
.tsystem-
|
|
1350
|
-
|
|
1506
|
+
.tsystem-ta_start {
|
|
1507
|
+
text-align: start;
|
|
1351
1508
|
}
|
|
1352
1509
|
|
|
1353
1510
|
.tsystem-fw_label\.sub {
|
|
@@ -1370,10 +1527,6 @@
|
|
|
1370
1527
|
color: var(--Tight-colors-typography-base-weak);
|
|
1371
1528
|
}
|
|
1372
1529
|
|
|
1373
|
-
.tsystem-bx-s_border-box {
|
|
1374
|
-
box-sizing: border-box;
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
1530
|
.tsystem-trf_rotate\(-20deg\) {
|
|
1378
1531
|
transform: rotate(-20deg);
|
|
1379
1532
|
}
|
|
@@ -1390,6 +1543,10 @@
|
|
|
1390
1543
|
font-size: 7em;
|
|
1391
1544
|
}
|
|
1392
1545
|
|
|
1546
|
+
.tsystem-fs_10em {
|
|
1547
|
+
font-size: 10em;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1393
1550
|
.tsystem-fw_body {
|
|
1394
1551
|
font-weight: var(--Tight-fontWeights-body);
|
|
1395
1552
|
}
|
|
@@ -1398,14 +1555,6 @@
|
|
|
1398
1555
|
font-family: var(--Tight-fonts-body);
|
|
1399
1556
|
}
|
|
1400
1557
|
|
|
1401
|
-
.tsystem-fw_label\.strong {
|
|
1402
|
-
font-weight: var(--Tight-fontWeights-label-strong);
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
.tsystem-c_typography\.label\.strong {
|
|
1406
|
-
color: var(--Tight-colors-typography-label-strong);
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
1558
|
.tsystem-fw_label\.strongSub {
|
|
1410
1559
|
font-weight: var(--Tight-fontWeights-label-strongSub);
|
|
1411
1560
|
}
|
|
@@ -1506,14 +1655,39 @@
|
|
|
1506
1655
|
color: var(--Tight-colors-money-positive);
|
|
1507
1656
|
}
|
|
1508
1657
|
|
|
1509
|
-
.tsystem-
|
|
1510
|
-
|
|
1658
|
+
.tsystem-us_none {
|
|
1659
|
+
-webkit-user-select: none;
|
|
1660
|
+
user-select: none;
|
|
1511
1661
|
}
|
|
1512
1662
|
|
|
1513
1663
|
.tsystem-bd-be-w_var\(--thickness\) {
|
|
1514
1664
|
border-block-end-width: var(--thickness);
|
|
1515
1665
|
}
|
|
1516
1666
|
|
|
1667
|
+
.tsystem-d_block {
|
|
1668
|
+
display: block;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
.tsystem-grid-tc_1fr {
|
|
1672
|
+
grid-template-columns: 1fr;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
.tsystem-grid-tc_300px_auto_175px {
|
|
1676
|
+
grid-template-columns: 300px auto 175px;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
.tsystem-grid-tc_100\% {
|
|
1680
|
+
grid-template-columns: 100%;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
.tsystem-rg_25px {
|
|
1684
|
+
row-gap: 25px;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.tsystem-trf_rotate\(90deg\) {
|
|
1688
|
+
transform: rotate(90deg);
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1517
1691
|
.tsystem-fs_26px {
|
|
1518
1692
|
font-size: 26px;
|
|
1519
1693
|
}
|
|
@@ -1522,11 +1696,6 @@
|
|
|
1522
1696
|
line-height: 26px;
|
|
1523
1697
|
}
|
|
1524
1698
|
|
|
1525
|
-
.tsystem-us_none {
|
|
1526
|
-
-webkit-user-select: none;
|
|
1527
|
-
user-select: none;
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
1699
|
.tsystem-scr-bar_hidden {
|
|
1531
1700
|
-ms-overflow-style: none;
|
|
1532
1701
|
scrollbar-width: none;
|
|
@@ -1536,16 +1705,8 @@
|
|
|
1536
1705
|
display: none;
|
|
1537
1706
|
}
|
|
1538
1707
|
|
|
1539
|
-
.tsystem-
|
|
1540
|
-
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
|
-
.tsystem-d_inline-block {
|
|
1544
|
-
display: inline-block;
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
.tsystem-stk_icon\.base {
|
|
1548
|
-
stroke: var(--Tight-colors-icon-base);
|
|
1708
|
+
.tsystem-pos_sticky {
|
|
1709
|
+
position: sticky;
|
|
1549
1710
|
}
|
|
1550
1711
|
|
|
1551
1712
|
.tsystem-stk_icon\.base\.weak {
|
|
@@ -1556,14 +1717,18 @@
|
|
|
1556
1717
|
line-height: 14px;
|
|
1557
1718
|
}
|
|
1558
1719
|
|
|
1559
|
-
.tsystem-
|
|
1560
|
-
|
|
1720
|
+
.tsystem-stk_icon\.base {
|
|
1721
|
+
stroke: var(--Tight-colors-icon-base);
|
|
1561
1722
|
}
|
|
1562
1723
|
|
|
1563
1724
|
.tsystem-bg-c_brand\.secondary {
|
|
1564
1725
|
background-color: var(--Tight-colors-brand-secondary);
|
|
1565
1726
|
}
|
|
1566
1727
|
|
|
1728
|
+
.tsystem-c_var\(--Tight-colors-brand-secondary\) {
|
|
1729
|
+
color: var(--Tight-colors-brand-secondary);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1567
1732
|
.tsystem-bdr-r_0 {
|
|
1568
1733
|
border-top-right-radius: 0;
|
|
1569
1734
|
border-bottom-right-radius: 0;
|
|
@@ -1574,6 +1739,10 @@
|
|
|
1574
1739
|
border-bottom-left-radius: 0;
|
|
1575
1740
|
}
|
|
1576
1741
|
|
|
1742
|
+
.tsystem-jc_right {
|
|
1743
|
+
justify-content: right;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1577
1746
|
.tsystem-bg-c_foreground {
|
|
1578
1747
|
background-color: foreground;
|
|
1579
1748
|
}
|
|
@@ -1606,10 +1775,6 @@
|
|
|
1606
1775
|
font-weight: normal;
|
|
1607
1776
|
}
|
|
1608
1777
|
|
|
1609
|
-
.tsystem-ta_left {
|
|
1610
|
-
text-align: left;
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
1778
|
.tsystem-text-align-last_initial {
|
|
1614
1779
|
text-align-last: initial;
|
|
1615
1780
|
}
|
|
@@ -1643,10 +1808,6 @@
|
|
|
1643
1808
|
font-size: 16px;
|
|
1644
1809
|
}
|
|
1645
1810
|
|
|
1646
|
-
.tsystem-d_block {
|
|
1647
|
-
display: block;
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
1811
|
.tsystem-bx-sh_none {
|
|
1651
1812
|
box-shadow: none;
|
|
1652
1813
|
}
|
|
@@ -1667,10 +1828,46 @@
|
|
|
1667
1828
|
stroke-dasharray: 0;
|
|
1668
1829
|
}
|
|
1669
1830
|
|
|
1831
|
+
.tsystem-stk_var\(--Tight-colors-border-layout\) {
|
|
1832
|
+
stroke: var(--Tight-colors-border-layout);
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.tsystem-fill_var\(--Tight-colors-money-positive\) {
|
|
1836
|
+
fill: var(--Tight-colors-money-positive);
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.tsystem-fill_var\(--Tight-colors-money-positive-weak\) {
|
|
1840
|
+
fill: var(--Tight-colors-money-positive-weak);
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.tsystem-fill_var\(--Tight-colors-money-negative\) {
|
|
1844
|
+
fill: var(--Tight-colors-money-negative);
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.tsystem-fill_var\(--Tight-colors-money-negative-weak\) {
|
|
1848
|
+
fill: var(--Tight-colors-money-negative-weak);
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.tsystem-fill_var\(--Tight-colors-border-layout\) {
|
|
1852
|
+
fill: var(--Tight-colors-border-layout);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1670
1855
|
.tsystem-y_0 {
|
|
1671
1856
|
y: 0;
|
|
1672
1857
|
}
|
|
1673
1858
|
|
|
1859
|
+
.tsystem-stk_var\(--Tight-colors-border-layout-strong\) {
|
|
1860
|
+
stroke: var(--Tight-colors-border-layout-strong);
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.tsystem-fill_var\(--Tight-colors-money\) {
|
|
1864
|
+
fill: var(--Tight-colors-money);
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.tsystem-stk_var\(--Tight-colors-money\) {
|
|
1868
|
+
stroke: var(--Tight-colors-money);
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1674
1871
|
.tsystem-stk-w_1 {
|
|
1675
1872
|
stroke-width: 1;
|
|
1676
1873
|
}
|
|
@@ -1687,62 +1884,58 @@
|
|
|
1687
1884
|
z-index: 100;
|
|
1688
1885
|
}
|
|
1689
1886
|
|
|
1690
|
-
.tsystem-
|
|
1691
|
-
|
|
1887
|
+
.tsystem-white-space_wrap {
|
|
1888
|
+
white-space: wrap;
|
|
1692
1889
|
}
|
|
1693
1890
|
|
|
1694
1891
|
.tsystem-c_inherit {
|
|
1695
1892
|
color: var(--Tight-colors-inherit);
|
|
1696
1893
|
}
|
|
1697
1894
|
|
|
1895
|
+
.tsystem-bg-c_surface\.intent\.action\.discrete\.active {
|
|
1896
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1698
1899
|
.tsystem-max-w_100\% {
|
|
1699
1900
|
max-width: 100%;
|
|
1700
1901
|
}
|
|
1701
1902
|
|
|
1702
|
-
.tsystem-
|
|
1703
|
-
|
|
1903
|
+
.tsystem-w_50px {
|
|
1904
|
+
width: 50px;
|
|
1704
1905
|
}
|
|
1705
1906
|
|
|
1706
|
-
.tsystem-
|
|
1707
|
-
|
|
1907
|
+
.tsystem-h_50px {
|
|
1908
|
+
height: 50px;
|
|
1708
1909
|
}
|
|
1709
1910
|
|
|
1710
|
-
.tsystem-
|
|
1711
|
-
|
|
1911
|
+
.tsystem-w_100\% {
|
|
1912
|
+
width: 100%;
|
|
1712
1913
|
}
|
|
1713
1914
|
|
|
1714
|
-
.tsystem-
|
|
1715
|
-
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
.tsystem-pb_20px {
|
|
1719
|
-
padding-bottom: 20px;
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
|
-
.tsystem-bottom_0 {
|
|
1723
|
-
bottom: 0;
|
|
1915
|
+
.tsystem-w_sm {
|
|
1916
|
+
width: sm;
|
|
1724
1917
|
}
|
|
1725
1918
|
|
|
1726
1919
|
.tsystem-w_202px {
|
|
1727
1920
|
width: 202px;
|
|
1728
1921
|
}
|
|
1729
1922
|
|
|
1730
|
-
.tsystem-min-
|
|
1731
|
-
min-width:
|
|
1923
|
+
.tsystem-min-w_350px {
|
|
1924
|
+
min-width: 350px;
|
|
1732
1925
|
}
|
|
1733
1926
|
|
|
1734
1927
|
.tsystem-min-w_200px {
|
|
1735
1928
|
min-width: 200px;
|
|
1736
1929
|
}
|
|
1737
1930
|
|
|
1738
|
-
.tsystem-w_100\% {
|
|
1739
|
-
width: 100%;
|
|
1740
|
-
}
|
|
1741
|
-
|
|
1742
1931
|
.tsystem-h_72 {
|
|
1743
1932
|
height: 72px;
|
|
1744
1933
|
}
|
|
1745
1934
|
|
|
1935
|
+
.tsystem-min-w_300px {
|
|
1936
|
+
min-width: 300px;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1746
1939
|
.tsystem-w_20px {
|
|
1747
1940
|
width: 20px;
|
|
1748
1941
|
}
|
|
@@ -1783,6 +1976,34 @@
|
|
|
1783
1976
|
max-width: 325px;
|
|
1784
1977
|
}
|
|
1785
1978
|
|
|
1979
|
+
.tsystem-top_-1 {
|
|
1980
|
+
top: -1px;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.tsystem-right_-1 {
|
|
1984
|
+
right: -1px;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
.tsystem-w_10 {
|
|
1988
|
+
width: 10px;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
.tsystem-h_10 {
|
|
1992
|
+
height: 10px;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.tsystem-w_25px {
|
|
1996
|
+
width: 25px;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
.tsystem-h_25px {
|
|
2000
|
+
height: 25px;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.tsystem-ov-y_auto {
|
|
2004
|
+
overflow-y: auto;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1786
2007
|
.tsystem-ov-x_hidden {
|
|
1787
2008
|
overflow-x: hidden;
|
|
1788
2009
|
}
|
|
@@ -1859,6 +2080,26 @@
|
|
|
1859
2080
|
max-width: 360px;
|
|
1860
2081
|
}
|
|
1861
2082
|
|
|
2083
|
+
.tsystem-max-w_600px {
|
|
2084
|
+
max-width: 600px;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.tsystem-min-w_400px {
|
|
2088
|
+
min-width: 400px;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
.tsystem-min-w_100dvw {
|
|
2092
|
+
min-width: 100dvw;
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.tsystem-max-w_100dvw {
|
|
2096
|
+
max-width: 100dvw;
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
.tsystem-h_100dvh {
|
|
2100
|
+
height: 100dvh;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
1862
2103
|
.tsystem-right_0 {
|
|
1863
2104
|
right: 0;
|
|
1864
2105
|
}
|
|
@@ -1871,6 +2112,10 @@
|
|
|
1871
2112
|
left: 0;
|
|
1872
2113
|
}
|
|
1873
2114
|
|
|
2115
|
+
.tsystem-bottom_0 {
|
|
2116
|
+
bottom: 0;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
1874
2119
|
.tsystem-max-h_100\% {
|
|
1875
2120
|
max-height: 100%;
|
|
1876
2121
|
}
|
|
@@ -1879,6 +2124,10 @@
|
|
|
1879
2124
|
min-width: 100%;
|
|
1880
2125
|
}
|
|
1881
2126
|
|
|
2127
|
+
.tsystem-min-w_128px {
|
|
2128
|
+
min-width: 128px;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
1882
2131
|
.tsystem-w_0 {
|
|
1883
2132
|
width: 0;
|
|
1884
2133
|
}
|
|
@@ -1895,20 +2144,16 @@
|
|
|
1895
2144
|
width: 100dvw;
|
|
1896
2145
|
}
|
|
1897
2146
|
|
|
1898
|
-
.tsystem-h_100dvh {
|
|
1899
|
-
height: 100dvh;
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
.tsystem-min-w_100dvw {
|
|
1903
|
-
min-width: 100dvw;
|
|
1904
|
-
}
|
|
1905
|
-
|
|
1906
2147
|
.tsystem-max-h_100dvh {
|
|
1907
2148
|
max-height: 100dvh;
|
|
1908
2149
|
}
|
|
1909
2150
|
|
|
1910
|
-
.tsystem-
|
|
1911
|
-
|
|
2151
|
+
.tsystem-min-w_384px {
|
|
2152
|
+
min-width: 384px;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.tsystem-min-h_36px {
|
|
2156
|
+
min-height: 36px;
|
|
1912
2157
|
}
|
|
1913
2158
|
|
|
1914
2159
|
.tsystem-w_24 {
|
|
@@ -1983,12 +2228,16 @@
|
|
|
1983
2228
|
height: 80px;
|
|
1984
2229
|
}
|
|
1985
2230
|
|
|
1986
|
-
.tsystem-
|
|
1987
|
-
width:
|
|
2231
|
+
.tsystem-max-w_900px {
|
|
2232
|
+
max-width: 900px;
|
|
1988
2233
|
}
|
|
1989
2234
|
|
|
1990
|
-
.tsystem-
|
|
1991
|
-
|
|
2235
|
+
.tsystem-min-w_360px {
|
|
2236
|
+
min-width: 360px;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.tsystem-w_max-content {
|
|
2240
|
+
width: max-content;
|
|
1992
2241
|
}
|
|
1993
2242
|
|
|
1994
2243
|
.tsystem-min-w_fit-content {
|
|
@@ -2075,6 +2324,14 @@
|
|
|
2075
2324
|
height: 250px;
|
|
2076
2325
|
}
|
|
2077
2326
|
|
|
2327
|
+
.tsystem-pb_20px {
|
|
2328
|
+
padding-bottom: 20px;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.tsystem-pt_20px {
|
|
2332
|
+
padding-top: 20px;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2078
2335
|
.tsystem-pb_14px {
|
|
2079
2336
|
padding-bottom: 14px;
|
|
2080
2337
|
}
|
|
@@ -2087,6 +2344,70 @@
|
|
|
2087
2344
|
padding-right: 15px;
|
|
2088
2345
|
}
|
|
2089
2346
|
|
|
2347
|
+
.tsystem-pt_10px {
|
|
2348
|
+
padding-top: 10px;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.tsystem-min-h_200px {
|
|
2352
|
+
min-height: 200px;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.tsystem-h_fit-content {
|
|
2356
|
+
height: fit-content;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.tsystem-mt_15px {
|
|
2360
|
+
margin-top: 15px;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.tsystem-mb_15px {
|
|
2364
|
+
margin-bottom: 15px;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.tsystem-w_fill-parent {
|
|
2368
|
+
width: fill-parent;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.tsystem-pr_10px {
|
|
2372
|
+
padding-right: 10px;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
.tsystem-max-w_300px {
|
|
2376
|
+
max-width: 300px;
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
.tsystem-max-w_auto {
|
|
2380
|
+
max-width: auto;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.tsystem-mb_5px {
|
|
2384
|
+
margin-bottom: 5px;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.tsystem-h_45px {
|
|
2388
|
+
height: 45px;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.tsystem-h_12px {
|
|
2392
|
+
height: 12px;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.tsystem-w_150px {
|
|
2396
|
+
width: 150px;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
.tsystem-h_16px {
|
|
2400
|
+
height: 16px;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
.tsystem-mb_8px {
|
|
2404
|
+
margin-bottom: 8px;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
.tsystem-mb_20px {
|
|
2408
|
+
margin-bottom: 20px;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2090
2411
|
.tsystem-bottom_-25px {
|
|
2091
2412
|
bottom: -25px;
|
|
2092
2413
|
}
|
|
@@ -2103,6 +2424,10 @@
|
|
|
2103
2424
|
width: 26px;
|
|
2104
2425
|
}
|
|
2105
2426
|
|
|
2427
|
+
.tsystem-mt_0px {
|
|
2428
|
+
margin-top: 0px;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2106
2431
|
.tsystem-max-w_1440 {
|
|
2107
2432
|
max-width: 1440px;
|
|
2108
2433
|
}
|
|
@@ -2119,22 +2444,6 @@
|
|
|
2119
2444
|
padding-right: 5px;
|
|
2120
2445
|
}
|
|
2121
2446
|
|
|
2122
|
-
.tsystem-top_-1 {
|
|
2123
|
-
top: -1px;
|
|
2124
|
-
}
|
|
2125
|
-
|
|
2126
|
-
.tsystem-right_-1 {
|
|
2127
|
-
right: -1px;
|
|
2128
|
-
}
|
|
2129
|
-
|
|
2130
|
-
.tsystem-w_10 {
|
|
2131
|
-
width: 10px;
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.tsystem-h_10 {
|
|
2135
|
-
height: 10px;
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
2447
|
.tsystem-h_35px {
|
|
2139
2448
|
height: 35px;
|
|
2140
2449
|
}
|
|
@@ -2167,10 +2476,6 @@
|
|
|
2167
2476
|
height: 14px;
|
|
2168
2477
|
}
|
|
2169
2478
|
|
|
2170
|
-
.tsystem-h_25px {
|
|
2171
|
-
height: 25px;
|
|
2172
|
-
}
|
|
2173
|
-
|
|
2174
2479
|
.tsystem-max-w_200px {
|
|
2175
2480
|
max-width: 200px;
|
|
2176
2481
|
}
|
|
@@ -2183,22 +2488,6 @@
|
|
|
2183
2488
|
margin-right: 15px;
|
|
2184
2489
|
}
|
|
2185
2490
|
|
|
2186
|
-
.tsystem-max-w_1 {
|
|
2187
|
-
max-width: 1px;
|
|
2188
|
-
}
|
|
2189
|
-
|
|
2190
|
-
.tsystem-w_1 {
|
|
2191
|
-
width: 1px;
|
|
2192
|
-
}
|
|
2193
|
-
|
|
2194
|
-
.tsystem-w_512px {
|
|
2195
|
-
width: 512px;
|
|
2196
|
-
}
|
|
2197
|
-
|
|
2198
|
-
.tsystem-min-h_36px {
|
|
2199
|
-
min-height: 36px;
|
|
2200
|
-
}
|
|
2201
|
-
|
|
2202
2491
|
.tsystem-mb_10px {
|
|
2203
2492
|
margin-bottom: 10px;
|
|
2204
2493
|
}
|
|
@@ -2207,10 +2496,6 @@
|
|
|
2207
2496
|
width: 200px;
|
|
2208
2497
|
}
|
|
2209
2498
|
|
|
2210
|
-
.tsystem-h_16px {
|
|
2211
|
-
height: 16px;
|
|
2212
|
-
}
|
|
2213
|
-
|
|
2214
2499
|
.tsystem-h_52px {
|
|
2215
2500
|
height: 52px;
|
|
2216
2501
|
}
|
|
@@ -2239,6 +2524,18 @@
|
|
|
2239
2524
|
min-height: 55px;
|
|
2240
2525
|
}
|
|
2241
2526
|
|
|
2527
|
+
.tsystem-max-w_1 {
|
|
2528
|
+
max-width: 1px;
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
.tsystem-w_1 {
|
|
2532
|
+
width: 1px;
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
.tsystem-mt_35px {
|
|
2536
|
+
margin-top: 35px;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2242
2539
|
.tsystem-w_full {
|
|
2243
2540
|
width: full;
|
|
2244
2541
|
}
|
|
@@ -2283,22 +2580,6 @@
|
|
|
2283
2580
|
min-height: 35px;
|
|
2284
2581
|
}
|
|
2285
2582
|
|
|
2286
|
-
.tsystem-h_fit-content {
|
|
2287
|
-
height: fit-content;
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
|
-
.tsystem-w_600px {
|
|
2291
|
-
width: 600px;
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
|
-
.tsystem-min-h_200px {
|
|
2295
|
-
min-height: 200px;
|
|
2296
|
-
}
|
|
2297
|
-
|
|
2298
|
-
.tsystem-pr_10px {
|
|
2299
|
-
padding-right: 10px;
|
|
2300
|
-
}
|
|
2301
|
-
|
|
2302
2583
|
.tsystem-pt_4px {
|
|
2303
2584
|
padding-top: 4px;
|
|
2304
2585
|
}
|
|
@@ -2331,6 +2612,14 @@
|
|
|
2331
2612
|
margin-bottom: 10px;
|
|
2332
2613
|
}
|
|
2333
2614
|
|
|
2615
|
+
.tsystem-w_342px {
|
|
2616
|
+
width: 342px;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
.tsystem-w_512px {
|
|
2620
|
+
width: 512px;
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2334
2623
|
.tsystem-h_16 {
|
|
2335
2624
|
height: 16px;
|
|
2336
2625
|
}
|
|
@@ -2375,18 +2664,6 @@
|
|
|
2375
2664
|
height: 39px;
|
|
2376
2665
|
}
|
|
2377
2666
|
|
|
2378
|
-
.tsystem-mt_35px {
|
|
2379
|
-
margin-top: 35px;
|
|
2380
|
-
}
|
|
2381
|
-
|
|
2382
|
-
.tsystem-mb_20px {
|
|
2383
|
-
margin-bottom: 20px;
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
.tsystem-pt_10px {
|
|
2387
|
-
padding-top: 10px;
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2390
2667
|
.tsystem-pb_8px {
|
|
2391
2668
|
padding-bottom: 8px;
|
|
2392
2669
|
}
|
|
@@ -2415,7 +2692,19 @@
|
|
|
2415
2692
|
margin-left: auto;
|
|
2416
2693
|
}
|
|
2417
2694
|
|
|
2418
|
-
|
|
2695
|
+
.tsystem-w_150 {
|
|
2696
|
+
width: 150px;
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
.tsystem-min-w_150 {
|
|
2700
|
+
min-width: 150px;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.\[\&\[data-haserror\=\'true\'\]\]\:tsystem-bd_\{borderWidths\.lg\}_solid[data-haserror='true'] {
|
|
2704
|
+
border: var(--Tight-borderWidths-lg) solid;
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.\[\&\[data-selected\=\'true\'\]\]\:tsystem-bd_\{borderWidths\.lg\}_solid[data-selected='true'] {
|
|
2419
2708
|
border: var(--Tight-borderWidths-lg) solid;
|
|
2420
2709
|
}
|
|
2421
2710
|
|
|
@@ -2455,7 +2744,12 @@
|
|
|
2455
2744
|
border-radius: 50%;
|
|
2456
2745
|
}
|
|
2457
2746
|
|
|
2458
|
-
.\[\&\[data-focused\=\'true\'\]\]\:tsystem-ring_none[data-focused='true']
|
|
2747
|
+
.\[\&\[data-focused\=\'true\'\]\]\:tsystem-ring_none[data-focused='true'] {
|
|
2748
|
+
outline: 2px solid transparent;
|
|
2749
|
+
outline-offset: 2px;
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
.\[\&_\.recharts-surface\]\:tsystem-ring_none .recharts-surface {
|
|
2459
2753
|
outline: 2px solid transparent;
|
|
2460
2754
|
outline-offset: 2px;
|
|
2461
2755
|
}
|
|
@@ -2476,6 +2770,18 @@
|
|
|
2476
2770
|
color: var(--Tight-colors-typography-intent-secondary);
|
|
2477
2771
|
}
|
|
2478
2772
|
|
|
2773
|
+
.\[\&\:disabled\]\:tsystem-cursor_default:disabled {
|
|
2774
|
+
cursor: default;
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.\[\&_path\]\:tsystem-stk_icon\.base path {
|
|
2778
|
+
stroke: var(--Tight-colors-icon-base);
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.\[\&_path\]\:tsystem-stk_icon\.accent\.danger path {
|
|
2782
|
+
stroke: var(--Tight-colors-icon-accent-danger);
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2479
2785
|
.\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.base .Tight-sub-label {
|
|
2480
2786
|
color: var(--Tight-colors-typography-base);
|
|
2481
2787
|
}
|
|
@@ -2532,10 +2838,6 @@
|
|
|
2532
2838
|
color: var(--Tight-colors-typography-intent-danger);
|
|
2533
2839
|
}
|
|
2534
2840
|
|
|
2535
|
-
.\[\&\:disabled\]\:tsystem-cursor_default:disabled {
|
|
2536
|
-
cursor: default;
|
|
2537
|
-
}
|
|
2538
|
-
|
|
2539
2841
|
.\[\&\:\:before\]\:tsystem-content_\'\'::before {
|
|
2540
2842
|
content: '';
|
|
2541
2843
|
}
|
|
@@ -2600,14 +2902,6 @@
|
|
|
2600
2902
|
pointer-events: none;
|
|
2601
2903
|
}
|
|
2602
2904
|
|
|
2603
|
-
.\[\&_path\]\:tsystem-stk_icon\.base path {
|
|
2604
|
-
stroke: var(--Tight-colors-icon-base);
|
|
2605
|
-
}
|
|
2606
|
-
|
|
2607
|
-
.\[\&_path\]\:tsystem-stk_icon\.accent\.danger path {
|
|
2608
|
-
stroke: var(--Tight-colors-icon-accent-danger);
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
2905
|
.disabled\:tsystem-cursor_default:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
2612
2906
|
cursor: default;
|
|
2613
2907
|
}
|
|
@@ -2797,6 +3091,10 @@
|
|
|
2797
3091
|
outline: 4px solid;
|
|
2798
3092
|
}
|
|
2799
3093
|
|
|
3094
|
+
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
3095
|
+
outline: 4px solid;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
2800
3098
|
.focus\:tsystem-ring_none:is(:focus, [data-focus]) {
|
|
2801
3099
|
outline: 2px solid transparent;
|
|
2802
3100
|
outline-offset: 2px;
|
|
@@ -2843,10 +3141,6 @@
|
|
|
2843
3141
|
outline: 4px solid;
|
|
2844
3142
|
}
|
|
2845
3143
|
|
|
2846
|
-
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
2847
|
-
outline: 4px solid;
|
|
2848
|
-
}
|
|
2849
|
-
|
|
2850
3144
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring_4px_solid:has(button:focus-visible) {
|
|
2851
3145
|
outline: 4px solid;
|
|
2852
3146
|
}
|
|
@@ -2863,6 +3157,10 @@
|
|
|
2863
3157
|
outline-offset: -1px;
|
|
2864
3158
|
}
|
|
2865
3159
|
|
|
3160
|
+
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
3161
|
+
outline-color: var(--Tight-colors-border-layout);
|
|
3162
|
+
}
|
|
3163
|
+
|
|
2866
3164
|
.focus\:tsystem-cursor_text:is(:focus, [data-focus]) {
|
|
2867
3165
|
cursor: text;
|
|
2868
3166
|
}
|
|
@@ -2903,10 +3201,6 @@
|
|
|
2903
3201
|
outline-offset: -2px;
|
|
2904
3202
|
}
|
|
2905
3203
|
|
|
2906
|
-
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
2907
|
-
outline-color: var(--Tight-colors-border-layout);
|
|
2908
|
-
}
|
|
2909
|
-
|
|
2910
3204
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring-c_border\.layout:has(button:focus-visible) {
|
|
2911
3205
|
outline-color: var(--Tight-colors-border-layout);
|
|
2912
3206
|
}
|
|
@@ -2935,18 +3229,26 @@
|
|
|
2935
3229
|
bottom: 0;
|
|
2936
3230
|
}
|
|
2937
3231
|
|
|
2938
|
-
|
|
2939
|
-
|
|
3232
|
+
.hover\:tsystem-bg-c_surface\.intent\.action\.hover:is(:hover, [data-hover]) {
|
|
3233
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
2940
3234
|
}
|
|
2941
3235
|
|
|
2942
|
-
|
|
2943
|
-
|
|
3236
|
+
.hover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:is(:hover, [data-hover]) {
|
|
3237
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
2944
3238
|
}
|
|
2945
3239
|
|
|
2946
3240
|
.\[\&\: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 {
|
|
2947
3241
|
border-color: var(--Tight-colors-transparent);
|
|
2948
3242
|
}
|
|
2949
3243
|
|
|
3244
|
+
.\[\&\: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 {
|
|
3245
|
+
border-color: var(--Tight-colors-border-intent-action-active);
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
.\[\&\: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 {
|
|
3249
|
+
border-color: var(--Tight-colors-border-intent-danger-active);
|
|
3250
|
+
}
|
|
3251
|
+
|
|
2950
3252
|
.\[\&\: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 {
|
|
2951
3253
|
border-color: var(--Tight-colors-border-intent-primary-active);
|
|
2952
3254
|
}
|
|
@@ -2963,14 +3265,6 @@
|
|
|
2963
3265
|
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
2964
3266
|
}
|
|
2965
3267
|
|
|
2966
|
-
.\[\&\: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 {
|
|
2967
|
-
background-color: var(--Tight-colors-surface-intent-action-active);
|
|
2968
|
-
}
|
|
2969
|
-
|
|
2970
|
-
.\[\&\: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 {
|
|
2971
|
-
background-color: var(--Tight-colors-surface-intent-danger-active);
|
|
2972
|
-
}
|
|
2973
|
-
|
|
2974
3268
|
.\[\&\: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 {
|
|
2975
3269
|
color: var(--Tight-colors-icon-intent-action-active);
|
|
2976
3270
|
}
|
|
@@ -2979,6 +3273,18 @@
|
|
|
2979
3273
|
fill: var(--Tight-colors-icon-intent-action-active);
|
|
2980
3274
|
}
|
|
2981
3275
|
|
|
3276
|
+
.active\:tsystem-bg-c_surface\.intent\.action\.discrete\.active:is(:active, [data-active]) {
|
|
3277
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.\[\&\: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 {
|
|
3281
|
+
background-color: var(--Tight-colors-surface-intent-action-active);
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
.\[\&\: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 {
|
|
3285
|
+
background-color: var(--Tight-colors-surface-intent-danger-active);
|
|
3286
|
+
}
|
|
3287
|
+
|
|
2982
3288
|
.\[\&\: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 {
|
|
2983
3289
|
background-color: var(--Tight-colors-surface-intent-primary-active);
|
|
2984
3290
|
}
|
|
@@ -3068,30 +3374,46 @@
|
|
|
3068
3374
|
}
|
|
3069
3375
|
|
|
3070
3376
|
@media screen and (min-width: 40rem) {
|
|
3377
|
+
.sm\:tsystem-m_32px {
|
|
3378
|
+
margin: 32px;
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3071
3381
|
.sm\:tsystem-p_4px {
|
|
3072
3382
|
padding: 4px;
|
|
3073
3383
|
}
|
|
3074
3384
|
|
|
3385
|
+
.sm\:tsystem-bd-c_transparent {
|
|
3386
|
+
border-color: var(--Tight-colors-transparent);
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3075
3389
|
.sm\:tsystem-gap_0 {
|
|
3076
3390
|
gap: 0;
|
|
3077
3391
|
}
|
|
3078
3392
|
|
|
3079
|
-
.sm\:tsystem-
|
|
3080
|
-
|
|
3393
|
+
.sm\:tsystem-place-self_flex-start {
|
|
3394
|
+
place-self: flex-start;
|
|
3081
3395
|
}
|
|
3082
3396
|
|
|
3083
|
-
.sm\:tsystem-
|
|
3084
|
-
|
|
3397
|
+
.sm\:tsystem-place-self_flex-end {
|
|
3398
|
+
place-self: flex-end;
|
|
3085
3399
|
}
|
|
3086
3400
|
|
|
3087
|
-
.sm\:tsystem-
|
|
3088
|
-
|
|
3401
|
+
.sm\:tsystem-bg-c_surface\.intent\.action\.discrete {
|
|
3402
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete);
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
.sm\:tsystem-fs_label\.strong {
|
|
3406
|
+
font-size: var(--Tight-fontSizes-label-strong);
|
|
3089
3407
|
}
|
|
3090
3408
|
|
|
3091
3409
|
.sm\:tsystem-lh_16px {
|
|
3092
3410
|
line-height: 16px;
|
|
3093
3411
|
}
|
|
3094
3412
|
|
|
3413
|
+
.sm\:tsystem-fs_label {
|
|
3414
|
+
font-size: var(--Tight-fontSizes-label);
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3095
3417
|
.sm\:tsystem-fs_label\.sub {
|
|
3096
3418
|
font-size: var(--Tight-fontSizes-label-sub);
|
|
3097
3419
|
}
|
|
@@ -3112,14 +3434,58 @@
|
|
|
3112
3434
|
font-size: var(--Tight-fontSizes-body);
|
|
3113
3435
|
}
|
|
3114
3436
|
|
|
3115
|
-
.sm\:tsystem-fs_label\.strong {
|
|
3116
|
-
font-size: var(--Tight-fontSizes-label-strong);
|
|
3117
|
-
}
|
|
3118
|
-
|
|
3119
3437
|
.sm\:tsystem-fs_label\.strongSub {
|
|
3120
3438
|
font-size: var(--Tight-fontSizes-label-strongSub);
|
|
3121
3439
|
}
|
|
3122
3440
|
|
|
3441
|
+
.sm\:tsystem-d_none {
|
|
3442
|
+
display: none;
|
|
3443
|
+
}
|
|
3444
|
+
|
|
3445
|
+
.sm\:tsystem-grid-tc_300px_auto_175px {
|
|
3446
|
+
grid-template-columns: 300px auto 175px;
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.sm\:tsystem-d_block {
|
|
3450
|
+
display: block;
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.sm\:tsystem-grid-tc_300px_auto_300px {
|
|
3454
|
+
grid-template-columns: 300px auto 300px;
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
.sm\:tsystem-ai_flex-start {
|
|
3458
|
+
align-items: flex-start;
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
.sm\:tsystem-ai_flex-end {
|
|
3462
|
+
align-items: flex-end;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
.sm\:tsystem-trf_none {
|
|
3466
|
+
transform: none;
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
.sm\:tsystem-jc_center {
|
|
3470
|
+
justify-content: center;
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
.sm\:tsystem-jc_flex-end {
|
|
3474
|
+
justify-content: flex-end;
|
|
3475
|
+
}
|
|
3476
|
+
|
|
3477
|
+
.sm\:tsystem-min-w_600px {
|
|
3478
|
+
min-width: 600px;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
.sm\:tsystem-max-w_900px {
|
|
3482
|
+
max-width: 900px;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
.sm\:tsystem-h_auto {
|
|
3486
|
+
height: auto;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3123
3489
|
.sm\:tsystem-left_auto {
|
|
3124
3490
|
left: auto;
|
|
3125
3491
|
}
|
|
@@ -3140,6 +3506,10 @@
|
|
|
3140
3506
|
min-width: 512px;
|
|
3141
3507
|
}
|
|
3142
3508
|
|
|
3509
|
+
.sm\:tsystem-max-w_512px {
|
|
3510
|
+
max-width: 512px;
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3143
3513
|
.sm\:tsystem-w_100dvw {
|
|
3144
3514
|
width: 100dvw;
|
|
3145
3515
|
}
|
|
@@ -3179,173 +3549,309 @@
|
|
|
3179
3549
|
.sm\:tsystem-h_60px {
|
|
3180
3550
|
height: 60px;
|
|
3181
3551
|
}
|
|
3552
|
+
|
|
3553
|
+
.sm\:tsystem-max-w_300 {
|
|
3554
|
+
max-width: 300px;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
.sm\:tsystem-min-w_360px {
|
|
3558
|
+
min-width: 360px;
|
|
3559
|
+
}
|
|
3560
|
+
|
|
3561
|
+
.sm\:tsystem-max-w_392px {
|
|
3562
|
+
max-width: 392px;
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
@media screen and (min-width: 40rem) {
|
|
3567
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3568
|
+
.supportHover\:sm\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3569
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3570
|
+
}
|
|
3571
|
+
}
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
@media screen and (min-width: 53.125rem) {
|
|
3575
|
+
.md\:tsystem-flex_1_1_0 {
|
|
3576
|
+
flex: 1 1 0;
|
|
3577
|
+
}
|
|
3578
|
+
|
|
3579
|
+
.md\:tsystem-flex_0_0_342px {
|
|
3580
|
+
flex: 0 0 342px;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
.md\:tsystem-d_grid {
|
|
3584
|
+
display: grid;
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
.md\:tsystem-jc_center {
|
|
3588
|
+
justify-content: center;
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
.md\:tsystem-jc_flex-end {
|
|
3592
|
+
justify-content: flex-end;
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
.md\:tsystem-flex-d_column {
|
|
3596
|
+
flex-direction: column;
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3599
|
+
.md\:tsystem-ai_start {
|
|
3600
|
+
align-items: start;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
.md\:tsystem-min-w_800px {
|
|
3604
|
+
min-width: 800px;
|
|
3605
|
+
}
|
|
3182
3606
|
}
|
|
3183
3607
|
|
|
3184
3608
|
@media (hover: hover) and (pointer: fine) {
|
|
3185
3609
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.secondary\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3186
3610
|
color: var(--Tight-colors-typography-intent-secondary-hover);
|
|
3611
|
+
}
|
|
3187
3612
|
}
|
|
3188
3613
|
|
|
3614
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3189
3615
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3190
3616
|
color: var(--Tight-colors-typography-intent-action-hover);
|
|
3617
|
+
}
|
|
3191
3618
|
}
|
|
3192
3619
|
|
|
3620
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3193
3621
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3194
3622
|
color: var(--Tight-colors-typography-intent-danger-hover);
|
|
3623
|
+
}
|
|
3195
3624
|
}
|
|
3196
3625
|
|
|
3626
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3197
3627
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3198
3628
|
color: var(--Tight-colors-typography-intent-primary-hover);
|
|
3629
|
+
}
|
|
3199
3630
|
}
|
|
3200
3631
|
|
|
3632
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3201
3633
|
.supportHover\:notDisabled\:\[\&_path\]\:tsystem-stk_icon\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]) path:hover {
|
|
3202
3634
|
stroke: var(--Tight-colors-icon-intent-primary-hover);
|
|
3635
|
+
}
|
|
3203
3636
|
}
|
|
3204
3637
|
|
|
3638
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3205
3639
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3206
3640
|
color: var(--Tight-colors-typography-intent-success-hover);
|
|
3641
|
+
}
|
|
3207
3642
|
}
|
|
3208
3643
|
|
|
3644
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3209
3645
|
.supportHover\:notDisabled\:\[\&_path\]\:tsystem-stk_icon\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]) path:hover {
|
|
3210
3646
|
stroke: var(--Tight-colors-icon-intent-success-hover);
|
|
3647
|
+
}
|
|
3211
3648
|
}
|
|
3212
3649
|
|
|
3650
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3213
3651
|
.supportHover\:notDisabled\:\[\&_\.Tight-text\]\:tsystem-c_typography\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]) .Tight-text:hover {
|
|
3214
3652
|
color: var(--Tight-colors-typography-intent-warning-hover);
|
|
3653
|
+
}
|
|
3215
3654
|
}
|
|
3216
3655
|
|
|
3656
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3217
3657
|
.supportHover\:notDisabled\:tsystem-bd_\{borderWidths\.lg\}_solid:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3218
3658
|
border: var(--Tight-borderWidths-lg) solid;
|
|
3659
|
+
}
|
|
3219
3660
|
}
|
|
3220
3661
|
|
|
3662
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3221
3663
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3222
3664
|
border-color: var(--Tight-colors-border-layout);
|
|
3665
|
+
}
|
|
3223
3666
|
}
|
|
3224
3667
|
|
|
3668
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3669
|
+
.supportHover\:enabled\:tsystem-bd-c_border\.intent\.action\.hover:enabled:hover {
|
|
3670
|
+
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3671
|
+
}
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3225
3675
|
.\[\&_\>_\.Tight-text\]\:supportHover\:tsystem-trs_color_100ms_ease-out > .Tight-text:hover {
|
|
3226
3676
|
transition: color 100ms ease-out;
|
|
3677
|
+
}
|
|
3227
3678
|
}
|
|
3228
3679
|
|
|
3680
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3229
3681
|
.\[\&_path\]\:supportHover\:tsystem-trs_stroke_100ms_ease-out path:hover {
|
|
3230
3682
|
transition: stroke 100ms ease-out;
|
|
3683
|
+
}
|
|
3231
3684
|
}
|
|
3232
3685
|
|
|
3686
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3233
3687
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3234
3688
|
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3689
|
+
}
|
|
3235
3690
|
}
|
|
3236
3691
|
|
|
3692
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3237
3693
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3238
3694
|
border-color: var(--Tight-colors-border-intent-danger-hover);
|
|
3239
3695
|
}
|
|
3240
|
-
|
|
3241
|
-
.supportHover\:enabled\:tsystem-bd-c_border\.intent\.action\.hover:enabled:hover {
|
|
3242
|
-
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3243
3696
|
}
|
|
3244
3697
|
|
|
3698
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3245
3699
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3246
3700
|
border-color: var(--Tight-colors-border-intent-primary-hover);
|
|
3701
|
+
}
|
|
3247
3702
|
}
|
|
3248
3703
|
|
|
3704
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3249
3705
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3250
3706
|
border-color: var(--Tight-colors-border-intent-success-hover);
|
|
3707
|
+
}
|
|
3251
3708
|
}
|
|
3252
3709
|
|
|
3710
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3253
3711
|
.supportHover\:notDisabled\:tsystem-bd-c_border\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3254
3712
|
border-color: var(--Tight-colors-border-intent-warning-hover);
|
|
3713
|
+
}
|
|
3255
3714
|
}
|
|
3256
3715
|
|
|
3716
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3257
3717
|
.\[\&_\.Tight-text\:\:after\]\:supportHover\:tsystem-trs_width_300ms_ease-out .Tight-text::after:hover {
|
|
3258
3718
|
transition: width 300ms ease-out;
|
|
3719
|
+
}
|
|
3259
3720
|
}
|
|
3260
3721
|
|
|
3722
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3261
3723
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3262
3724
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3725
|
+
}
|
|
3263
3726
|
}
|
|
3264
3727
|
|
|
3728
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3729
|
+
.supportHover\:enabled\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:enabled:hover {
|
|
3730
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3731
|
+
}
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3735
|
+
.supportHover\:enabled\:tsystem-c_icon\.intent\.action\.hover:enabled:hover {
|
|
3736
|
+
color: var(--Tight-colors-icon-intent-action-hover);
|
|
3737
|
+
}
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3741
|
+
.supportHover\:enabled\:tsystem-fill_icon\.intent\.action\.hover:enabled:hover {
|
|
3742
|
+
fill: var(--Tight-colors-icon-intent-action-hover);
|
|
3743
|
+
}
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3746
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3265
3747
|
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover .Tight-sub-label:hover {
|
|
3266
3748
|
color: var(--Tight-colors-typography-intent-secondary-hover);
|
|
3749
|
+
}
|
|
3267
3750
|
}
|
|
3268
3751
|
|
|
3752
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3269
3753
|
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.secondary\.hover .Tight-medium-icon > path:hover {
|
|
3270
3754
|
stroke: var(--Tight-colors-icon-intent-secondary-hover);
|
|
3755
|
+
}
|
|
3271
3756
|
}
|
|
3272
3757
|
|
|
3758
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3273
3759
|
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.action\.hover .Tight-sub-label:hover {
|
|
3274
3760
|
color: var(--Tight-colors-typography-intent-action-hover);
|
|
3761
|
+
}
|
|
3275
3762
|
}
|
|
3276
3763
|
|
|
3764
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3277
3765
|
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.action\.hover .Tight-medium-icon > path:hover {
|
|
3278
3766
|
stroke: var(--Tight-colors-icon-intent-action-hover);
|
|
3767
|
+
}
|
|
3279
3768
|
}
|
|
3280
3769
|
|
|
3770
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3281
3771
|
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.success\.hover .Tight-sub-label:hover {
|
|
3282
3772
|
color: var(--Tight-colors-typography-intent-success-hover);
|
|
3773
|
+
}
|
|
3283
3774
|
}
|
|
3284
3775
|
|
|
3776
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3285
3777
|
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.success\.hover .Tight-medium-icon > path:hover {
|
|
3286
3778
|
stroke: var(--Tight-colors-icon-intent-success-hover);
|
|
3779
|
+
}
|
|
3287
3780
|
}
|
|
3288
3781
|
|
|
3782
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3289
3783
|
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.warning\.hover .Tight-sub-label:hover {
|
|
3290
3784
|
color: var(--Tight-colors-typography-intent-warning-hover);
|
|
3785
|
+
}
|
|
3291
3786
|
}
|
|
3292
3787
|
|
|
3788
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3293
3789
|
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.warning\.hover .Tight-medium-icon > path:hover {
|
|
3294
3790
|
stroke: var(--Tight-colors-icon-intent-warning-hover);
|
|
3791
|
+
}
|
|
3295
3792
|
}
|
|
3296
3793
|
|
|
3794
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3297
3795
|
.supportHover\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.danger\.hover .Tight-sub-label:hover {
|
|
3298
3796
|
color: var(--Tight-colors-typography-intent-danger-hover);
|
|
3797
|
+
}
|
|
3299
3798
|
}
|
|
3300
3799
|
|
|
3800
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3301
3801
|
.supportHover\:\[\&_\.Tight-medium-icon_\>_path\]\:tsystem-stk_icon\.intent\.danger\.hover .Tight-medium-icon > path:hover {
|
|
3302
3802
|
stroke: var(--Tight-colors-icon-intent-danger-hover);
|
|
3803
|
+
}
|
|
3303
3804
|
}
|
|
3304
3805
|
|
|
3806
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3305
3807
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.action\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3306
3808
|
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3809
|
+
}
|
|
3307
3810
|
}
|
|
3308
3811
|
|
|
3812
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3309
3813
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.danger\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3310
3814
|
background-color: var(--Tight-colors-surface-intent-danger-hover);
|
|
3311
3815
|
}
|
|
3312
|
-
|
|
3313
|
-
.supportHover\:enabled\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:enabled:hover {
|
|
3314
|
-
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3315
|
-
}
|
|
3316
|
-
|
|
3317
|
-
.supportHover\:enabled\:tsystem-c_icon\.intent\.action\.hover:enabled:hover {
|
|
3318
|
-
color: var(--Tight-colors-icon-intent-action-hover);
|
|
3319
|
-
}
|
|
3320
|
-
|
|
3321
|
-
.supportHover\:enabled\:tsystem-fill_icon\.intent\.action\.hover:enabled:hover {
|
|
3322
|
-
fill: var(--Tight-colors-icon-intent-action-hover);
|
|
3323
3816
|
}
|
|
3324
3817
|
|
|
3818
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3325
3819
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.primary\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3326
3820
|
background-color: var(--Tight-colors-surface-intent-primary-hover);
|
|
3821
|
+
}
|
|
3327
3822
|
}
|
|
3328
3823
|
|
|
3824
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3329
3825
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.success\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3330
3826
|
background-color: var(--Tight-colors-surface-intent-success-hover);
|
|
3827
|
+
}
|
|
3331
3828
|
}
|
|
3332
3829
|
|
|
3830
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3333
3831
|
.supportHover\:notDisabled\:tsystem-bg-c_surface\.intent\.warning\.hover:not(:disabled, [disabled], [data-disabled]):hover {
|
|
3334
3832
|
background-color: var(--Tight-colors-surface-intent-warning-hover);
|
|
3833
|
+
}
|
|
3335
3834
|
}
|
|
3336
3835
|
|
|
3836
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3337
3837
|
.supportHover\:\[\&\[data-is-checked\=\'false\'\]\]\:tsystem-bg-c_surface\.background\.hover[data-is-checked='false']:hover {
|
|
3338
3838
|
background-color: var(--Tight-colors-surface-background-hover);
|
|
3839
|
+
}
|
|
3339
3840
|
}
|
|
3340
3841
|
|
|
3842
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3341
3843
|
.\[\&\[data-state\=\'closed\'\]\[data-disablehover\=\'false\'\]\]\:supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover[data-state='closed'][data-disablehover='false']:hover {
|
|
3342
3844
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3845
|
+
}
|
|
3343
3846
|
}
|
|
3344
3847
|
|
|
3848
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3345
3849
|
.\[\&_\.Tight-medium-icon_\>_path\]\:supportHover\:tsystem-stk_typography\.intent\.action\.hover .Tight-medium-icon > path:hover {
|
|
3346
3850
|
stroke: var(--Tight-colors-typography-intent-action-hover);
|
|
3851
|
+
}
|
|
3347
3852
|
}
|
|
3348
3853
|
|
|
3854
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3349
3855
|
.\[\&_\.Tight-text\:\:after\]\:supportHover\:tsystem-w_100\% .Tight-text::after:hover {
|
|
3350
3856
|
width: 100%;
|
|
3351
3857
|
}
|
|
@@ -3366,84 +3872,130 @@
|
|
|
3366
3872
|
@media (hover: hover) and (pointer: fine) {
|
|
3367
3873
|
.supportHover\:tsystem-bg_surface\.intent\.secondary\.hover:hover {
|
|
3368
3874
|
background: var(--Tight-colors-surface-intent-secondary-hover);
|
|
3875
|
+
}
|
|
3369
3876
|
}
|
|
3370
3877
|
|
|
3878
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3371
3879
|
.supportHover\:tsystem-bg_surface\.intent\.action\.hover:hover {
|
|
3372
3880
|
background: var(--Tight-colors-surface-intent-action-hover);
|
|
3881
|
+
}
|
|
3373
3882
|
}
|
|
3374
3883
|
|
|
3884
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3375
3885
|
.supportHover\:tsystem-bg_surface\.intent\.success\.hover:hover {
|
|
3376
3886
|
background: var(--Tight-colors-surface-intent-success-hover);
|
|
3887
|
+
}
|
|
3377
3888
|
}
|
|
3378
3889
|
|
|
3890
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3379
3891
|
.supportHover\:tsystem-bg_surface\.intent\.warning\.hover:hover {
|
|
3380
3892
|
background: var(--Tight-colors-surface-intent-warning-hover);
|
|
3893
|
+
}
|
|
3381
3894
|
}
|
|
3382
3895
|
|
|
3896
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3383
3897
|
.supportHover\:tsystem-bg_surface\.intent\.danger\.hover:hover {
|
|
3384
3898
|
background: var(--Tight-colors-surface-intent-danger-hover);
|
|
3899
|
+
}
|
|
3385
3900
|
}
|
|
3386
3901
|
|
|
3902
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3387
3903
|
.supportHover\:tsystem-bd_\{borderWidths\.lg\}_solid:hover {
|
|
3388
3904
|
border: var(--Tight-borderWidths-lg) solid;
|
|
3905
|
+
}
|
|
3389
3906
|
}
|
|
3390
3907
|
|
|
3908
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3391
3909
|
.supportHover\:tsystem-trs_background_100ms_ease-out\,_background-color_100ms_ease-out\,_border-color_100ms_ease-out\,_box-shadow_0ms:hover {
|
|
3392
3910
|
transition: background 100ms ease-out, background-color 100ms ease-out, border-color 100ms ease-out, box-shadow 0ms;
|
|
3911
|
+
}
|
|
3393
3912
|
}
|
|
3394
3913
|
|
|
3914
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3395
3915
|
.supportHover\:tsystem-trs_background_100ms_ease-out\,_box-shadow_0ms:hover {
|
|
3396
3916
|
transition: background 100ms ease-out, box-shadow 0ms;
|
|
3917
|
+
}
|
|
3397
3918
|
}
|
|
3398
3919
|
|
|
3920
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3399
3921
|
.supportHover\:tsystem-trs_color_100ms_ease-out:hover {
|
|
3400
3922
|
transition: color 100ms ease-out;
|
|
3923
|
+
}
|
|
3401
3924
|
}
|
|
3402
3925
|
|
|
3926
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3403
3927
|
.supportHover\:tsystem-bd-c_border\.intent\.secondary\.hover:hover {
|
|
3404
3928
|
border-color: var(--Tight-colors-border-intent-secondary-hover);
|
|
3929
|
+
}
|
|
3405
3930
|
}
|
|
3406
3931
|
|
|
3932
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3407
3933
|
.supportHover\:tsystem-bd-c_border\.intent\.action\.hover:hover {
|
|
3408
3934
|
border-color: var(--Tight-colors-border-intent-action-hover);
|
|
3935
|
+
}
|
|
3409
3936
|
}
|
|
3410
3937
|
|
|
3938
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3411
3939
|
.supportHover\:tsystem-bd-c_border\.intent\.success\.hover:hover {
|
|
3412
3940
|
border-color: var(--Tight-colors-border-intent-success-hover);
|
|
3941
|
+
}
|
|
3413
3942
|
}
|
|
3414
3943
|
|
|
3944
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3415
3945
|
.supportHover\:tsystem-bd-c_border\.intent\.warning\.hover:hover {
|
|
3416
3946
|
border-color: var(--Tight-colors-border-intent-warning-hover);
|
|
3947
|
+
}
|
|
3417
3948
|
}
|
|
3418
3949
|
|
|
3950
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3419
3951
|
.supportHover\:tsystem-bd-c_border\.intent\.danger\.hover:hover {
|
|
3420
3952
|
border-color: var(--Tight-colors-border-intent-danger-hover);
|
|
3953
|
+
}
|
|
3421
3954
|
}
|
|
3422
3955
|
|
|
3423
|
-
|
|
3424
|
-
|
|
3956
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3957
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action:hover {
|
|
3958
|
+
background-color: var(--Tight-colors-surface-intent-action);
|
|
3959
|
+
}
|
|
3425
3960
|
}
|
|
3426
3961
|
|
|
3962
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3427
3963
|
.supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3428
3964
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3965
|
+
}
|
|
3429
3966
|
}
|
|
3430
3967
|
|
|
3968
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3969
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action\.hover:hover {
|
|
3970
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3971
|
+
}
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3431
3975
|
.supportHover\:tsystem-c_typography\.accent\.action:hover {
|
|
3432
3976
|
color: var(--Tight-colors-typography-accent-action);
|
|
3977
|
+
}
|
|
3433
3978
|
}
|
|
3434
3979
|
|
|
3980
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3435
3981
|
.supportHover\:tsystem-cursor_pointer:hover {
|
|
3436
3982
|
cursor: pointer;
|
|
3983
|
+
}
|
|
3437
3984
|
}
|
|
3438
3985
|
|
|
3986
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3439
3987
|
.supportHover\:tsystem-bg-c_brand\.primary:hover {
|
|
3440
3988
|
background-color: var(--Tight-colors-brand-primary);
|
|
3989
|
+
}
|
|
3441
3990
|
}
|
|
3442
3991
|
|
|
3992
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3443
3993
|
.supportHover\:tsystem-c_typography\.contrast:hover {
|
|
3444
3994
|
color: var(--Tight-colors-typography-contrast);
|
|
3995
|
+
}
|
|
3445
3996
|
}
|
|
3446
3997
|
|
|
3998
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3447
3999
|
.supportHover\:tsystem-c_typography\.intent\.action\.hover:hover {
|
|
3448
4000
|
color: var(--Tight-colors-typography-intent-action-hover);
|
|
3449
4001
|
}
|