@tight-embedded/react 1.2.0 → 1.4.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 +666 -319
- 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 +8 -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;
|
|
@@ -228,7 +207,7 @@
|
|
|
228
207
|
--Tight-colors-typography-accent-success: var(--Tight-colors-brand-success-strong);
|
|
229
208
|
--Tight-colors-typography-accent-warning: var(--Tight-colors-brand-warning-strong);
|
|
230
209
|
--Tight-colors-typography-accent-danger: var(--Tight-colors-brand-danger-strong);
|
|
231
|
-
--Tight-colors-typography-accent-action: var(--Tight-colors-brand-action-
|
|
210
|
+
--Tight-colors-typography-accent-action: var(--Tight-colors-brand-action-strongest);
|
|
232
211
|
--Tight-colors-typography-body: var(--Tight-colors-typography-base);
|
|
233
212
|
--Tight-colors-typography-label: var(--Tight-colors-typography-base);
|
|
234
213
|
--Tight-colors-typography-label-sub: var(--Tight-colors-typography-base-weak);
|
|
@@ -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
|
}
|
|
@@ -367,12 +420,8 @@
|
|
|
367
420
|
border: var(--Tight-borderWidths-lg) solid var(--Tight-colors-border-layout-weak);
|
|
368
421
|
}
|
|
369
422
|
|
|
370
|
-
.tsystem-
|
|
371
|
-
padding:
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.tsystem-p_12px_16px {
|
|
375
|
-
padding: 12px 16px;
|
|
423
|
+
.tsystem-p_12px_15px {
|
|
424
|
+
padding: 12px 15px;
|
|
376
425
|
}
|
|
377
426
|
|
|
378
427
|
.tsystem-p_15 {
|
|
@@ -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,50 @@
|
|
|
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-anim_slideIn\.right {
|
|
472
|
+
animation: var(--Tight-animations-slideIn-right);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.tsystem-anim_slideIn\.up {
|
|
476
|
+
animation: var(--Tight-animations-slideIn-up);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.tsystem-anim_slideOut\.right {
|
|
480
|
+
animation: var(--Tight-animations-slideOut-right);
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.tsystem-anim_slideOut\.down {
|
|
484
|
+
animation: var(--Tight-animations-slideOut-down);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.tsystem-m_0_0_7px_0 {
|
|
488
|
+
margin: 0 0 7px 0;
|
|
489
|
+
}
|
|
490
|
+
|
|
406
491
|
.tsystem-p_4px_5px {
|
|
407
492
|
padding: 4px 5px;
|
|
408
493
|
}
|
|
@@ -443,10 +528,6 @@
|
|
|
443
528
|
padding: 0 25px;
|
|
444
529
|
}
|
|
445
530
|
|
|
446
|
-
.tsystem-m_0 {
|
|
447
|
-
margin: 0;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
531
|
.tsystem-bd_\{borderWidths\.lg\}_solid {
|
|
451
532
|
border: var(--Tight-borderWidths-lg) solid;
|
|
452
533
|
}
|
|
@@ -507,22 +588,42 @@
|
|
|
507
588
|
margin: 0 auto;
|
|
508
589
|
}
|
|
509
590
|
|
|
591
|
+
.tsystem-p_10 {
|
|
592
|
+
padding: 10px;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.tsystem-p_20px {
|
|
596
|
+
padding: 20px;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.tsystem-p_none {
|
|
600
|
+
padding: none;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.tsystem-p_20px_15px_14px_15px {
|
|
604
|
+
padding: 20px 15px 14px 15px;
|
|
605
|
+
}
|
|
606
|
+
|
|
510
607
|
.tsystem-m_15px {
|
|
511
608
|
margin: 15px;
|
|
512
609
|
}
|
|
513
610
|
|
|
514
|
-
.tsystem-
|
|
515
|
-
|
|
611
|
+
.tsystem-bg_foreground {
|
|
612
|
+
background: foreground;
|
|
516
613
|
}
|
|
517
614
|
|
|
518
|
-
.tsystem-
|
|
519
|
-
padding: 8px;
|
|
615
|
+
.tsystem-p_10px_8px {
|
|
616
|
+
padding: 10px 8px;
|
|
520
617
|
}
|
|
521
618
|
|
|
522
619
|
.tsystem-p_4px_8px {
|
|
523
620
|
padding: 4px 8px;
|
|
524
621
|
}
|
|
525
622
|
|
|
623
|
+
.tsystem-p_40px_20px {
|
|
624
|
+
padding: 40px 20px;
|
|
625
|
+
}
|
|
626
|
+
|
|
526
627
|
.tsystem-p_15px_15px_0_15px {
|
|
527
628
|
padding: 15px 15px 0 15px;
|
|
528
629
|
}
|
|
@@ -531,10 +632,6 @@
|
|
|
531
632
|
padding: 0 10px;
|
|
532
633
|
}
|
|
533
634
|
|
|
534
|
-
.tsystem-bg_none {
|
|
535
|
-
background: var(--Tight-colors-none);
|
|
536
|
-
}
|
|
537
|
-
|
|
538
635
|
.tsystem-p_2px {
|
|
539
636
|
padding: 2px;
|
|
540
637
|
}
|
|
@@ -543,8 +640,8 @@
|
|
|
543
640
|
padding: 5px 10px;
|
|
544
641
|
}
|
|
545
642
|
|
|
546
|
-
.tsystem-
|
|
547
|
-
|
|
643
|
+
.tsystem-bg_none {
|
|
644
|
+
background: var(--Tight-colors-none);
|
|
548
645
|
}
|
|
549
646
|
|
|
550
647
|
.tsystem-bd_1px_solid_\{colors\.border\.layout\} {
|
|
@@ -555,16 +652,40 @@
|
|
|
555
652
|
padding: 10px 25px 10px 15px;
|
|
556
653
|
}
|
|
557
654
|
|
|
655
|
+
.tsystem-p_5 {
|
|
656
|
+
padding: 5px;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.tsystem-bd_0 {
|
|
660
|
+
border: 0;
|
|
661
|
+
}
|
|
662
|
+
|
|
558
663
|
.tsystem-p_25px {
|
|
559
664
|
padding: 25px;
|
|
560
665
|
}
|
|
561
666
|
|
|
562
|
-
.tsystem-
|
|
563
|
-
|
|
667
|
+
.tsystem-p_8px_16px {
|
|
668
|
+
padding: 8px 16px;
|
|
564
669
|
}
|
|
565
670
|
|
|
566
|
-
.tsystem-
|
|
567
|
-
padding:
|
|
671
|
+
.tsystem-p_16px_16px_45px_16px {
|
|
672
|
+
padding: 16px 16px 45px 16px;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.tsystem-bd_\{borderWidths\.sm\}_solid_\{colors\.border\.layout\} {
|
|
676
|
+
border: var(--Tight-borderWidths-sm) solid var(--Tight-colors-border-layout);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.tsystem-bg_brand\.success {
|
|
680
|
+
background: var(--Tight-colors-brand-success);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.tsystem-p_2px_6px {
|
|
684
|
+
padding: 2px 6px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.tsystem-bd_\{borderWidths\.lg\}_solid_\{colors\.border\.layout\} {
|
|
688
|
+
border: var(--Tight-borderWidths-lg) solid var(--Tight-colors-border-layout);
|
|
568
689
|
}
|
|
569
690
|
|
|
570
691
|
.tsystem-p_6px_0_6px_6px {
|
|
@@ -628,18 +749,34 @@
|
|
|
628
749
|
transition: color 300ms ease-out;
|
|
629
750
|
}
|
|
630
751
|
|
|
631
|
-
.tsystem-
|
|
632
|
-
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.tsystem-bd-t_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.strong\} {
|
|
636
|
-
border-top: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-strong);
|
|
752
|
+
.tsystem-flex_0_0_auto {
|
|
753
|
+
flex: 0 0 auto;
|
|
637
754
|
}
|
|
638
755
|
|
|
639
756
|
.tsystem-bdr_lg {
|
|
640
757
|
border-radius: var(--Tight-radii-lg);
|
|
641
758
|
}
|
|
642
759
|
|
|
760
|
+
.tsystem-gap_8px {
|
|
761
|
+
gap: 8px;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.tsystem-bd-w_lg {
|
|
765
|
+
border-width: var(--Tight-borderWidths-lg);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.tsystem-border-style_solid {
|
|
769
|
+
border-style: solid;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.tsystem-bd-c_border\.layout\.strong {
|
|
773
|
+
border-color: var(--Tight-colors-border-layout-strong);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.tsystem-gap_15px {
|
|
777
|
+
gap: 15px;
|
|
778
|
+
}
|
|
779
|
+
|
|
643
780
|
.tsystem-bd-c_border\.intent\.warning {
|
|
644
781
|
border-color: var(--Tight-colors-border-intent-warning);
|
|
645
782
|
}
|
|
@@ -676,16 +813,32 @@
|
|
|
676
813
|
border-radius: 50%;
|
|
677
814
|
}
|
|
678
815
|
|
|
679
|
-
.tsystem-
|
|
680
|
-
gap:
|
|
816
|
+
.tsystem-gap_12px {
|
|
817
|
+
gap: 12px;
|
|
681
818
|
}
|
|
682
819
|
|
|
683
820
|
.tsystem-bd-w_1 {
|
|
684
821
|
border-width: 1px;
|
|
685
822
|
}
|
|
686
823
|
|
|
687
|
-
.tsystem-
|
|
688
|
-
|
|
824
|
+
.tsystem-gap_4px {
|
|
825
|
+
gap: 4px;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.tsystem-flex_1 {
|
|
829
|
+
flex: 1 1 0%;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.tsystem-td_none {
|
|
833
|
+
text-decoration: none;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.tsystem-bd-t_\{borderWidths\.lg\}_solid {
|
|
837
|
+
border-top: var(--Tight-borderWidths-lg) solid;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.tsystem-gap_15 {
|
|
841
|
+
gap: 15px;
|
|
689
842
|
}
|
|
690
843
|
|
|
691
844
|
.tsystem-ov_wrap {
|
|
@@ -728,28 +881,20 @@
|
|
|
728
881
|
border-width: 0;
|
|
729
882
|
}
|
|
730
883
|
|
|
731
|
-
.tsystem-bd-c_border\.layout\.strong {
|
|
732
|
-
border-color: var(--Tight-colors-border-layout-strong);
|
|
733
|
-
}
|
|
734
|
-
|
|
735
884
|
.tsystem-trs_all_300ms_ease-out {
|
|
736
885
|
transition: all 300ms ease-out;
|
|
737
886
|
}
|
|
738
887
|
|
|
739
|
-
.tsystem-place-items_center {
|
|
740
|
-
place-items: center;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
888
|
.tsystem-gap_16px {
|
|
744
889
|
gap: 16px;
|
|
745
890
|
}
|
|
746
891
|
|
|
747
|
-
.tsystem-
|
|
748
|
-
|
|
892
|
+
.tsystem-ov_auto {
|
|
893
|
+
overflow: auto;
|
|
749
894
|
}
|
|
750
895
|
|
|
751
|
-
.tsystem-
|
|
752
|
-
|
|
896
|
+
.tsystem-px_8px {
|
|
897
|
+
padding-inline: 8px;
|
|
753
898
|
}
|
|
754
899
|
|
|
755
900
|
.tsystem-bg-p_100\%_0 {
|
|
@@ -792,8 +937,8 @@
|
|
|
792
937
|
gap: 9px;
|
|
793
938
|
}
|
|
794
939
|
|
|
795
|
-
.tsystem-bd-
|
|
796
|
-
border-
|
|
940
|
+
.tsystem-bd-c_strong {
|
|
941
|
+
border-color: strong;
|
|
797
942
|
}
|
|
798
943
|
|
|
799
944
|
.tsystem-bd-b_\{borderWidths\.md\}_solid {
|
|
@@ -816,8 +961,8 @@
|
|
|
816
961
|
border-right: none;
|
|
817
962
|
}
|
|
818
963
|
|
|
819
|
-
.tsystem-bd-
|
|
820
|
-
border-
|
|
964
|
+
.tsystem-bd-t_1px_solid {
|
|
965
|
+
border-top: 1px solid;
|
|
821
966
|
}
|
|
822
967
|
|
|
823
968
|
.tsystem-place-self_center {
|
|
@@ -828,8 +973,8 @@
|
|
|
828
973
|
margin-inline: 15px;
|
|
829
974
|
}
|
|
830
975
|
|
|
831
|
-
.tsystem-
|
|
832
|
-
|
|
976
|
+
.tsystem-bd-b_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.weak\} {
|
|
977
|
+
border-bottom: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-weak);
|
|
833
978
|
}
|
|
834
979
|
|
|
835
980
|
.tsystem-my_20px {
|
|
@@ -840,8 +985,8 @@
|
|
|
840
985
|
border-width: var(--Tight-borderWidths-sm);
|
|
841
986
|
}
|
|
842
987
|
|
|
843
|
-
.tsystem-
|
|
844
|
-
|
|
988
|
+
.tsystem-bd-t_\{borderWidths\.md\}_solid_\{colors\.border\.layout\.strong\} {
|
|
989
|
+
border-top: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-strong);
|
|
845
990
|
}
|
|
846
991
|
|
|
847
992
|
.tsystem-gap_10 {
|
|
@@ -852,14 +997,6 @@
|
|
|
852
997
|
flex: 1 0 0;
|
|
853
998
|
}
|
|
854
999
|
|
|
855
|
-
.tsystem-gap_7px {
|
|
856
|
-
gap: 7px;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
.tsystem-ov_auto {
|
|
860
|
-
overflow: auto;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
1000
|
.tsystem-gap_16 {
|
|
864
1001
|
gap: 16px;
|
|
865
1002
|
}
|
|
@@ -872,6 +1009,14 @@
|
|
|
872
1009
|
border-left: 1px solid var(--Tight-colors-border-layout);
|
|
873
1010
|
}
|
|
874
1011
|
|
|
1012
|
+
.tsystem-bd-l_1px_solid_\{colors\.border\.layout\.strong\} {
|
|
1013
|
+
border-left: 1px solid var(--Tight-colors-border-layout-strong);
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.tsystem-mx_40px {
|
|
1017
|
+
margin-inline: 40px;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
875
1020
|
.tsystem-tw_nowrap {
|
|
876
1021
|
text-wrap: nowrap;
|
|
877
1022
|
}
|
|
@@ -880,20 +1025,20 @@
|
|
|
880
1025
|
gap: 2px 2px;
|
|
881
1026
|
}
|
|
882
1027
|
|
|
883
|
-
.tsystem-
|
|
884
|
-
|
|
1028
|
+
.tsystem-gap_7px {
|
|
1029
|
+
gap: 7px;
|
|
885
1030
|
}
|
|
886
1031
|
|
|
887
|
-
.tsystem-
|
|
888
|
-
|
|
1032
|
+
.tsystem-bd-w_1px {
|
|
1033
|
+
border-width: 1px;
|
|
889
1034
|
}
|
|
890
1035
|
|
|
891
|
-
.tsystem-
|
|
892
|
-
|
|
1036
|
+
.tsystem-fv_normal {
|
|
1037
|
+
font-variant: normal;
|
|
893
1038
|
}
|
|
894
1039
|
|
|
895
|
-
.tsystem-
|
|
896
|
-
|
|
1040
|
+
.tsystem-text-emphasis_none {
|
|
1041
|
+
text-emphasis: none;
|
|
897
1042
|
}
|
|
898
1043
|
|
|
899
1044
|
.tsystem-gap_30px {
|
|
@@ -916,14 +1061,6 @@
|
|
|
916
1061
|
gap: 6px;
|
|
917
1062
|
}
|
|
918
1063
|
|
|
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
1064
|
.tsystem-d_flex {
|
|
928
1065
|
display: flex;
|
|
929
1066
|
}
|
|
@@ -1008,12 +1145,40 @@
|
|
|
1008
1145
|
letter-spacing: 0.66px;
|
|
1009
1146
|
}
|
|
1010
1147
|
|
|
1148
|
+
.tsystem-bx-s_border-box {
|
|
1149
|
+
box-sizing: border-box;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.tsystem-bg-c_surface\.intent\.action {
|
|
1153
|
+
background-color: var(--Tight-colors-surface-intent-action);
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1011
1156
|
.tsystem-flex-d_column {
|
|
1012
1157
|
flex-direction: column;
|
|
1013
1158
|
}
|
|
1014
1159
|
|
|
1015
|
-
.tsystem-
|
|
1016
|
-
|
|
1160
|
+
.tsystem-ta_right {
|
|
1161
|
+
text-align: right;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.tsystem-bg-c_surface\.foreground {
|
|
1165
|
+
background-color: var(--Tight-colors-surface-foreground);
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.tsystem-ai_flex-start {
|
|
1169
|
+
align-items: flex-start;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.tsystem-ai_flex-end {
|
|
1173
|
+
align-items: flex-end;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.tsystem-flex-d_row {
|
|
1177
|
+
flex-direction: row;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.tsystem-ta_left {
|
|
1181
|
+
text-align: left;
|
|
1017
1182
|
}
|
|
1018
1183
|
|
|
1019
1184
|
.tsystem-jc_flex-end {
|
|
@@ -1028,30 +1193,14 @@
|
|
|
1028
1193
|
justify-content: space-between;
|
|
1029
1194
|
}
|
|
1030
1195
|
|
|
1031
|
-
.tsystem-ai_flex-start {
|
|
1032
|
-
align-items: flex-start;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
1196
|
.tsystem-as_stretch {
|
|
1036
1197
|
align-self: stretch;
|
|
1037
1198
|
}
|
|
1038
1199
|
|
|
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
1200
|
.tsystem-bg-c_surface\.intent\.secondary {
|
|
1048
1201
|
background-color: var(--Tight-colors-surface-intent-secondary);
|
|
1049
1202
|
}
|
|
1050
1203
|
|
|
1051
|
-
.tsystem-flex-d_row {
|
|
1052
|
-
flex-direction: row;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
1204
|
.tsystem-flex-d_row-reverse {
|
|
1056
1205
|
flex-direction: row-reverse;
|
|
1057
1206
|
}
|
|
@@ -1064,6 +1213,14 @@
|
|
|
1064
1213
|
flex-shrink: 1;
|
|
1065
1214
|
}
|
|
1066
1215
|
|
|
1216
|
+
.tsystem-c_inherit {
|
|
1217
|
+
color: var(--Tight-colors-inherit);
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.tsystem-bg-c_surface\.background {
|
|
1221
|
+
background-color: var(--Tight-colors-surface-background);
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1067
1224
|
.tsystem-wb_break-word {
|
|
1068
1225
|
word-break: break-word;
|
|
1069
1226
|
}
|
|
@@ -1140,14 +1297,18 @@
|
|
|
1140
1297
|
background-color: var(--Tight-colors-overlay);
|
|
1141
1298
|
}
|
|
1142
1299
|
|
|
1143
|
-
.tsystem-
|
|
1144
|
-
|
|
1300
|
+
.tsystem-d_none {
|
|
1301
|
+
display: none;
|
|
1145
1302
|
}
|
|
1146
1303
|
|
|
1147
1304
|
.tsystem-flex-g_1 {
|
|
1148
1305
|
flex-grow: 1;
|
|
1149
1306
|
}
|
|
1150
1307
|
|
|
1308
|
+
.tsystem-c_icon\.accent\.danger {
|
|
1309
|
+
color: var(--Tight-colors-icon-accent-danger);
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1151
1312
|
.tsystem-stk_currentColor {
|
|
1152
1313
|
stroke: var(--Tight-colors-currentColor);
|
|
1153
1314
|
}
|
|
@@ -1228,6 +1389,10 @@
|
|
|
1228
1389
|
fill: var(--Tight-colors-transparent);
|
|
1229
1390
|
}
|
|
1230
1391
|
|
|
1392
|
+
.tsystem-obj-f_contain {
|
|
1393
|
+
object-fit: contain;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1231
1396
|
.tsystem-d_inline-flex {
|
|
1232
1397
|
display: inline-flex;
|
|
1233
1398
|
}
|
|
@@ -1236,10 +1401,6 @@
|
|
|
1236
1401
|
color: var(--Tight-colors-typography-intent-action);
|
|
1237
1402
|
}
|
|
1238
1403
|
|
|
1239
|
-
.tsystem-bg-c_surface\.intent\.action {
|
|
1240
|
-
background-color: var(--Tight-colors-surface-intent-action);
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
1404
|
.tsystem-c_typography\.intent\.danger {
|
|
1244
1405
|
color: var(--Tight-colors-typography-intent-danger);
|
|
1245
1406
|
}
|
|
@@ -1288,6 +1449,30 @@
|
|
|
1288
1449
|
overflow-wrap: break-word;
|
|
1289
1450
|
}
|
|
1290
1451
|
|
|
1452
|
+
.tsystem-fw_label\.strong {
|
|
1453
|
+
font-weight: var(--Tight-fontWeights-label-strong);
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.tsystem-fs_lg {
|
|
1457
|
+
font-size: var(--Tight-fontSizes-lg);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.tsystem-ff_label {
|
|
1461
|
+
font-family: var(--Tight-fonts-label);
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.tsystem-c_typography\.label\.strong {
|
|
1465
|
+
color: var(--Tight-colors-typography-label-strong);
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.tsystem-lh_18px {
|
|
1469
|
+
line-height: 18px;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.tsystem-ls_0\.84px {
|
|
1473
|
+
letter-spacing: 0.84px;
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1291
1476
|
.tsystem-bg-c_border\.layout\.strong {
|
|
1292
1477
|
background-color: var(--Tight-colors-border-layout-strong);
|
|
1293
1478
|
}
|
|
@@ -1334,6 +1519,10 @@
|
|
|
1334
1519
|
border-top-right-radius: var(--Tight-radii-lg);
|
|
1335
1520
|
}
|
|
1336
1521
|
|
|
1522
|
+
.tsystem-flex-wrap_wrap {
|
|
1523
|
+
flex-wrap: wrap;
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1337
1526
|
.tsystem-c_icon\.intent\.primary {
|
|
1338
1527
|
color: var(--Tight-colors-icon-intent-primary);
|
|
1339
1528
|
}
|
|
@@ -1346,30 +1535,14 @@
|
|
|
1346
1535
|
font-weight: var(--Tight-fontWeights-lg);
|
|
1347
1536
|
}
|
|
1348
1537
|
|
|
1349
|
-
.tsystem-ls_0\.84px {
|
|
1350
|
-
letter-spacing: 0.84px;
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
1538
|
.tsystem-lh_16px {
|
|
1354
1539
|
line-height: 16px;
|
|
1355
1540
|
}
|
|
1356
1541
|
|
|
1357
|
-
.tsystem-ff_label {
|
|
1358
|
-
font-family: var(--Tight-fonts-label);
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
1542
|
.tsystem-fw_label {
|
|
1362
1543
|
font-weight: var(--Tight-fontWeights-label);
|
|
1363
1544
|
}
|
|
1364
1545
|
|
|
1365
|
-
.tsystem-fs_lg {
|
|
1366
|
-
font-size: var(--Tight-fontSizes-lg);
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
.tsystem-lh_18px {
|
|
1370
|
-
line-height: 18px;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
1546
|
.tsystem-c_typography\.label {
|
|
1374
1547
|
color: var(--Tight-colors-typography-label);
|
|
1375
1548
|
}
|
|
@@ -1378,10 +1551,6 @@
|
|
|
1378
1551
|
white-space: normal;
|
|
1379
1552
|
}
|
|
1380
1553
|
|
|
1381
|
-
.tsystem-ta_left {
|
|
1382
|
-
text-align: left;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
1554
|
.tsystem-ta_start {
|
|
1386
1555
|
text-align: start;
|
|
1387
1556
|
}
|
|
@@ -1406,10 +1575,6 @@
|
|
|
1406
1575
|
color: var(--Tight-colors-typography-base-weak);
|
|
1407
1576
|
}
|
|
1408
1577
|
|
|
1409
|
-
.tsystem-bx-s_border-box {
|
|
1410
|
-
box-sizing: border-box;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
1578
|
.tsystem-trf_rotate\(-20deg\) {
|
|
1414
1579
|
transform: rotate(-20deg);
|
|
1415
1580
|
}
|
|
@@ -1438,14 +1603,6 @@
|
|
|
1438
1603
|
font-family: var(--Tight-fonts-body);
|
|
1439
1604
|
}
|
|
1440
1605
|
|
|
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
1606
|
.tsystem-fw_label\.strongSub {
|
|
1450
1607
|
font-weight: var(--Tight-fontWeights-label-strongSub);
|
|
1451
1608
|
}
|
|
@@ -1546,10 +1703,27 @@
|
|
|
1546
1703
|
color: var(--Tight-colors-money-positive);
|
|
1547
1704
|
}
|
|
1548
1705
|
|
|
1706
|
+
.tsystem-us_none {
|
|
1707
|
+
-webkit-user-select: none;
|
|
1708
|
+
user-select: none;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1549
1711
|
.tsystem-bd-be-w_var\(--thickness\) {
|
|
1550
1712
|
border-block-end-width: var(--thickness);
|
|
1551
1713
|
}
|
|
1552
1714
|
|
|
1715
|
+
.tsystem-d_block {
|
|
1716
|
+
display: block;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.tsystem-grid-tc_1fr {
|
|
1720
|
+
grid-template-columns: 1fr;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.tsystem-grid-tc_300px_auto_175px {
|
|
1724
|
+
grid-template-columns: 300px auto 175px;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1553
1727
|
.tsystem-grid-tc_100\% {
|
|
1554
1728
|
grid-template-columns: 100%;
|
|
1555
1729
|
}
|
|
@@ -1570,11 +1744,6 @@
|
|
|
1570
1744
|
line-height: 26px;
|
|
1571
1745
|
}
|
|
1572
1746
|
|
|
1573
|
-
.tsystem-us_none {
|
|
1574
|
-
-webkit-user-select: none;
|
|
1575
|
-
user-select: none;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
1747
|
.tsystem-scr-bar_hidden {
|
|
1579
1748
|
-ms-overflow-style: none;
|
|
1580
1749
|
scrollbar-width: none;
|
|
@@ -1584,6 +1753,10 @@
|
|
|
1584
1753
|
display: none;
|
|
1585
1754
|
}
|
|
1586
1755
|
|
|
1756
|
+
.tsystem-pos_sticky {
|
|
1757
|
+
position: sticky;
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1587
1760
|
.tsystem-stk_icon\.base\.weak {
|
|
1588
1761
|
stroke: var(--Tight-colors-icon-base-weak);
|
|
1589
1762
|
}
|
|
@@ -1596,14 +1769,14 @@
|
|
|
1596
1769
|
stroke: var(--Tight-colors-icon-base);
|
|
1597
1770
|
}
|
|
1598
1771
|
|
|
1599
|
-
.tsystem-c_icon\.accent\.danger {
|
|
1600
|
-
color: var(--Tight-colors-icon-accent-danger);
|
|
1601
|
-
}
|
|
1602
|
-
|
|
1603
1772
|
.tsystem-bg-c_brand\.secondary {
|
|
1604
1773
|
background-color: var(--Tight-colors-brand-secondary);
|
|
1605
1774
|
}
|
|
1606
1775
|
|
|
1776
|
+
.tsystem-c_var\(--Tight-colors-brand-secondary\) {
|
|
1777
|
+
color: var(--Tight-colors-brand-secondary);
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1607
1780
|
.tsystem-bdr-r_0 {
|
|
1608
1781
|
border-top-right-radius: 0;
|
|
1609
1782
|
border-bottom-right-radius: 0;
|
|
@@ -1614,6 +1787,10 @@
|
|
|
1614
1787
|
border-bottom-left-radius: 0;
|
|
1615
1788
|
}
|
|
1616
1789
|
|
|
1790
|
+
.tsystem-jc_right {
|
|
1791
|
+
justify-content: right;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1617
1794
|
.tsystem-bg-c_foreground {
|
|
1618
1795
|
background-color: foreground;
|
|
1619
1796
|
}
|
|
@@ -1679,14 +1856,6 @@
|
|
|
1679
1856
|
font-size: 16px;
|
|
1680
1857
|
}
|
|
1681
1858
|
|
|
1682
|
-
.tsystem-d_block {
|
|
1683
|
-
display: block;
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
|
-
.tsystem-bx-sh_none {
|
|
1687
|
-
box-shadow: none;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
1859
|
.tsystem-bg-c_money\.positive\.weak {
|
|
1691
1860
|
background-color: var(--Tight-colors-money-positive-weak);
|
|
1692
1861
|
}
|
|
@@ -1703,10 +1872,46 @@
|
|
|
1703
1872
|
stroke-dasharray: 0;
|
|
1704
1873
|
}
|
|
1705
1874
|
|
|
1875
|
+
.tsystem-stk_var\(--Tight-colors-border-layout\) {
|
|
1876
|
+
stroke: var(--Tight-colors-border-layout);
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.tsystem-fill_var\(--Tight-colors-money-positive\) {
|
|
1880
|
+
fill: var(--Tight-colors-money-positive);
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.tsystem-fill_var\(--Tight-colors-money-positive-weak\) {
|
|
1884
|
+
fill: var(--Tight-colors-money-positive-weak);
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.tsystem-fill_var\(--Tight-colors-money-negative\) {
|
|
1888
|
+
fill: var(--Tight-colors-money-negative);
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.tsystem-fill_var\(--Tight-colors-money-negative-weak\) {
|
|
1892
|
+
fill: var(--Tight-colors-money-negative-weak);
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.tsystem-fill_var\(--Tight-colors-border-layout\) {
|
|
1896
|
+
fill: var(--Tight-colors-border-layout);
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1706
1899
|
.tsystem-y_0 {
|
|
1707
1900
|
y: 0;
|
|
1708
1901
|
}
|
|
1709
1902
|
|
|
1903
|
+
.tsystem-stk_var\(--Tight-colors-border-layout-strong\) {
|
|
1904
|
+
stroke: var(--Tight-colors-border-layout-strong);
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.tsystem-fill_var\(--Tight-colors-money\) {
|
|
1908
|
+
fill: var(--Tight-colors-money);
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.tsystem-stk_var\(--Tight-colors-money\) {
|
|
1912
|
+
stroke: var(--Tight-colors-money);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1710
1915
|
.tsystem-stk-w_1 {
|
|
1711
1916
|
stroke-width: 1;
|
|
1712
1917
|
}
|
|
@@ -1723,18 +1928,10 @@
|
|
|
1723
1928
|
z-index: 100;
|
|
1724
1929
|
}
|
|
1725
1930
|
|
|
1726
|
-
.tsystem-jc_right {
|
|
1727
|
-
justify-content: right;
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
1931
|
.tsystem-white-space_wrap {
|
|
1731
1932
|
white-space: wrap;
|
|
1732
1933
|
}
|
|
1733
1934
|
|
|
1734
|
-
.tsystem-c_inherit {
|
|
1735
|
-
color: var(--Tight-colors-inherit);
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
1935
|
.tsystem-bg-c_surface\.intent\.action\.discrete\.active {
|
|
1739
1936
|
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
1740
1937
|
}
|
|
@@ -1743,46 +1940,42 @@
|
|
|
1743
1940
|
max-width: 100%;
|
|
1744
1941
|
}
|
|
1745
1942
|
|
|
1746
|
-
.tsystem-
|
|
1747
|
-
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
.tsystem-ov-y_auto {
|
|
1751
|
-
overflow-y: auto;
|
|
1943
|
+
.tsystem-w_50px {
|
|
1944
|
+
width: 50px;
|
|
1752
1945
|
}
|
|
1753
1946
|
|
|
1754
|
-
.tsystem-
|
|
1755
|
-
|
|
1947
|
+
.tsystem-h_50px {
|
|
1948
|
+
height: 50px;
|
|
1756
1949
|
}
|
|
1757
1950
|
|
|
1758
|
-
.tsystem-
|
|
1759
|
-
|
|
1951
|
+
.tsystem-w_100\% {
|
|
1952
|
+
width: 100%;
|
|
1760
1953
|
}
|
|
1761
1954
|
|
|
1762
|
-
.tsystem-
|
|
1763
|
-
|
|
1955
|
+
.tsystem-w_sm {
|
|
1956
|
+
width: sm;
|
|
1764
1957
|
}
|
|
1765
1958
|
|
|
1766
1959
|
.tsystem-w_202px {
|
|
1767
1960
|
width: 202px;
|
|
1768
1961
|
}
|
|
1769
1962
|
|
|
1770
|
-
.tsystem-min-
|
|
1771
|
-
min-width:
|
|
1963
|
+
.tsystem-min-w_350px {
|
|
1964
|
+
min-width: 350px;
|
|
1772
1965
|
}
|
|
1773
1966
|
|
|
1774
1967
|
.tsystem-min-w_200px {
|
|
1775
1968
|
min-width: 200px;
|
|
1776
1969
|
}
|
|
1777
1970
|
|
|
1778
|
-
.tsystem-w_100\% {
|
|
1779
|
-
width: 100%;
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
1971
|
.tsystem-h_72 {
|
|
1783
1972
|
height: 72px;
|
|
1784
1973
|
}
|
|
1785
1974
|
|
|
1975
|
+
.tsystem-min-w_300px {
|
|
1976
|
+
min-width: 300px;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1786
1979
|
.tsystem-w_20px {
|
|
1787
1980
|
width: 20px;
|
|
1788
1981
|
}
|
|
@@ -1807,6 +2000,10 @@
|
|
|
1807
2000
|
min-width: 0;
|
|
1808
2001
|
}
|
|
1809
2002
|
|
|
2003
|
+
.tsystem-max-w_325 {
|
|
2004
|
+
max-width: 325px;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1810
2007
|
.tsystem-min-h_0 {
|
|
1811
2008
|
min-height: 0;
|
|
1812
2009
|
}
|
|
@@ -1815,12 +2012,12 @@
|
|
|
1815
2012
|
height: auto;
|
|
1816
2013
|
}
|
|
1817
2014
|
|
|
1818
|
-
.tsystem-
|
|
1819
|
-
|
|
2015
|
+
.tsystem-bd-t-c_border\.layout {
|
|
2016
|
+
border-top-color: var(--Tight-colors-border-layout);
|
|
1820
2017
|
}
|
|
1821
2018
|
|
|
1822
|
-
.tsystem-
|
|
1823
|
-
|
|
2019
|
+
.tsystem-mb_18px {
|
|
2020
|
+
margin-bottom: 18px;
|
|
1824
2021
|
}
|
|
1825
2022
|
|
|
1826
2023
|
.tsystem-top_-1 {
|
|
@@ -1847,6 +2044,10 @@
|
|
|
1847
2044
|
height: 25px;
|
|
1848
2045
|
}
|
|
1849
2046
|
|
|
2047
|
+
.tsystem-ov-y_auto {
|
|
2048
|
+
overflow-y: auto;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
1850
2051
|
.tsystem-ov-x_hidden {
|
|
1851
2052
|
overflow-x: hidden;
|
|
1852
2053
|
}
|
|
@@ -1923,6 +2124,26 @@
|
|
|
1923
2124
|
max-width: 360px;
|
|
1924
2125
|
}
|
|
1925
2126
|
|
|
2127
|
+
.tsystem-max-w_600px {
|
|
2128
|
+
max-width: 600px;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.tsystem-min-w_400px {
|
|
2132
|
+
min-width: 400px;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.tsystem-min-w_100dvw {
|
|
2136
|
+
min-width: 100dvw;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.tsystem-max-w_100dvw {
|
|
2140
|
+
max-width: 100dvw;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.tsystem-h_100dvh {
|
|
2144
|
+
height: 100dvh;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
1926
2147
|
.tsystem-right_0 {
|
|
1927
2148
|
right: 0;
|
|
1928
2149
|
}
|
|
@@ -1935,6 +2156,10 @@
|
|
|
1935
2156
|
left: 0;
|
|
1936
2157
|
}
|
|
1937
2158
|
|
|
2159
|
+
.tsystem-bottom_0 {
|
|
2160
|
+
bottom: 0;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
1938
2163
|
.tsystem-max-h_100\% {
|
|
1939
2164
|
max-height: 100%;
|
|
1940
2165
|
}
|
|
@@ -1963,20 +2188,12 @@
|
|
|
1963
2188
|
width: 100dvw;
|
|
1964
2189
|
}
|
|
1965
2190
|
|
|
1966
|
-
.tsystem-h_100dvh {
|
|
1967
|
-
height: 100dvh;
|
|
1968
|
-
}
|
|
1969
|
-
|
|
1970
|
-
.tsystem-min-w_100dvw {
|
|
1971
|
-
min-width: 100dvw;
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
2191
|
.tsystem-max-h_100dvh {
|
|
1975
2192
|
max-height: 100dvh;
|
|
1976
2193
|
}
|
|
1977
2194
|
|
|
1978
|
-
.tsystem-
|
|
1979
|
-
|
|
2195
|
+
.tsystem-min-h_36px {
|
|
2196
|
+
min-height: 36px;
|
|
1980
2197
|
}
|
|
1981
2198
|
|
|
1982
2199
|
.tsystem-w_24 {
|
|
@@ -2051,12 +2268,16 @@
|
|
|
2051
2268
|
height: 80px;
|
|
2052
2269
|
}
|
|
2053
2270
|
|
|
2054
|
-
.tsystem-
|
|
2055
|
-
width:
|
|
2271
|
+
.tsystem-max-w_900px {
|
|
2272
|
+
max-width: 900px;
|
|
2056
2273
|
}
|
|
2057
2274
|
|
|
2058
|
-
.tsystem-
|
|
2059
|
-
|
|
2275
|
+
.tsystem-min-w_360px {
|
|
2276
|
+
min-width: 360px;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.tsystem-w_max-content {
|
|
2280
|
+
width: max-content;
|
|
2060
2281
|
}
|
|
2061
2282
|
|
|
2062
2283
|
.tsystem-min-w_fit-content {
|
|
@@ -2143,6 +2364,14 @@
|
|
|
2143
2364
|
height: 250px;
|
|
2144
2365
|
}
|
|
2145
2366
|
|
|
2367
|
+
.tsystem-pb_20px {
|
|
2368
|
+
padding-bottom: 20px;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.tsystem-pt_20px {
|
|
2372
|
+
padding-top: 20px;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2146
2375
|
.tsystem-pb_14px {
|
|
2147
2376
|
padding-bottom: 14px;
|
|
2148
2377
|
}
|
|
@@ -2155,6 +2384,26 @@
|
|
|
2155
2384
|
padding-right: 15px;
|
|
2156
2385
|
}
|
|
2157
2386
|
|
|
2387
|
+
.tsystem-pt_10px {
|
|
2388
|
+
padding-top: 10px;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.tsystem-min-h_200px {
|
|
2392
|
+
min-height: 200px;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.tsystem-h_fit-content {
|
|
2396
|
+
height: fit-content;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
.tsystem-mt_15px {
|
|
2400
|
+
margin-top: 15px;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
.tsystem-mb_15px {
|
|
2404
|
+
margin-bottom: 15px;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2158
2407
|
.tsystem-w_fill-parent {
|
|
2159
2408
|
width: fill-parent;
|
|
2160
2409
|
}
|
|
@@ -2179,6 +2428,18 @@
|
|
|
2179
2428
|
height: 45px;
|
|
2180
2429
|
}
|
|
2181
2430
|
|
|
2431
|
+
.tsystem-h_12px {
|
|
2432
|
+
height: 12px;
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
.tsystem-w_150px {
|
|
2436
|
+
width: 150px;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
.tsystem-h_16px {
|
|
2440
|
+
height: 16px;
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2182
2443
|
.tsystem-mb_8px {
|
|
2183
2444
|
margin-bottom: 8px;
|
|
2184
2445
|
}
|
|
@@ -2203,6 +2464,10 @@
|
|
|
2203
2464
|
width: 26px;
|
|
2204
2465
|
}
|
|
2205
2466
|
|
|
2467
|
+
.tsystem-mt_0px {
|
|
2468
|
+
margin-top: 0px;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2206
2471
|
.tsystem-max-w_1440 {
|
|
2207
2472
|
max-width: 1440px;
|
|
2208
2473
|
}
|
|
@@ -2223,26 +2488,6 @@
|
|
|
2223
2488
|
height: 35px;
|
|
2224
2489
|
}
|
|
2225
2490
|
|
|
2226
|
-
.tsystem-w_17px {
|
|
2227
|
-
width: 17px;
|
|
2228
|
-
}
|
|
2229
|
-
|
|
2230
|
-
.tsystem-h_17px {
|
|
2231
|
-
height: 17px;
|
|
2232
|
-
}
|
|
2233
|
-
|
|
2234
|
-
.tsystem-pl_2px {
|
|
2235
|
-
padding-left: 2px;
|
|
2236
|
-
}
|
|
2237
|
-
|
|
2238
|
-
.tsystem-pr_2px {
|
|
2239
|
-
padding-right: 2px;
|
|
2240
|
-
}
|
|
2241
|
-
|
|
2242
|
-
.tsystem-pb_5px {
|
|
2243
|
-
padding-bottom: 5px;
|
|
2244
|
-
}
|
|
2245
|
-
|
|
2246
2491
|
.tsystem-w_14px {
|
|
2247
2492
|
width: 14px;
|
|
2248
2493
|
}
|
|
@@ -2263,20 +2508,8 @@
|
|
|
2263
2508
|
margin-right: 15px;
|
|
2264
2509
|
}
|
|
2265
2510
|
|
|
2266
|
-
.tsystem-
|
|
2267
|
-
|
|
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;
|
|
2511
|
+
.tsystem-h_17px {
|
|
2512
|
+
height: 17px;
|
|
2280
2513
|
}
|
|
2281
2514
|
|
|
2282
2515
|
.tsystem-mb_10px {
|
|
@@ -2287,10 +2520,6 @@
|
|
|
2287
2520
|
width: 200px;
|
|
2288
2521
|
}
|
|
2289
2522
|
|
|
2290
|
-
.tsystem-h_16px {
|
|
2291
|
-
height: 16px;
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
2523
|
.tsystem-h_52px {
|
|
2295
2524
|
height: 52px;
|
|
2296
2525
|
}
|
|
@@ -2319,6 +2548,26 @@
|
|
|
2319
2548
|
min-height: 55px;
|
|
2320
2549
|
}
|
|
2321
2550
|
|
|
2551
|
+
.tsystem-max-w_1 {
|
|
2552
|
+
max-width: 1px;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
.tsystem-w_1 {
|
|
2556
|
+
width: 1px;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
.tsystem-w_70px {
|
|
2560
|
+
width: 70px;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.tsystem-h_24px {
|
|
2564
|
+
height: 24px;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.tsystem-mt_35px {
|
|
2568
|
+
margin-top: 35px;
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2322
2571
|
.tsystem-w_full {
|
|
2323
2572
|
width: full;
|
|
2324
2573
|
}
|
|
@@ -2347,6 +2596,10 @@
|
|
|
2347
2596
|
max-height: 150px;
|
|
2348
2597
|
}
|
|
2349
2598
|
|
|
2599
|
+
.tsystem-max-h_49px {
|
|
2600
|
+
max-height: 49px;
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2350
2603
|
.tsystem-w_325px {
|
|
2351
2604
|
width: 325px;
|
|
2352
2605
|
}
|
|
@@ -2359,18 +2612,6 @@
|
|
|
2359
2612
|
min-width: 325px;
|
|
2360
2613
|
}
|
|
2361
2614
|
|
|
2362
|
-
.tsystem-min-h_35px {
|
|
2363
|
-
min-height: 35px;
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2366
|
-
.tsystem-h_fit-content {
|
|
2367
|
-
height: fit-content;
|
|
2368
|
-
}
|
|
2369
|
-
|
|
2370
|
-
.tsystem-min-h_200px {
|
|
2371
|
-
min-height: 200px;
|
|
2372
|
-
}
|
|
2373
|
-
|
|
2374
2615
|
.tsystem-pt_4px {
|
|
2375
2616
|
padding-top: 4px;
|
|
2376
2617
|
}
|
|
@@ -2407,6 +2648,10 @@
|
|
|
2407
2648
|
width: 342px;
|
|
2408
2649
|
}
|
|
2409
2650
|
|
|
2651
|
+
.tsystem-w_512px {
|
|
2652
|
+
width: 512px;
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2410
2655
|
.tsystem-h_16 {
|
|
2411
2656
|
height: 16px;
|
|
2412
2657
|
}
|
|
@@ -2447,16 +2692,8 @@
|
|
|
2447
2692
|
max-width: 420px;
|
|
2448
2693
|
}
|
|
2449
2694
|
|
|
2450
|
-
.tsystem-
|
|
2451
|
-
|
|
2452
|
-
}
|
|
2453
|
-
|
|
2454
|
-
.tsystem-mt_35px {
|
|
2455
|
-
margin-top: 35px;
|
|
2456
|
-
}
|
|
2457
|
-
|
|
2458
|
-
.tsystem-pt_10px {
|
|
2459
|
-
padding-top: 10px;
|
|
2695
|
+
.tsystem-pt_50px {
|
|
2696
|
+
padding-top: 50px;
|
|
2460
2697
|
}
|
|
2461
2698
|
|
|
2462
2699
|
.tsystem-pb_8px {
|
|
@@ -2569,6 +2806,14 @@
|
|
|
2569
2806
|
cursor: default;
|
|
2570
2807
|
}
|
|
2571
2808
|
|
|
2809
|
+
.\[\&_path\]\:tsystem-stk_icon\.base path {
|
|
2810
|
+
stroke: var(--Tight-colors-icon-base);
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
.\[\&_path\]\:tsystem-stk_icon\.accent\.danger path {
|
|
2814
|
+
stroke: var(--Tight-colors-icon-accent-danger);
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2572
2817
|
.\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.base .Tight-sub-label {
|
|
2573
2818
|
color: var(--Tight-colors-typography-base);
|
|
2574
2819
|
}
|
|
@@ -2689,14 +2934,6 @@
|
|
|
2689
2934
|
pointer-events: none;
|
|
2690
2935
|
}
|
|
2691
2936
|
|
|
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
2937
|
.disabled\:tsystem-cursor_default:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
2701
2938
|
cursor: default;
|
|
2702
2939
|
}
|
|
@@ -2717,6 +2954,10 @@
|
|
|
2717
2954
|
background-color: var(--Tight-colors-brand-primary);
|
|
2718
2955
|
}
|
|
2719
2956
|
|
|
2957
|
+
.placeholder\:tsystem-c_typography\.label\.sub::placeholder,.placeholder\:tsystem-c_typography\.label\.sub[data-placeholder] {
|
|
2958
|
+
color: var(--Tight-colors-typography-label-sub);
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2720
2961
|
.\[\&\[data-focused\=\'true\'\]\]\:tsystem-bx-sh_none[data-focused='true'] {
|
|
2721
2962
|
box-shadow: none;
|
|
2722
2963
|
}
|
|
@@ -2886,6 +3127,10 @@
|
|
|
2886
3127
|
outline: 4px solid;
|
|
2887
3128
|
}
|
|
2888
3129
|
|
|
3130
|
+
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
3131
|
+
outline: 4px solid;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
2889
3134
|
.focus\:tsystem-ring_none:is(:focus, [data-focus]) {
|
|
2890
3135
|
outline: 2px solid transparent;
|
|
2891
3136
|
outline-offset: 2px;
|
|
@@ -2932,10 +3177,6 @@
|
|
|
2932
3177
|
outline: 4px solid;
|
|
2933
3178
|
}
|
|
2934
3179
|
|
|
2935
|
-
.focusVisible\:tsystem-ring_4px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
2936
|
-
outline: 4px solid;
|
|
2937
|
-
}
|
|
2938
|
-
|
|
2939
3180
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring_4px_solid:has(button:focus-visible) {
|
|
2940
3181
|
outline: 4px solid;
|
|
2941
3182
|
}
|
|
@@ -2952,6 +3193,10 @@
|
|
|
2952
3193
|
outline-offset: -1px;
|
|
2953
3194
|
}
|
|
2954
3195
|
|
|
3196
|
+
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
3197
|
+
outline-color: var(--Tight-colors-border-layout);
|
|
3198
|
+
}
|
|
3199
|
+
|
|
2955
3200
|
.focus\:tsystem-cursor_text:is(:focus, [data-focus]) {
|
|
2956
3201
|
cursor: text;
|
|
2957
3202
|
}
|
|
@@ -2992,10 +3237,6 @@
|
|
|
2992
3237
|
outline-offset: -2px;
|
|
2993
3238
|
}
|
|
2994
3239
|
|
|
2995
|
-
.focusVisible\:tsystem-ring-c_border\.layout:is(:focus-visible, [data-focus-visible]) {
|
|
2996
|
-
outline-color: var(--Tight-colors-border-layout);
|
|
2997
|
-
}
|
|
2998
|
-
|
|
2999
3240
|
.\[\&\:has\(button\:focus-visible\)\]\:tsystem-ring-c_border\.layout:has(button:focus-visible) {
|
|
3000
3241
|
outline-color: var(--Tight-colors-border-layout);
|
|
3001
3242
|
}
|
|
@@ -3024,6 +3265,10 @@
|
|
|
3024
3265
|
bottom: 0;
|
|
3025
3266
|
}
|
|
3026
3267
|
|
|
3268
|
+
.hover\:tsystem-bg-c_surface\.intent\.action\.hover:is(:hover, [data-hover]) {
|
|
3269
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3027
3272
|
.hover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:is(:hover, [data-hover]) {
|
|
3028
3273
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3029
3274
|
}
|
|
@@ -3064,6 +3309,10 @@
|
|
|
3064
3309
|
fill: var(--Tight-colors-icon-intent-action-active);
|
|
3065
3310
|
}
|
|
3066
3311
|
|
|
3312
|
+
.active\:tsystem-bg-c_surface\.intent\.action\.discrete\.active:is(:active, [data-active]) {
|
|
3313
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-active);
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3067
3316
|
.\[\&\: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
3317
|
background-color: var(--Tight-colors-surface-intent-action-active);
|
|
3069
3318
|
}
|
|
@@ -3161,10 +3410,26 @@
|
|
|
3161
3410
|
}
|
|
3162
3411
|
|
|
3163
3412
|
@media screen and (min-width: 40rem) {
|
|
3413
|
+
.sm\:tsystem-m_32px {
|
|
3414
|
+
margin: 32px;
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3164
3417
|
.sm\:tsystem-p_4px {
|
|
3165
3418
|
padding: 4px;
|
|
3166
3419
|
}
|
|
3167
3420
|
|
|
3421
|
+
.sm\:tsystem-p_10px {
|
|
3422
|
+
padding: 10px;
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
|
+
.sm\:tsystem-bd_\{borderWidths\.md\}_solid_\{colors\.border\.layout\} {
|
|
3426
|
+
border: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout);
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
.sm\:tsystem-bd-c_transparent {
|
|
3430
|
+
border-color: var(--Tight-colors-transparent);
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3168
3433
|
.sm\:tsystem-gap_0 {
|
|
3169
3434
|
gap: 0;
|
|
3170
3435
|
}
|
|
@@ -3177,22 +3442,22 @@
|
|
|
3177
3442
|
place-self: flex-end;
|
|
3178
3443
|
}
|
|
3179
3444
|
|
|
3180
|
-
.sm\:tsystem-
|
|
3181
|
-
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
|
-
.sm\:tsystem-ai_center {
|
|
3185
|
-
align-items: center;
|
|
3445
|
+
.sm\:tsystem-bg-c_surface\.intent\.action\.discrete {
|
|
3446
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete);
|
|
3186
3447
|
}
|
|
3187
3448
|
|
|
3188
|
-
.sm\:tsystem-fs_label {
|
|
3189
|
-
font-size: var(--Tight-fontSizes-label);
|
|
3449
|
+
.sm\:tsystem-fs_label\.strong {
|
|
3450
|
+
font-size: var(--Tight-fontSizes-label-strong);
|
|
3190
3451
|
}
|
|
3191
3452
|
|
|
3192
3453
|
.sm\:tsystem-lh_16px {
|
|
3193
3454
|
line-height: 16px;
|
|
3194
3455
|
}
|
|
3195
3456
|
|
|
3457
|
+
.sm\:tsystem-fs_label {
|
|
3458
|
+
font-size: var(--Tight-fontSizes-label);
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3196
3461
|
.sm\:tsystem-fs_label\.sub {
|
|
3197
3462
|
font-size: var(--Tight-fontSizes-label-sub);
|
|
3198
3463
|
}
|
|
@@ -3213,14 +3478,22 @@
|
|
|
3213
3478
|
font-size: var(--Tight-fontSizes-body);
|
|
3214
3479
|
}
|
|
3215
3480
|
|
|
3216
|
-
.sm\:tsystem-fs_label\.strong {
|
|
3217
|
-
font-size: var(--Tight-fontSizes-label-strong);
|
|
3218
|
-
}
|
|
3219
|
-
|
|
3220
3481
|
.sm\:tsystem-fs_label\.strongSub {
|
|
3221
3482
|
font-size: var(--Tight-fontSizes-label-strongSub);
|
|
3222
3483
|
}
|
|
3223
3484
|
|
|
3485
|
+
.sm\:tsystem-d_none {
|
|
3486
|
+
display: none;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.sm\:tsystem-grid-tc_300px_auto_175px {
|
|
3490
|
+
grid-template-columns: 300px auto 175px;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
.sm\:tsystem-d_block {
|
|
3494
|
+
display: block;
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3224
3497
|
.sm\:tsystem-grid-tc_300px_auto_300px {
|
|
3225
3498
|
grid-template-columns: 300px auto 300px;
|
|
3226
3499
|
}
|
|
@@ -3245,6 +3518,30 @@
|
|
|
3245
3518
|
justify-content: flex-end;
|
|
3246
3519
|
}
|
|
3247
3520
|
|
|
3521
|
+
.sm\:tsystem-bx-sh_none {
|
|
3522
|
+
box-shadow: none;
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
.sm\:tsystem-flex-sh_0 {
|
|
3526
|
+
flex-shrink: 0;
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
.sm\:tsystem-ta_start {
|
|
3530
|
+
text-align: start;
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3533
|
+
.sm\:tsystem-min-w_600px {
|
|
3534
|
+
min-width: 600px;
|
|
3535
|
+
}
|
|
3536
|
+
|
|
3537
|
+
.sm\:tsystem-max-w_900px {
|
|
3538
|
+
max-width: 900px;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
.sm\:tsystem-h_auto {
|
|
3542
|
+
height: auto;
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3248
3545
|
.sm\:tsystem-left_auto {
|
|
3249
3546
|
left: auto;
|
|
3250
3547
|
}
|
|
@@ -3313,12 +3610,32 @@
|
|
|
3313
3610
|
max-width: 300px;
|
|
3314
3611
|
}
|
|
3315
3612
|
|
|
3316
|
-
.sm\:tsystem-
|
|
3317
|
-
|
|
3613
|
+
.sm\:tsystem-h_39px {
|
|
3614
|
+
height: 39px;
|
|
3318
3615
|
}
|
|
3319
3616
|
|
|
3320
|
-
.sm\:tsystem-
|
|
3321
|
-
|
|
3617
|
+
.sm\:tsystem-min-h_35px {
|
|
3618
|
+
min-height: 35px;
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
.sm\:tsystem-h_fit-content {
|
|
3622
|
+
height: fit-content;
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
.sm\:tsystem-min-w_360px {
|
|
3626
|
+
min-width: 360px;
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
.sm\:tsystem-max-w_392px {
|
|
3630
|
+
max-width: 392px;
|
|
3631
|
+
}
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
@media screen and (min-width: 40rem) {
|
|
3635
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3636
|
+
.supportHover\:sm\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3637
|
+
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3638
|
+
}
|
|
3322
3639
|
}
|
|
3323
3640
|
}
|
|
3324
3641
|
|
|
@@ -3330,6 +3647,30 @@
|
|
|
3330
3647
|
.md\:tsystem-flex_0_0_342px {
|
|
3331
3648
|
flex: 0 0 342px;
|
|
3332
3649
|
}
|
|
3650
|
+
|
|
3651
|
+
.md\:tsystem-d_grid {
|
|
3652
|
+
display: grid;
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
.md\:tsystem-jc_center {
|
|
3656
|
+
justify-content: center;
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
.md\:tsystem-jc_flex-end {
|
|
3660
|
+
justify-content: flex-end;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
.md\:tsystem-flex-d_column {
|
|
3664
|
+
flex-direction: column;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.md\:tsystem-ai_start {
|
|
3668
|
+
align-items: start;
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
.md\:tsystem-min-w_800px {
|
|
3672
|
+
min-width: 800px;
|
|
3673
|
+
}
|
|
3333
3674
|
}
|
|
3334
3675
|
|
|
3335
3676
|
@media (hover: hover) and (pointer: fine) {
|
|
@@ -3681,8 +4022,8 @@
|
|
|
3681
4022
|
}
|
|
3682
4023
|
|
|
3683
4024
|
@media (hover: hover) and (pointer: fine) {
|
|
3684
|
-
.supportHover\:tsystem-bg-c_surface\.intent\.action
|
|
3685
|
-
background-color: var(--Tight-colors-surface-intent-action
|
|
4025
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action:hover {
|
|
4026
|
+
background-color: var(--Tight-colors-surface-intent-action);
|
|
3686
4027
|
}
|
|
3687
4028
|
}
|
|
3688
4029
|
|
|
@@ -3690,6 +4031,12 @@
|
|
|
3690
4031
|
.supportHover\:tsystem-bg-c_surface\.intent\.action\.discrete\.hover:hover {
|
|
3691
4032
|
background-color: var(--Tight-colors-surface-intent-action-discrete-hover);
|
|
3692
4033
|
}
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
@media (hover: hover) and (pointer: fine) {
|
|
4037
|
+
.supportHover\:tsystem-bg-c_surface\.intent\.action\.hover:hover {
|
|
4038
|
+
background-color: var(--Tight-colors-surface-intent-action-hover);
|
|
4039
|
+
}
|
|
3693
4040
|
}
|
|
3694
4041
|
|
|
3695
4042
|
@media (hover: hover) and (pointer: fine) {
|