@tight-embedded/react 1.2.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 +542 -263
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +55 -12
- package/dist/index.js +1 -1
- 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 +7 -4
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: '🐼';
|
|
@@ -136,6 +111,10 @@
|
|
|
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
|
|
|
@@ -355,10 +400,18 @@
|
|
|
355
400
|
border: var(--Tight-borderWidths-md) solid transparent;
|
|
356
401
|
}
|
|
357
402
|
|
|
403
|
+
.tsystem-p_5px {
|
|
404
|
+
padding: 5px;
|
|
405
|
+
}
|
|
406
|
+
|
|
358
407
|
.tsystem-p_15px {
|
|
359
408
|
padding: 15px;
|
|
360
409
|
}
|
|
361
410
|
|
|
411
|
+
.tsystem-p_12px_16px {
|
|
412
|
+
padding: 12px 16px;
|
|
413
|
+
}
|
|
414
|
+
|
|
362
415
|
.tsystem-bd_1px_solid {
|
|
363
416
|
border: 1px solid;
|
|
364
417
|
}
|
|
@@ -371,10 +424,6 @@
|
|
|
371
424
|
padding: 0 15px 15px;
|
|
372
425
|
}
|
|
373
426
|
|
|
374
|
-
.tsystem-p_12px_16px {
|
|
375
|
-
padding: 12px 16px;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
427
|
.tsystem-p_15 {
|
|
379
428
|
padding: 15px;
|
|
380
429
|
}
|
|
@@ -383,6 +432,10 @@
|
|
|
383
432
|
border: none;
|
|
384
433
|
}
|
|
385
434
|
|
|
435
|
+
.tsystem-p_md {
|
|
436
|
+
padding: md;
|
|
437
|
+
}
|
|
438
|
+
|
|
386
439
|
.tsystem-inset_0 {
|
|
387
440
|
inset: 0;
|
|
388
441
|
}
|
|
@@ -391,18 +444,34 @@
|
|
|
391
444
|
background: var(--Tight-colors-surface-background);
|
|
392
445
|
}
|
|
393
446
|
|
|
394
|
-
.tsystem-p_16px {
|
|
395
|
-
padding: 16px;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
447
|
.tsystem-m_32px {
|
|
399
448
|
margin: 32px;
|
|
400
449
|
}
|
|
401
450
|
|
|
451
|
+
.tsystem-m_0 {
|
|
452
|
+
margin: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
402
455
|
.tsystem-p_0 {
|
|
403
456
|
padding: 0;
|
|
404
457
|
}
|
|
405
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
|
+
|
|
406
475
|
.tsystem-p_4px_5px {
|
|
407
476
|
padding: 4px 5px;
|
|
408
477
|
}
|
|
@@ -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,22 +572,42 @@
|
|
|
507
572
|
margin: 0 auto;
|
|
508
573
|
}
|
|
509
574
|
|
|
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
|
+
|
|
510
591
|
.tsystem-m_15px {
|
|
511
592
|
margin: 15px;
|
|
512
593
|
}
|
|
513
594
|
|
|
514
|
-
.tsystem-
|
|
515
|
-
|
|
595
|
+
.tsystem-bg_foreground {
|
|
596
|
+
background: foreground;
|
|
516
597
|
}
|
|
517
598
|
|
|
518
|
-
.tsystem-
|
|
519
|
-
padding: 8px;
|
|
599
|
+
.tsystem-p_10px_8px {
|
|
600
|
+
padding: 10px 8px;
|
|
520
601
|
}
|
|
521
602
|
|
|
522
603
|
.tsystem-p_4px_8px {
|
|
523
604
|
padding: 4px 8px;
|
|
524
605
|
}
|
|
525
606
|
|
|
607
|
+
.tsystem-p_40px_20px {
|
|
608
|
+
padding: 40px 20px;
|
|
609
|
+
}
|
|
610
|
+
|
|
526
611
|
.tsystem-p_15px_15px_0_15px {
|
|
527
612
|
padding: 15px 15px 0 15px;
|
|
528
613
|
}
|
|
@@ -543,10 +628,6 @@
|
|
|
543
628
|
padding: 5px 10px;
|
|
544
629
|
}
|
|
545
630
|
|
|
546
|
-
.tsystem-m_0_0_7px_0 {
|
|
547
|
-
margin: 0 0 7px 0;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
631
|
.tsystem-bd_1px_solid_\{colors\.border\.layout\} {
|
|
551
632
|
border: 1px solid var(--Tight-colors-border-layout);
|
|
552
633
|
}
|
|
@@ -555,16 +636,24 @@
|
|
|
555
636
|
padding: 10px 25px 10px 15px;
|
|
556
637
|
}
|
|
557
638
|
|
|
639
|
+
.tsystem-p_5 {
|
|
640
|
+
padding: 5px;
|
|
641
|
+
}
|
|
642
|
+
|
|
558
643
|
.tsystem-p_25px {
|
|
559
644
|
padding: 25px;
|
|
560
645
|
}
|
|
561
646
|
|
|
562
|
-
.tsystem-
|
|
563
|
-
|
|
647
|
+
.tsystem-bg_brand\.success {
|
|
648
|
+
background: var(--Tight-colors-brand-success);
|
|
564
649
|
}
|
|
565
650
|
|
|
566
|
-
.tsystem-
|
|
567
|
-
padding:
|
|
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);
|
|
568
657
|
}
|
|
569
658
|
|
|
570
659
|
.tsystem-p_6px_0_6px_6px {
|
|
@@ -628,16 +717,28 @@
|
|
|
628
717
|
transition: color 300ms ease-out;
|
|
629
718
|
}
|
|
630
719
|
|
|
631
|
-
.tsystem-
|
|
632
|
-
|
|
720
|
+
.tsystem-bdr_lg {
|
|
721
|
+
border-radius: var(--Tight-radii-lg);
|
|
633
722
|
}
|
|
634
723
|
|
|
635
|
-
.tsystem-
|
|
636
|
-
|
|
724
|
+
.tsystem-gap_8px {
|
|
725
|
+
gap: 8px;
|
|
637
726
|
}
|
|
638
727
|
|
|
639
|
-
.tsystem-
|
|
640
|
-
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;
|
|
641
742
|
}
|
|
642
743
|
|
|
643
744
|
.tsystem-bd-c_border\.intent\.warning {
|
|
@@ -684,10 +785,6 @@
|
|
|
684
785
|
border-width: 1px;
|
|
685
786
|
}
|
|
686
787
|
|
|
687
|
-
.tsystem-border-style_solid {
|
|
688
|
-
border-style: solid;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
788
|
.tsystem-ov_wrap {
|
|
692
789
|
overflow: wrap;
|
|
693
790
|
}
|
|
@@ -728,34 +825,34 @@
|
|
|
728
825
|
border-width: 0;
|
|
729
826
|
}
|
|
730
827
|
|
|
731
|
-
.tsystem-bd-c_border\.layout\.strong {
|
|
732
|
-
border-color: var(--Tight-colors-border-layout-strong);
|
|
733
|
-
}
|
|
734
|
-
|
|
735
828
|
.tsystem-trs_all_300ms_ease-out {
|
|
736
829
|
transition: all 300ms ease-out;
|
|
737
830
|
}
|
|
738
831
|
|
|
739
|
-
.tsystem-place-items_center {
|
|
740
|
-
place-items: center;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
832
|
.tsystem-gap_16px {
|
|
744
833
|
gap: 16px;
|
|
745
834
|
}
|
|
746
835
|
|
|
747
|
-
.tsystem-
|
|
748
|
-
gap:
|
|
836
|
+
.tsystem-gap_4px {
|
|
837
|
+
gap: 4px;
|
|
749
838
|
}
|
|
750
839
|
|
|
751
840
|
.tsystem-flex_1 {
|
|
752
841
|
flex: 1 1 0%;
|
|
753
842
|
}
|
|
754
843
|
|
|
844
|
+
.tsystem-ov_auto {
|
|
845
|
+
overflow: auto;
|
|
846
|
+
}
|
|
847
|
+
|
|
755
848
|
.tsystem-bg-p_100\%_0 {
|
|
756
849
|
background-position: 100% 0;
|
|
757
850
|
}
|
|
758
851
|
|
|
852
|
+
.tsystem-gap_12px {
|
|
853
|
+
gap: 12px;
|
|
854
|
+
}
|
|
855
|
+
|
|
759
856
|
.tsystem-bdr_zero {
|
|
760
857
|
border-radius: var(--Tight-radii-zero);
|
|
761
858
|
}
|
|
@@ -792,8 +889,8 @@
|
|
|
792
889
|
gap: 9px;
|
|
793
890
|
}
|
|
794
891
|
|
|
795
|
-
.tsystem-bd-
|
|
796
|
-
border-
|
|
892
|
+
.tsystem-bd-c_strong {
|
|
893
|
+
border-color: strong;
|
|
797
894
|
}
|
|
798
895
|
|
|
799
896
|
.tsystem-bd-b_\{borderWidths\.md\}_solid {
|
|
@@ -816,8 +913,8 @@
|
|
|
816
913
|
border-right: none;
|
|
817
914
|
}
|
|
818
915
|
|
|
819
|
-
.tsystem-bd-
|
|
820
|
-
border-
|
|
916
|
+
.tsystem-bd-t_1px_solid {
|
|
917
|
+
border-top: 1px solid;
|
|
821
918
|
}
|
|
822
919
|
|
|
823
920
|
.tsystem-place-self_center {
|
|
@@ -828,8 +925,8 @@
|
|
|
828
925
|
margin-inline: 15px;
|
|
829
926
|
}
|
|
830
927
|
|
|
831
|
-
.tsystem-
|
|
832
|
-
|
|
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);
|
|
833
930
|
}
|
|
834
931
|
|
|
835
932
|
.tsystem-my_20px {
|
|
@@ -840,8 +937,8 @@
|
|
|
840
937
|
border-width: var(--Tight-borderWidths-sm);
|
|
841
938
|
}
|
|
842
939
|
|
|
843
|
-
.tsystem-
|
|
844
|
-
|
|
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);
|
|
845
942
|
}
|
|
846
943
|
|
|
847
944
|
.tsystem-gap_10 {
|
|
@@ -856,10 +953,6 @@
|
|
|
856
953
|
gap: 7px;
|
|
857
954
|
}
|
|
858
955
|
|
|
859
|
-
.tsystem-ov_auto {
|
|
860
|
-
overflow: auto;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
956
|
.tsystem-gap_16 {
|
|
864
957
|
gap: 16px;
|
|
865
958
|
}
|
|
@@ -872,6 +965,14 @@
|
|
|
872
965
|
border-left: 1px solid var(--Tight-colors-border-layout);
|
|
873
966
|
}
|
|
874
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
|
+
|
|
875
976
|
.tsystem-tw_nowrap {
|
|
876
977
|
text-wrap: nowrap;
|
|
877
978
|
}
|
|
@@ -916,14 +1017,6 @@
|
|
|
916
1017
|
gap: 6px;
|
|
917
1018
|
}
|
|
918
1019
|
|
|
919
|
-
.tsystem-bd-l_1px_solid_\{colors\.border\.layout\.strong\} {
|
|
920
|
-
border-left: 1px solid var(--Tight-colors-border-layout-strong);
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.tsystem-mx_40px {
|
|
924
|
-
margin-inline: 40px;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
1020
|
.tsystem-d_flex {
|
|
928
1021
|
display: flex;
|
|
929
1022
|
}
|
|
@@ -1008,12 +1101,40 @@
|
|
|
1008
1101
|
letter-spacing: 0.66px;
|
|
1009
1102
|
}
|
|
1010
1103
|
|
|
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
|
+
|
|
1011
1112
|
.tsystem-flex-d_column {
|
|
1012
1113
|
flex-direction: column;
|
|
1013
1114
|
}
|
|
1014
1115
|
|
|
1015
|
-
.tsystem-
|
|
1016
|
-
|
|
1116
|
+
.tsystem-ta_right {
|
|
1117
|
+
text-align: right;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
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;
|
|
1017
1138
|
}
|
|
1018
1139
|
|
|
1019
1140
|
.tsystem-jc_flex-end {
|
|
@@ -1028,30 +1149,14 @@
|
|
|
1028
1149
|
justify-content: space-between;
|
|
1029
1150
|
}
|
|
1030
1151
|
|
|
1031
|
-
.tsystem-ai_flex-start {
|
|
1032
|
-
align-items: flex-start;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
1152
|
.tsystem-as_stretch {
|
|
1036
1153
|
align-self: stretch;
|
|
1037
1154
|
}
|
|
1038
1155
|
|
|
1039
|
-
.tsystem-flex-wrap_wrap {
|
|
1040
|
-
flex-wrap: wrap;
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
.tsystem-bg-c_surface\.foreground {
|
|
1044
|
-
background-color: var(--Tight-colors-surface-foreground);
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
1156
|
.tsystem-bg-c_surface\.intent\.secondary {
|
|
1048
1157
|
background-color: var(--Tight-colors-surface-intent-secondary);
|
|
1049
1158
|
}
|
|
1050
1159
|
|
|
1051
|
-
.tsystem-flex-d_row {
|
|
1052
|
-
flex-direction: row;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
1160
|
.tsystem-flex-d_row-reverse {
|
|
1056
1161
|
flex-direction: row-reverse;
|
|
1057
1162
|
}
|
|
@@ -1144,10 +1249,18 @@
|
|
|
1144
1249
|
background-color: var(--Tight-colors-surface-background);
|
|
1145
1250
|
}
|
|
1146
1251
|
|
|
1252
|
+
.tsystem-d_none {
|
|
1253
|
+
display: none;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1147
1256
|
.tsystem-flex-g_1 {
|
|
1148
1257
|
flex-grow: 1;
|
|
1149
1258
|
}
|
|
1150
1259
|
|
|
1260
|
+
.tsystem-c_icon\.accent\.danger {
|
|
1261
|
+
color: var(--Tight-colors-icon-accent-danger);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1151
1264
|
.tsystem-stk_currentColor {
|
|
1152
1265
|
stroke: var(--Tight-colors-currentColor);
|
|
1153
1266
|
}
|
|
@@ -1228,6 +1341,10 @@
|
|
|
1228
1341
|
fill: var(--Tight-colors-transparent);
|
|
1229
1342
|
}
|
|
1230
1343
|
|
|
1344
|
+
.tsystem-obj-f_contain {
|
|
1345
|
+
object-fit: contain;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1231
1348
|
.tsystem-d_inline-flex {
|
|
1232
1349
|
display: inline-flex;
|
|
1233
1350
|
}
|
|
@@ -1236,10 +1353,6 @@
|
|
|
1236
1353
|
color: var(--Tight-colors-typography-intent-action);
|
|
1237
1354
|
}
|
|
1238
1355
|
|
|
1239
|
-
.tsystem-bg-c_surface\.intent\.action {
|
|
1240
|
-
background-color: var(--Tight-colors-surface-intent-action);
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
1356
|
.tsystem-c_typography\.intent\.danger {
|
|
1244
1357
|
color: var(--Tight-colors-typography-intent-danger);
|
|
1245
1358
|
}
|
|
@@ -1288,6 +1401,30 @@
|
|
|
1288
1401
|
overflow-wrap: break-word;
|
|
1289
1402
|
}
|
|
1290
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
|
+
|
|
1291
1428
|
.tsystem-bg-c_border\.layout\.strong {
|
|
1292
1429
|
background-color: var(--Tight-colors-border-layout-strong);
|
|
1293
1430
|
}
|
|
@@ -1334,6 +1471,10 @@
|
|
|
1334
1471
|
border-top-right-radius: var(--Tight-radii-lg);
|
|
1335
1472
|
}
|
|
1336
1473
|
|
|
1474
|
+
.tsystem-flex-wrap_wrap {
|
|
1475
|
+
flex-wrap: wrap;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1337
1478
|
.tsystem-c_icon\.intent\.primary {
|
|
1338
1479
|
color: var(--Tight-colors-icon-intent-primary);
|
|
1339
1480
|
}
|
|
@@ -1346,30 +1487,14 @@
|
|
|
1346
1487
|
font-weight: var(--Tight-fontWeights-lg);
|
|
1347
1488
|
}
|
|
1348
1489
|
|
|
1349
|
-
.tsystem-ls_0\.84px {
|
|
1350
|
-
letter-spacing: 0.84px;
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
1490
|
.tsystem-lh_16px {
|
|
1354
1491
|
line-height: 16px;
|
|
1355
1492
|
}
|
|
1356
1493
|
|
|
1357
|
-
.tsystem-ff_label {
|
|
1358
|
-
font-family: var(--Tight-fonts-label);
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
1494
|
.tsystem-fw_label {
|
|
1362
1495
|
font-weight: var(--Tight-fontWeights-label);
|
|
1363
1496
|
}
|
|
1364
1497
|
|
|
1365
|
-
.tsystem-fs_lg {
|
|
1366
|
-
font-size: var(--Tight-fontSizes-lg);
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
.tsystem-lh_18px {
|
|
1370
|
-
line-height: 18px;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
1498
|
.tsystem-c_typography\.label {
|
|
1374
1499
|
color: var(--Tight-colors-typography-label);
|
|
1375
1500
|
}
|
|
@@ -1378,10 +1503,6 @@
|
|
|
1378
1503
|
white-space: normal;
|
|
1379
1504
|
}
|
|
1380
1505
|
|
|
1381
|
-
.tsystem-ta_left {
|
|
1382
|
-
text-align: left;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
1506
|
.tsystem-ta_start {
|
|
1386
1507
|
text-align: start;
|
|
1387
1508
|
}
|
|
@@ -1406,10 +1527,6 @@
|
|
|
1406
1527
|
color: var(--Tight-colors-typography-base-weak);
|
|
1407
1528
|
}
|
|
1408
1529
|
|
|
1409
|
-
.tsystem-bx-s_border-box {
|
|
1410
|
-
box-sizing: border-box;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
1530
|
.tsystem-trf_rotate\(-20deg\) {
|
|
1414
1531
|
transform: rotate(-20deg);
|
|
1415
1532
|
}
|
|
@@ -1438,14 +1555,6 @@
|
|
|
1438
1555
|
font-family: var(--Tight-fonts-body);
|
|
1439
1556
|
}
|
|
1440
1557
|
|
|
1441
|
-
.tsystem-fw_label\.strong {
|
|
1442
|
-
font-weight: var(--Tight-fontWeights-label-strong);
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
.tsystem-c_typography\.label\.strong {
|
|
1446
|
-
color: var(--Tight-colors-typography-label-strong);
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
1558
|
.tsystem-fw_label\.strongSub {
|
|
1450
1559
|
font-weight: var(--Tight-fontWeights-label-strongSub);
|
|
1451
1560
|
}
|
|
@@ -1546,10 +1655,27 @@
|
|
|
1546
1655
|
color: var(--Tight-colors-money-positive);
|
|
1547
1656
|
}
|
|
1548
1657
|
|
|
1658
|
+
.tsystem-us_none {
|
|
1659
|
+
-webkit-user-select: none;
|
|
1660
|
+
user-select: none;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1549
1663
|
.tsystem-bd-be-w_var\(--thickness\) {
|
|
1550
1664
|
border-block-end-width: var(--thickness);
|
|
1551
1665
|
}
|
|
1552
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
|
+
|
|
1553
1679
|
.tsystem-grid-tc_100\% {
|
|
1554
1680
|
grid-template-columns: 100%;
|
|
1555
1681
|
}
|
|
@@ -1570,11 +1696,6 @@
|
|
|
1570
1696
|
line-height: 26px;
|
|
1571
1697
|
}
|
|
1572
1698
|
|
|
1573
|
-
.tsystem-us_none {
|
|
1574
|
-
-webkit-user-select: none;
|
|
1575
|
-
user-select: none;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
1699
|
.tsystem-scr-bar_hidden {
|
|
1579
1700
|
-ms-overflow-style: none;
|
|
1580
1701
|
scrollbar-width: none;
|
|
@@ -1584,6 +1705,10 @@
|
|
|
1584
1705
|
display: none;
|
|
1585
1706
|
}
|
|
1586
1707
|
|
|
1708
|
+
.tsystem-pos_sticky {
|
|
1709
|
+
position: sticky;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1587
1712
|
.tsystem-stk_icon\.base\.weak {
|
|
1588
1713
|
stroke: var(--Tight-colors-icon-base-weak);
|
|
1589
1714
|
}
|
|
@@ -1596,14 +1721,14 @@
|
|
|
1596
1721
|
stroke: var(--Tight-colors-icon-base);
|
|
1597
1722
|
}
|
|
1598
1723
|
|
|
1599
|
-
.tsystem-c_icon\.accent\.danger {
|
|
1600
|
-
color: var(--Tight-colors-icon-accent-danger);
|
|
1601
|
-
}
|
|
1602
|
-
|
|
1603
1724
|
.tsystem-bg-c_brand\.secondary {
|
|
1604
1725
|
background-color: var(--Tight-colors-brand-secondary);
|
|
1605
1726
|
}
|
|
1606
1727
|
|
|
1728
|
+
.tsystem-c_var\(--Tight-colors-brand-secondary\) {
|
|
1729
|
+
color: var(--Tight-colors-brand-secondary);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1607
1732
|
.tsystem-bdr-r_0 {
|
|
1608
1733
|
border-top-right-radius: 0;
|
|
1609
1734
|
border-bottom-right-radius: 0;
|
|
@@ -1614,6 +1739,10 @@
|
|
|
1614
1739
|
border-bottom-left-radius: 0;
|
|
1615
1740
|
}
|
|
1616
1741
|
|
|
1742
|
+
.tsystem-jc_right {
|
|
1743
|
+
justify-content: right;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1617
1746
|
.tsystem-bg-c_foreground {
|
|
1618
1747
|
background-color: foreground;
|
|
1619
1748
|
}
|
|
@@ -1679,10 +1808,6 @@
|
|
|
1679
1808
|
font-size: 16px;
|
|
1680
1809
|
}
|
|
1681
1810
|
|
|
1682
|
-
.tsystem-d_block {
|
|
1683
|
-
display: block;
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
1811
|
.tsystem-bx-sh_none {
|
|
1687
1812
|
box-shadow: none;
|
|
1688
1813
|
}
|
|
@@ -1703,10 +1828,46 @@
|
|
|
1703
1828
|
stroke-dasharray: 0;
|
|
1704
1829
|
}
|
|
1705
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
|
+
|
|
1706
1855
|
.tsystem-y_0 {
|
|
1707
1856
|
y: 0;
|
|
1708
1857
|
}
|
|
1709
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
|
+
|
|
1710
1871
|
.tsystem-stk-w_1 {
|
|
1711
1872
|
stroke-width: 1;
|
|
1712
1873
|
}
|
|
@@ -1723,10 +1884,6 @@
|
|
|
1723
1884
|
z-index: 100;
|
|
1724
1885
|
}
|
|
1725
1886
|
|
|
1726
|
-
.tsystem-jc_right {
|
|
1727
|
-
justify-content: right;
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
1887
|
.tsystem-white-space_wrap {
|
|
1731
1888
|
white-space: wrap;
|
|
1732
1889
|
}
|
|
@@ -1743,46 +1900,42 @@
|
|
|
1743
1900
|
max-width: 100%;
|
|
1744
1901
|
}
|
|
1745
1902
|
|
|
1746
|
-
.tsystem-
|
|
1747
|
-
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
.tsystem-ov-y_auto {
|
|
1751
|
-
overflow-y: auto;
|
|
1903
|
+
.tsystem-w_50px {
|
|
1904
|
+
width: 50px;
|
|
1752
1905
|
}
|
|
1753
|
-
|
|
1754
|
-
.tsystem-
|
|
1755
|
-
|
|
1906
|
+
|
|
1907
|
+
.tsystem-h_50px {
|
|
1908
|
+
height: 50px;
|
|
1756
1909
|
}
|
|
1757
1910
|
|
|
1758
|
-
.tsystem-
|
|
1759
|
-
|
|
1911
|
+
.tsystem-w_100\% {
|
|
1912
|
+
width: 100%;
|
|
1760
1913
|
}
|
|
1761
1914
|
|
|
1762
|
-
.tsystem-
|
|
1763
|
-
|
|
1915
|
+
.tsystem-w_sm {
|
|
1916
|
+
width: sm;
|
|
1764
1917
|
}
|
|
1765
1918
|
|
|
1766
1919
|
.tsystem-w_202px {
|
|
1767
1920
|
width: 202px;
|
|
1768
1921
|
}
|
|
1769
1922
|
|
|
1770
|
-
.tsystem-min-
|
|
1771
|
-
min-width:
|
|
1923
|
+
.tsystem-min-w_350px {
|
|
1924
|
+
min-width: 350px;
|
|
1772
1925
|
}
|
|
1773
1926
|
|
|
1774
1927
|
.tsystem-min-w_200px {
|
|
1775
1928
|
min-width: 200px;
|
|
1776
1929
|
}
|
|
1777
1930
|
|
|
1778
|
-
.tsystem-w_100\% {
|
|
1779
|
-
width: 100%;
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
1931
|
.tsystem-h_72 {
|
|
1783
1932
|
height: 72px;
|
|
1784
1933
|
}
|
|
1785
1934
|
|
|
1935
|
+
.tsystem-min-w_300px {
|
|
1936
|
+
min-width: 300px;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1786
1939
|
.tsystem-w_20px {
|
|
1787
1940
|
width: 20px;
|
|
1788
1941
|
}
|
|
@@ -1847,6 +2000,10 @@
|
|
|
1847
2000
|
height: 25px;
|
|
1848
2001
|
}
|
|
1849
2002
|
|
|
2003
|
+
.tsystem-ov-y_auto {
|
|
2004
|
+
overflow-y: auto;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1850
2007
|
.tsystem-ov-x_hidden {
|
|
1851
2008
|
overflow-x: hidden;
|
|
1852
2009
|
}
|
|
@@ -1923,6 +2080,26 @@
|
|
|
1923
2080
|
max-width: 360px;
|
|
1924
2081
|
}
|
|
1925
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
|
+
|
|
1926
2103
|
.tsystem-right_0 {
|
|
1927
2104
|
right: 0;
|
|
1928
2105
|
}
|
|
@@ -1935,6 +2112,10 @@
|
|
|
1935
2112
|
left: 0;
|
|
1936
2113
|
}
|
|
1937
2114
|
|
|
2115
|
+
.tsystem-bottom_0 {
|
|
2116
|
+
bottom: 0;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
1938
2119
|
.tsystem-max-h_100\% {
|
|
1939
2120
|
max-height: 100%;
|
|
1940
2121
|
}
|
|
@@ -1963,20 +2144,16 @@
|
|
|
1963
2144
|
width: 100dvw;
|
|
1964
2145
|
}
|
|
1965
2146
|
|
|
1966
|
-
.tsystem-h_100dvh {
|
|
1967
|
-
height: 100dvh;
|
|
1968
|
-
}
|
|
1969
|
-
|
|
1970
|
-
.tsystem-min-w_100dvw {
|
|
1971
|
-
min-width: 100dvw;
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
2147
|
.tsystem-max-h_100dvh {
|
|
1975
2148
|
max-height: 100dvh;
|
|
1976
2149
|
}
|
|
1977
2150
|
|
|
1978
|
-
.tsystem-
|
|
1979
|
-
|
|
2151
|
+
.tsystem-min-w_384px {
|
|
2152
|
+
min-width: 384px;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.tsystem-min-h_36px {
|
|
2156
|
+
min-height: 36px;
|
|
1980
2157
|
}
|
|
1981
2158
|
|
|
1982
2159
|
.tsystem-w_24 {
|
|
@@ -2051,12 +2228,16 @@
|
|
|
2051
2228
|
height: 80px;
|
|
2052
2229
|
}
|
|
2053
2230
|
|
|
2054
|
-
.tsystem-
|
|
2055
|
-
width:
|
|
2231
|
+
.tsystem-max-w_900px {
|
|
2232
|
+
max-width: 900px;
|
|
2056
2233
|
}
|
|
2057
2234
|
|
|
2058
|
-
.tsystem-
|
|
2059
|
-
|
|
2235
|
+
.tsystem-min-w_360px {
|
|
2236
|
+
min-width: 360px;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.tsystem-w_max-content {
|
|
2240
|
+
width: max-content;
|
|
2060
2241
|
}
|
|
2061
2242
|
|
|
2062
2243
|
.tsystem-min-w_fit-content {
|
|
@@ -2143,6 +2324,14 @@
|
|
|
2143
2324
|
height: 250px;
|
|
2144
2325
|
}
|
|
2145
2326
|
|
|
2327
|
+
.tsystem-pb_20px {
|
|
2328
|
+
padding-bottom: 20px;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.tsystem-pt_20px {
|
|
2332
|
+
padding-top: 20px;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2146
2335
|
.tsystem-pb_14px {
|
|
2147
2336
|
padding-bottom: 14px;
|
|
2148
2337
|
}
|
|
@@ -2155,6 +2344,26 @@
|
|
|
2155
2344
|
padding-right: 15px;
|
|
2156
2345
|
}
|
|
2157
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
|
+
|
|
2158
2367
|
.tsystem-w_fill-parent {
|
|
2159
2368
|
width: fill-parent;
|
|
2160
2369
|
}
|
|
@@ -2179,6 +2388,18 @@
|
|
|
2179
2388
|
height: 45px;
|
|
2180
2389
|
}
|
|
2181
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
|
+
|
|
2182
2403
|
.tsystem-mb_8px {
|
|
2183
2404
|
margin-bottom: 8px;
|
|
2184
2405
|
}
|
|
@@ -2203,6 +2424,10 @@
|
|
|
2203
2424
|
width: 26px;
|
|
2204
2425
|
}
|
|
2205
2426
|
|
|
2427
|
+
.tsystem-mt_0px {
|
|
2428
|
+
margin-top: 0px;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2206
2431
|
.tsystem-max-w_1440 {
|
|
2207
2432
|
max-width: 1440px;
|
|
2208
2433
|
}
|
|
@@ -2263,22 +2488,6 @@
|
|
|
2263
2488
|
margin-right: 15px;
|
|
2264
2489
|
}
|
|
2265
2490
|
|
|
2266
|
-
.tsystem-max-w_1 {
|
|
2267
|
-
max-width: 1px;
|
|
2268
|
-
}
|
|
2269
|
-
|
|
2270
|
-
.tsystem-w_1 {
|
|
2271
|
-
width: 1px;
|
|
2272
|
-
}
|
|
2273
|
-
|
|
2274
|
-
.tsystem-w_512px {
|
|
2275
|
-
width: 512px;
|
|
2276
|
-
}
|
|
2277
|
-
|
|
2278
|
-
.tsystem-min-h_36px {
|
|
2279
|
-
min-height: 36px;
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
2491
|
.tsystem-mb_10px {
|
|
2283
2492
|
margin-bottom: 10px;
|
|
2284
2493
|
}
|
|
@@ -2287,10 +2496,6 @@
|
|
|
2287
2496
|
width: 200px;
|
|
2288
2497
|
}
|
|
2289
2498
|
|
|
2290
|
-
.tsystem-h_16px {
|
|
2291
|
-
height: 16px;
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
2499
|
.tsystem-h_52px {
|
|
2295
2500
|
height: 52px;
|
|
2296
2501
|
}
|
|
@@ -2319,6 +2524,18 @@
|
|
|
2319
2524
|
min-height: 55px;
|
|
2320
2525
|
}
|
|
2321
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
|
+
|
|
2322
2539
|
.tsystem-w_full {
|
|
2323
2540
|
width: full;
|
|
2324
2541
|
}
|
|
@@ -2363,14 +2580,6 @@
|
|
|
2363
2580
|
min-height: 35px;
|
|
2364
2581
|
}
|
|
2365
2582
|
|
|
2366
|
-
.tsystem-h_fit-content {
|
|
2367
|
-
height: fit-content;
|
|
2368
|
-
}
|
|
2369
|
-
|
|
2370
|
-
.tsystem-min-h_200px {
|
|
2371
|
-
min-height: 200px;
|
|
2372
|
-
}
|
|
2373
|
-
|
|
2374
2583
|
.tsystem-pt_4px {
|
|
2375
2584
|
padding-top: 4px;
|
|
2376
2585
|
}
|
|
@@ -2407,6 +2616,10 @@
|
|
|
2407
2616
|
width: 342px;
|
|
2408
2617
|
}
|
|
2409
2618
|
|
|
2619
|
+
.tsystem-w_512px {
|
|
2620
|
+
width: 512px;
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2410
2623
|
.tsystem-h_16 {
|
|
2411
2624
|
height: 16px;
|
|
2412
2625
|
}
|
|
@@ -2451,14 +2664,6 @@
|
|
|
2451
2664
|
height: 39px;
|
|
2452
2665
|
}
|
|
2453
2666
|
|
|
2454
|
-
.tsystem-mt_35px {
|
|
2455
|
-
margin-top: 35px;
|
|
2456
|
-
}
|
|
2457
|
-
|
|
2458
|
-
.tsystem-pt_10px {
|
|
2459
|
-
padding-top: 10px;
|
|
2460
|
-
}
|
|
2461
|
-
|
|
2462
2667
|
.tsystem-pb_8px {
|
|
2463
2668
|
padding-bottom: 8px;
|
|
2464
2669
|
}
|
|
@@ -2569,6 +2774,14 @@
|
|
|
2569
2774
|
cursor: default;
|
|
2570
2775
|
}
|
|
2571
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
|
+
|
|
2572
2785
|
.\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.base .Tight-sub-label {
|
|
2573
2786
|
color: var(--Tight-colors-typography-base);
|
|
2574
2787
|
}
|
|
@@ -2689,14 +2902,6 @@
|
|
|
2689
2902
|
pointer-events: none;
|
|
2690
2903
|
}
|
|
2691
2904
|
|
|
2692
|
-
.\[\&_path\]\:tsystem-stk_icon\.base path {
|
|
2693
|
-
stroke: var(--Tight-colors-icon-base);
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
|
-
.\[\&_path\]\:tsystem-stk_icon\.accent\.danger path {
|
|
2697
|
-
stroke: var(--Tight-colors-icon-accent-danger);
|
|
2698
|
-
}
|
|
2699
|
-
|
|
2700
2905
|
.disabled\:tsystem-cursor_default:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
2701
2906
|
cursor: default;
|
|
2702
2907
|
}
|
|
@@ -2886,6 +3091,10 @@
|
|
|
2886
3091
|
outline: 4px solid;
|
|
2887
3092
|
}
|
|
2888
3093
|
|
|
3094
|
+
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
3095
|
+
outline: 4px solid;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
2889
3098
|
.focus\:tsystem-ring_none:is(:focus, [data-focus]) {
|
|
2890
3099
|
outline: 2px solid transparent;
|
|
2891
3100
|
outline-offset: 2px;
|
|
@@ -2932,10 +3141,6 @@
|
|
|
2932
3141
|
outline: 4px solid;
|
|
2933
3142
|
}
|
|
2934
3143
|
|
|
2935
|
-
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
2936
|
-
outline: 4px solid;
|
|
2937
|
-
}
|
|
2938
|
-
|
|
2939
3144
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring_4px_solid:has(button:focus-visible) {
|
|
2940
3145
|
outline: 4px solid;
|
|
2941
3146
|
}
|
|
@@ -2952,6 +3157,10 @@
|
|
|
2952
3157
|
outline-offset: -1px;
|
|
2953
3158
|
}
|
|
2954
3159
|
|
|
3160
|
+
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
3161
|
+
outline-color: var(--Tight-colors-border-layout);
|
|
3162
|
+
}
|
|
3163
|
+
|
|
2955
3164
|
.focus\:tsystem-cursor_text:is(:focus, [data-focus]) {
|
|
2956
3165
|
cursor: text;
|
|
2957
3166
|
}
|
|
@@ -2992,10 +3201,6 @@
|
|
|
2992
3201
|
outline-offset: -2px;
|
|
2993
3202
|
}
|
|
2994
3203
|
|
|
2995
|
-
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
2996
|
-
outline-color: var(--Tight-colors-border-layout);
|
|
2997
|
-
}
|
|
2998
|
-
|
|
2999
3204
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring-c_border\.layout:has(button:focus-visible) {
|
|
3000
3205
|
outline-color: var(--Tight-colors-border-layout);
|
|
3001
3206
|
}
|
|
@@ -3024,6 +3229,10 @@
|
|
|
3024
3229
|
bottom: 0;
|
|
3025
3230
|
}
|
|
3026
3231
|
|
|
3232
|
+
.hover\:tsystem-bg-c_surface\.intent\.action\.hover:is(:hover, [data-hover]) {
|
|
3233
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3027
3236
|
.hover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:is(:hover, [data-hover]) {
|
|
3028
3237
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3029
3238
|
}
|
|
@@ -3064,6 +3273,10 @@
|
|
|
3064
3273
|
fill: var(--Tight-colors-icon-intent-action-active);
|
|
3065
3274
|
}
|
|
3066
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
|
+
|
|
3067
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 {
|
|
3068
3281
|
background-color: var(--Tight-colors-surface-intent-action-active);
|
|
3069
3282
|
}
|
|
@@ -3161,10 +3374,18 @@
|
|
|
3161
3374
|
}
|
|
3162
3375
|
|
|
3163
3376
|
@media screen and (min-width: 40rem) {
|
|
3377
|
+
.sm\:tsystem-m_32px {
|
|
3378
|
+
margin: 32px;
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3164
3381
|
.sm\:tsystem-p_4px {
|
|
3165
3382
|
padding: 4px;
|
|
3166
3383
|
}
|
|
3167
3384
|
|
|
3385
|
+
.sm\:tsystem-bd-c_transparent {
|
|
3386
|
+
border-color: var(--Tight-colors-transparent);
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3168
3389
|
.sm\:tsystem-gap_0 {
|
|
3169
3390
|
gap: 0;
|
|
3170
3391
|
}
|
|
@@ -3177,22 +3398,22 @@
|
|
|
3177
3398
|
place-self: flex-end;
|
|
3178
3399
|
}
|
|
3179
3400
|
|
|
3180
|
-
.sm\:tsystem-
|
|
3181
|
-
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
|
-
.sm\:tsystem-ai_center {
|
|
3185
|
-
align-items: center;
|
|
3401
|
+
.sm\:tsystem-bg-c_surface\.intent\.action\.discrete {
|
|
3402
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete);
|
|
3186
3403
|
}
|
|
3187
3404
|
|
|
3188
|
-
.sm\:tsystem-fs_label {
|
|
3189
|
-
font-size: var(--Tight-fontSizes-label);
|
|
3405
|
+
.sm\:tsystem-fs_label\.strong {
|
|
3406
|
+
font-size: var(--Tight-fontSizes-label-strong);
|
|
3190
3407
|
}
|
|
3191
3408
|
|
|
3192
3409
|
.sm\:tsystem-lh_16px {
|
|
3193
3410
|
line-height: 16px;
|
|
3194
3411
|
}
|
|
3195
3412
|
|
|
3413
|
+
.sm\:tsystem-fs_label {
|
|
3414
|
+
font-size: var(--Tight-fontSizes-label);
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3196
3417
|
.sm\:tsystem-fs_label\.sub {
|
|
3197
3418
|
font-size: var(--Tight-fontSizes-label-sub);
|
|
3198
3419
|
}
|
|
@@ -3213,14 +3434,22 @@
|
|
|
3213
3434
|
font-size: var(--Tight-fontSizes-body);
|
|
3214
3435
|
}
|
|
3215
3436
|
|
|
3216
|
-
.sm\:tsystem-fs_label\.strong {
|
|
3217
|
-
font-size: var(--Tight-fontSizes-label-strong);
|
|
3218
|
-
}
|
|
3219
|
-
|
|
3220
3437
|
.sm\:tsystem-fs_label\.strongSub {
|
|
3221
3438
|
font-size: var(--Tight-fontSizes-label-strongSub);
|
|
3222
3439
|
}
|
|
3223
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
|
+
|
|
3224
3453
|
.sm\:tsystem-grid-tc_300px_auto_300px {
|
|
3225
3454
|
grid-template-columns: 300px auto 300px;
|
|
3226
3455
|
}
|
|
@@ -3245,6 +3474,18 @@
|
|
|
3245
3474
|
justify-content: flex-end;
|
|
3246
3475
|
}
|
|
3247
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
|
+
|
|
3248
3489
|
.sm\:tsystem-left_auto {
|
|
3249
3490
|
left: auto;
|
|
3250
3491
|
}
|
|
@@ -3313,12 +3554,20 @@
|
|
|
3313
3554
|
max-width: 300px;
|
|
3314
3555
|
}
|
|
3315
3556
|
|
|
3316
|
-
.sm\:tsystem-min-
|
|
3317
|
-
min-width:
|
|
3557
|
+
.sm\:tsystem-min-w_360px {
|
|
3558
|
+
min-width: 360px;
|
|
3318
3559
|
}
|
|
3319
3560
|
|
|
3320
|
-
.sm\:tsystem-max-
|
|
3321
|
-
max-width:
|
|
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
|
+
}
|
|
3322
3571
|
}
|
|
3323
3572
|
}
|
|
3324
3573
|
|
|
@@ -3330,6 +3579,30 @@
|
|
|
3330
3579
|
.md\:tsystem-flex_0_0_342px {
|
|
3331
3580
|
flex: 0 0 342px;
|
|
3332
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
|
+
}
|
|
3333
3606
|
}
|
|
3334
3607
|
|
|
3335
3608
|
@media (hover: hover) and (pointer: fine) {
|
|
@@ -3681,8 +3954,8 @@
|
|
|
3681
3954
|
}
|
|
3682
3955
|
|
|
3683
3956
|
@media (hover: hover) and (pointer: fine) {
|
|
3684
|
-
.supportHover\:tsystem-bg-c_surface\.intent\.action
|
|
3685
|
-
background-color: var(--Tight-colors-surface-intent-action
|
|
3957
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action:hover {
|
|
3958
|
+
background-color: var(--Tight-colors-surface-intent-action);
|
|
3686
3959
|
}
|
|
3687
3960
|
}
|
|
3688
3961
|
|
|
@@ -3690,6 +3963,12 @@
|
|
|
3690
3963
|
.supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3691
3964
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3692
3965
|
}
|
|
3966
|
+
}
|
|
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
|
+
}
|
|
3693
3972
|
}
|
|
3694
3973
|
|
|
3695
3974
|
@media (hover: hover) and (pointer: fine) {
|