@cloudtower/eagle 481.0.2 → 490.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core/Duration/index.js +78 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.hooks.js +66 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.js +103 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.style.js +13 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.widget.js +379 -0
- package/dist/cjs/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/cjs/core/TableForm/AddRowButton.js +2 -1
- package/dist/cjs/core/TableForm/index.js +1 -0
- package/dist/cjs/core/index.js +15 -12
- package/dist/cjs/coreX/Copy/CopyButton.js +40 -0
- package/dist/cjs/coreX/Copy/CopyTooltip.js +66 -0
- package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
- package/dist/cjs/hooks/useFormatDuration.js +35 -0
- package/dist/cjs/index.js +253 -245
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/utils/formatDuration.js +67 -0
- package/dist/components.css +1899 -1722
- package/dist/esm/core/Duration/index.js +72 -0
- package/dist/esm/core/LocalUpload/LocalUpload.hooks.js +63 -0
- package/dist/esm/core/LocalUpload/LocalUpload.js +97 -0
- package/dist/esm/core/LocalUpload/LocalUpload.style.js +10 -0
- package/dist/esm/core/LocalUpload/LocalUpload.widget.js +365 -0
- package/dist/esm/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/esm/core/TableForm/AddRowButton.js +2 -1
- package/dist/esm/core/TableForm/index.js +1 -0
- package/dist/esm/core/index.js +4 -2
- package/dist/esm/coreX/Copy/CopyButton.js +34 -0
- package/dist/esm/coreX/Copy/CopyTooltip.js +59 -0
- package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
- package/dist/esm/hooks/useFormatDuration.js +33 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/utils/formatDuration.js +65 -0
- package/dist/linaria.merged.scss +2144 -1955
- package/dist/src/core/Duration/duration.type.d.ts +42 -0
- package/dist/src/core/Duration/index.d.ts +4 -0
- package/dist/src/core/LocalUpload/LocalUpload.d.ts +15 -0
- package/dist/src/core/LocalUpload/LocalUpload.hooks.d.ts +32 -0
- package/dist/src/core/LocalUpload/LocalUpload.style.d.ts +3 -0
- package/dist/src/core/LocalUpload/LocalUpload.type.d.ts +175 -0
- package/dist/src/core/LocalUpload/LocalUpload.widget.d.ts +23 -0
- package/dist/src/core/LocalUpload/index.d.ts +2 -0
- package/dist/src/core/TableForm/types.d.ts +1 -0
- package/dist/src/core/index.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyButton.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyButton.type.d.ts +8 -0
- package/dist/src/coreX/Copy/CopyTooltip.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyTooltip.typs.d.ts +16 -0
- package/dist/src/coreX/Copy/index.d.ts +2 -0
- package/dist/src/coreX/Dialogs/RejectDialog/RejectDialog.type.d.ts +5 -1
- package/dist/src/coreX/index.d.ts +3 -0
- package/dist/src/hooks/__tests__/useFormatDuration.test.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +1 -0
- package/dist/src/hooks/useFormatDuration.d.ts +31 -0
- package/dist/src/utils/__test__/formatDuration.spec.d.ts +1 -0
- package/dist/src/utils/formatDuration.d.ts +28 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/stories/docs/core/Duration.stories.d.ts +88 -0
- package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
- package/dist/stories/docs/coreX/Copy/CopyButton.stories.d.ts +66 -0
- package/dist/stories/docs/coreX/Copy/CopyTooltip.stories.d.ts +66 -0
- package/dist/stories/docs/coreX/Dialogs/RejectDialog.stories.d.ts +3 -1
- package/dist/style.css +1899 -1722
- package/package.json +6 -4
package/dist/linaria.merged.scss
CHANGED
|
@@ -51,6 +51,68 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
|
|
54
|
+
.E_berrcjl {
|
|
55
|
+
color: $text-terdiary-light;
|
|
56
|
+
margin-bottom: 4px;
|
|
57
|
+
|
|
58
|
+
.breadcrumb-link {
|
|
59
|
+
color: $text-terdiary-light;
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
transition: color 160ms ease;
|
|
62
|
+
|
|
63
|
+
&:hover {
|
|
64
|
+
color: $blue-60;
|
|
65
|
+
}
|
|
66
|
+
&:active {
|
|
67
|
+
color: $blue-80;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
.E_c1uzzomf {
|
|
74
|
+
margin-bottom: 16px;
|
|
75
|
+
|
|
76
|
+
.card-title {
|
|
77
|
+
font-size: 16px;
|
|
78
|
+
color: $text-secondary-light;
|
|
79
|
+
font-weight: 700;
|
|
80
|
+
line-height: 32px;
|
|
81
|
+
}
|
|
82
|
+
.card-body {
|
|
83
|
+
padding: 24px;
|
|
84
|
+
border-radius: 8px;
|
|
85
|
+
background: $fills-light-white;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.empty {
|
|
89
|
+
font-weight: 700;
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
line-height: 22px;
|
|
92
|
+
color: $text-light-tertiary;
|
|
93
|
+
text-align: center;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
.E_d133fzv0 {
|
|
99
|
+
.ant-dropdown-menu-item-group {
|
|
100
|
+
.ant-dropdown-menu-item-group-title {
|
|
101
|
+
padding: 4px 8px 0 8px;
|
|
102
|
+
color: $text-light-secondary;
|
|
103
|
+
font-size: 12px;
|
|
104
|
+
}
|
|
105
|
+
.ant-dropdown-menu-item-group-list {
|
|
106
|
+
padding-bottom: 6px;
|
|
107
|
+
}
|
|
108
|
+
&:not(:first-child) {
|
|
109
|
+
padding-top: 4px;
|
|
110
|
+
border-top: 1px solid $strokes-light-trans-2;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
54
116
|
.E_b1nip9bk {
|
|
55
117
|
padding: 4px 11px;
|
|
56
118
|
}
|
|
@@ -92,25 +154,6 @@
|
|
|
92
154
|
}
|
|
93
155
|
|
|
94
156
|
|
|
95
|
-
.E_berrcjl {
|
|
96
|
-
color: $text-terdiary-light;
|
|
97
|
-
margin-bottom: 4px;
|
|
98
|
-
|
|
99
|
-
.breadcrumb-link {
|
|
100
|
-
color: $text-terdiary-light;
|
|
101
|
-
cursor: pointer;
|
|
102
|
-
transition: color 160ms ease;
|
|
103
|
-
|
|
104
|
-
&:hover {
|
|
105
|
-
color: $blue-60;
|
|
106
|
-
}
|
|
107
|
-
&:active {
|
|
108
|
-
color: $blue-80;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
|
|
114
157
|
.E_b1wx3t3t {
|
|
115
158
|
&.ant-btn-icon-only {
|
|
116
159
|
justify-content: center;
|
|
@@ -469,57 +512,6 @@
|
|
|
469
512
|
}
|
|
470
513
|
|
|
471
514
|
|
|
472
|
-
.E_c1uzzomf {
|
|
473
|
-
margin-bottom: 16px;
|
|
474
|
-
|
|
475
|
-
.card-title {
|
|
476
|
-
font-size: 16px;
|
|
477
|
-
color: $text-secondary-light;
|
|
478
|
-
font-weight: 700;
|
|
479
|
-
line-height: 32px;
|
|
480
|
-
}
|
|
481
|
-
.card-body {
|
|
482
|
-
padding: 24px;
|
|
483
|
-
border-radius: 8px;
|
|
484
|
-
background: $fills-light-white;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.empty {
|
|
488
|
-
font-weight: 700;
|
|
489
|
-
font-size: 14px;
|
|
490
|
-
line-height: 22px;
|
|
491
|
-
color: $text-light-tertiary;
|
|
492
|
-
text-align: center;
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
.E_c1yyuluq {
|
|
498
|
-
border-radius: 8px;
|
|
499
|
-
.ant-card-body {
|
|
500
|
-
padding: 20px 24px 24px 24px;
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
.E_d133fzv0 {
|
|
506
|
-
.ant-dropdown-menu-item-group {
|
|
507
|
-
.ant-dropdown-menu-item-group-title {
|
|
508
|
-
padding: 4px 8px 0 8px;
|
|
509
|
-
color: $text-light-secondary;
|
|
510
|
-
font-size: 12px;
|
|
511
|
-
}
|
|
512
|
-
.ant-dropdown-menu-item-group-list {
|
|
513
|
-
padding-bottom: 6px;
|
|
514
|
-
}
|
|
515
|
-
&:not(:first-child) {
|
|
516
|
-
padding-top: 4px;
|
|
517
|
-
border-top: 1px solid $strokes-light-trans-2;
|
|
518
|
-
}
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
|
|
523
515
|
.E_ccrbeuz {
|
|
524
516
|
.ant-collapse-item {
|
|
525
517
|
border: 0px;
|
|
@@ -552,64 +544,10 @@
|
|
|
552
544
|
}
|
|
553
545
|
|
|
554
546
|
|
|
555
|
-
.
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
.E_itxley7 {
|
|
563
|
-
&.ant-input-group.ant-input-group-compact {
|
|
564
|
-
display: flex;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
&.ant-input-group.ant-input-group-compact > *:first-child,
|
|
568
|
-
&.ant-input-group.ant-input-group-compact
|
|
569
|
-
> .ant-select:first-child
|
|
570
|
-
> .ant-select-selector,
|
|
571
|
-
&.ant-input-group.ant-input-group-compact
|
|
572
|
-
> .ant-calendar-picker:first-child
|
|
573
|
-
.ant-input,
|
|
574
|
-
&.ant-input-group.ant-input-group-compact
|
|
575
|
-
> .ant-select-auto-complete:first-child
|
|
576
|
-
.ant-input,
|
|
577
|
-
&.ant-input-group.ant-input-group-compact
|
|
578
|
-
> .ant-cascader-picker:first-child
|
|
579
|
-
.ant-input,
|
|
580
|
-
&.ant-input-group.ant-input-group-compact
|
|
581
|
-
> .ant-mention-wrapper:first-child
|
|
582
|
-
.ant-mention-editor,
|
|
583
|
-
&.ant-input-group.ant-input-group-compact
|
|
584
|
-
> .ant-time-picker:first-child
|
|
585
|
-
.ant-time-picker-input {
|
|
586
|
-
border-bottom-left-radius: 5px;
|
|
587
|
-
border-top-left-radius: 5px;
|
|
588
|
-
}
|
|
589
|
-
&.ant-input-group.ant-input-group-compact > *:last-child,
|
|
590
|
-
&.ant-input-group.ant-input-group-compact
|
|
591
|
-
> .ant-select:last-child
|
|
592
|
-
> .ant-select-selector,
|
|
593
|
-
&.ant-input-group.ant-input-group-compact
|
|
594
|
-
> .ant-calendar-picker:last-child
|
|
595
|
-
.ant-input,
|
|
596
|
-
&.ant-input-group.ant-input-group-compact
|
|
597
|
-
> .ant-select-auto-complete:last-child
|
|
598
|
-
.ant-input,
|
|
599
|
-
&.ant-input-group.ant-input-group-compact
|
|
600
|
-
> .ant-cascader-picker:last-child
|
|
601
|
-
.ant-input,
|
|
602
|
-
&.ant-input-group.ant-input-group-compact
|
|
603
|
-
> .ant-cascader-picker-focused:last-child
|
|
604
|
-
.ant-input,
|
|
605
|
-
&.ant-input-group.ant-input-group-compact
|
|
606
|
-
> .ant-mention-wrapper:last-child
|
|
607
|
-
.ant-mention-editor,
|
|
608
|
-
&.ant-input-group.ant-input-group-compact
|
|
609
|
-
> .ant-time-picker:last-child
|
|
610
|
-
.ant-time-picker-input {
|
|
611
|
-
border-bottom-right-radius: 5px;
|
|
612
|
-
border-top-right-radius: 5px;
|
|
547
|
+
.E_c1yyuluq {
|
|
548
|
+
border-radius: 8px;
|
|
549
|
+
.ant-card-body {
|
|
550
|
+
padding: 20px 24px 24px 24px;
|
|
613
551
|
}
|
|
614
552
|
}
|
|
615
553
|
|
|
@@ -705,108 +643,64 @@
|
|
|
705
643
|
}
|
|
706
644
|
|
|
707
645
|
|
|
708
|
-
.
|
|
709
|
-
|
|
710
|
-
justify-content: space-between;
|
|
711
|
-
align-items: center;
|
|
712
|
-
padding: 10px 0;
|
|
713
|
-
color: $text-light-secondary;
|
|
714
|
-
font-size: 12px;
|
|
715
|
-
line-height: 24px;
|
|
716
|
-
|
|
717
|
-
.pagination-left {
|
|
718
|
-
padding: 2px 8px;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.dropdown-trigger {
|
|
722
|
-
display: flex;
|
|
723
|
-
align-items: center;
|
|
724
|
-
border-radius: 6px;
|
|
725
|
-
cursor: pointer;
|
|
726
|
-
transition: all 0.3s ease;
|
|
727
|
-
|
|
728
|
-
&:hover {
|
|
729
|
-
background: $fills-interaction-light-general-hover;
|
|
730
|
-
color: $text-light-general;
|
|
731
|
-
}
|
|
732
|
-
.icon-inner {
|
|
733
|
-
margin-left: 4px;
|
|
734
|
-
}
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.pagination-right {
|
|
646
|
+
.E_itxley7 {
|
|
647
|
+
&.ant-input-group.ant-input-group-compact {
|
|
738
648
|
display: flex;
|
|
739
|
-
align-items: center;
|
|
740
|
-
color: $blue-60;
|
|
741
|
-
font-weight: bold;
|
|
742
|
-
.icon-inner {
|
|
743
|
-
margin-left: 4px;
|
|
744
|
-
}
|
|
745
|
-
.prev-btn,
|
|
746
|
-
.next-btn {
|
|
747
|
-
padding: 0 8px;
|
|
748
|
-
> span {
|
|
749
|
-
color: $text-light-general;
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.next-btn {
|
|
754
|
-
.icon-inner {
|
|
755
|
-
transform: rotate(180deg);
|
|
756
|
-
}
|
|
757
|
-
}
|
|
758
649
|
}
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.E_d12rtyeg {
|
|
762
|
-
&.ant-dropdown .ant-dropdown-menu {
|
|
763
|
-
max-height: calc(100vh - 128px);
|
|
764
|
-
overflow-y: auto;
|
|
765
650
|
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
.
|
|
776
|
-
.ant-input-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
.ant-input-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
.
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
margin-right: 8px;
|
|
788
|
-
padding-right: 8px;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.E_i11o6xqj {
|
|
792
|
-
display: flex;
|
|
793
|
-
gap: 4px;
|
|
794
|
-
|
|
795
|
-
.icon-wrapper {
|
|
796
|
-
cursor: pointer;
|
|
651
|
+
&.ant-input-group.ant-input-group-compact > *:first-child,
|
|
652
|
+
&.ant-input-group.ant-input-group-compact
|
|
653
|
+
> .ant-select:first-child
|
|
654
|
+
> .ant-select-selector,
|
|
655
|
+
&.ant-input-group.ant-input-group-compact
|
|
656
|
+
> .ant-calendar-picker:first-child
|
|
657
|
+
.ant-input,
|
|
658
|
+
&.ant-input-group.ant-input-group-compact
|
|
659
|
+
> .ant-select-auto-complete:first-child
|
|
660
|
+
.ant-input,
|
|
661
|
+
&.ant-input-group.ant-input-group-compact
|
|
662
|
+
> .ant-cascader-picker:first-child
|
|
663
|
+
.ant-input,
|
|
664
|
+
&.ant-input-group.ant-input-group-compact
|
|
665
|
+
> .ant-mention-wrapper:first-child
|
|
666
|
+
.ant-mention-editor,
|
|
667
|
+
&.ant-input-group.ant-input-group-compact
|
|
668
|
+
> .ant-time-picker:first-child
|
|
669
|
+
.ant-time-picker-input {
|
|
670
|
+
border-bottom-left-radius: 5px;
|
|
671
|
+
border-top-left-radius: 5px;
|
|
797
672
|
}
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
.
|
|
801
|
-
|
|
802
|
-
|
|
673
|
+
&.ant-input-group.ant-input-group-compact > *:last-child,
|
|
674
|
+
&.ant-input-group.ant-input-group-compact
|
|
675
|
+
> .ant-select:last-child
|
|
676
|
+
> .ant-select-selector,
|
|
677
|
+
&.ant-input-group.ant-input-group-compact
|
|
678
|
+
> .ant-calendar-picker:last-child
|
|
679
|
+
.ant-input,
|
|
680
|
+
&.ant-input-group.ant-input-group-compact
|
|
681
|
+
> .ant-select-auto-complete:last-child
|
|
682
|
+
.ant-input,
|
|
683
|
+
&.ant-input-group.ant-input-group-compact
|
|
684
|
+
> .ant-cascader-picker:last-child
|
|
685
|
+
.ant-input,
|
|
686
|
+
&.ant-input-group.ant-input-group-compact
|
|
687
|
+
> .ant-cascader-picker-focused:last-child
|
|
688
|
+
.ant-input,
|
|
689
|
+
&.ant-input-group.ant-input-group-compact
|
|
690
|
+
> .ant-mention-wrapper:last-child
|
|
691
|
+
.ant-mention-editor,
|
|
692
|
+
&.ant-input-group.ant-input-group-compact
|
|
693
|
+
> .ant-time-picker:last-child
|
|
694
|
+
.ant-time-picker-input {
|
|
695
|
+
border-bottom-right-radius: 5px;
|
|
696
|
+
border-top-right-radius: 5px;
|
|
803
697
|
}
|
|
804
698
|
}
|
|
805
699
|
|
|
806
700
|
|
|
807
|
-
.
|
|
808
|
-
.
|
|
809
|
-
|
|
701
|
+
.E_sx1bpnu {
|
|
702
|
+
.ant-input-sm {
|
|
703
|
+
line-height: 18px;
|
|
810
704
|
}
|
|
811
705
|
}
|
|
812
706
|
|
|
@@ -855,166 +749,6 @@
|
|
|
855
749
|
}
|
|
856
750
|
|
|
857
751
|
|
|
858
|
-
.E_s1dni7lo {
|
|
859
|
-
width: 430px !important;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.E_d1wwmmm5 {
|
|
863
|
-
.ant-select-item-group {
|
|
864
|
-
padding: 8px 16px;
|
|
865
|
-
line-height: 18px;
|
|
866
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
867
|
-
height: 34px;
|
|
868
|
-
min-height: 34px;
|
|
869
|
-
box-sizing: border-box;
|
|
870
|
-
margin-top: 8px;
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
.E_o1ugr09p {
|
|
875
|
-
display: flex;
|
|
876
|
-
flex-direction: column;
|
|
877
|
-
margin: 1px 8px;
|
|
878
|
-
padding: 8px;
|
|
879
|
-
border-radius: 4px;
|
|
880
|
-
|
|
881
|
-
.selected-icon {
|
|
882
|
-
display: none;
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
&.ant-select-item-option-grouped {
|
|
886
|
-
padding-left: 8px;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
&.ant-select-item-option-selected {
|
|
890
|
-
background-color: white;
|
|
891
|
-
.timezone-title {
|
|
892
|
-
color: #0080ff;
|
|
893
|
-
}
|
|
894
|
-
.selected-icon {
|
|
895
|
-
display: block;
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
&.ant-select-item-option-active {
|
|
900
|
-
background: rgba(0, 136, 255, 0.16);
|
|
901
|
-
.timezone-title {
|
|
902
|
-
color: #0080ff;
|
|
903
|
-
}
|
|
904
|
-
.timezone-tag {
|
|
905
|
-
background: rgba(0, 136, 255, 0.1);
|
|
906
|
-
color: #0080ff;
|
|
907
|
-
}
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
.E_o1ifxsq4 {
|
|
912
|
-
display: flex;
|
|
913
|
-
justify-content: space-between;
|
|
914
|
-
height: 20px;
|
|
915
|
-
line-height: 20px;
|
|
916
|
-
|
|
917
|
-
.timezone-title {
|
|
918
|
-
color: #2d3a56;
|
|
919
|
-
overflow: hidden;
|
|
920
|
-
text-overflow: ellipsis;
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
.E_o1zue7 {
|
|
925
|
-
display: flex;
|
|
926
|
-
justify-content: space-between;
|
|
927
|
-
color: $text-light-secondary;
|
|
928
|
-
height: 18px;
|
|
929
|
-
line-height: 18px;
|
|
930
|
-
margin-top: 2px;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.E_tyfmlxg {
|
|
934
|
-
border: none;
|
|
935
|
-
margin-right: 0;
|
|
936
|
-
background: rgba(225, 230, 241, 0.6);
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.E_o18uybox {
|
|
940
|
-
pointer-events: none;
|
|
941
|
-
height: 32px;
|
|
942
|
-
width: 100%;
|
|
943
|
-
opacity: 0;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
.E_ivqqkzv {
|
|
948
|
-
height: 24px;
|
|
949
|
-
width: 56px !important;
|
|
950
|
-
margin-right: 4px;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.E_c1wk4q29 {
|
|
954
|
-
color: $text-secondary-light;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
.E_s1dizucg {
|
|
959
|
-
&.ant-switch {
|
|
960
|
-
min-width: 40px;
|
|
961
|
-
height: 24px;
|
|
962
|
-
background: $fills-trans-quinary-light;
|
|
963
|
-
overflow: hidden;
|
|
964
|
-
&:focus {
|
|
965
|
-
box-shadow: 0 0 0 2px $strokes-light-trans-1;
|
|
966
|
-
}
|
|
967
|
-
}
|
|
968
|
-
&.ant-switch-small {
|
|
969
|
-
min-width: 26px;
|
|
970
|
-
height: 16px;
|
|
971
|
-
}
|
|
972
|
-
&.ant-switch-large {
|
|
973
|
-
min-width: 52px;
|
|
974
|
-
height: 32px;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
&.ant-switch .ant-switch-handle {
|
|
978
|
-
height: 20px;
|
|
979
|
-
width: 20px;
|
|
980
|
-
&::before {
|
|
981
|
-
border-radius: 10px;
|
|
982
|
-
transition-delay: 120ms;
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
&.ant-switch-small .ant-switch-handle {
|
|
986
|
-
height: 14px;
|
|
987
|
-
width: 14px;
|
|
988
|
-
top: 1px;
|
|
989
|
-
left: 1px;
|
|
990
|
-
}
|
|
991
|
-
&.ant-switch-large .ant-switch-handle {
|
|
992
|
-
height: 28px;
|
|
993
|
-
width: 28px;
|
|
994
|
-
&::before {
|
|
995
|
-
border-radius: 14px;
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
&.ant-switch-checked {
|
|
1000
|
-
background-color: $green-60;
|
|
1001
|
-
}
|
|
1002
|
-
&.ant-switch-checked .ant-switch-handle {
|
|
1003
|
-
left: calc(100% - 20px - 2px);
|
|
1004
|
-
}
|
|
1005
|
-
&.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
1006
|
-
left: calc(100% - 14px - 1px);
|
|
1007
|
-
}
|
|
1008
|
-
&.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
1009
|
-
left: calc(100% - 28px - 2px);
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
.E_c1up6e3y {
|
|
1014
|
-
margin-left: 5px;
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
752
|
.E_rapgekc {
|
|
1019
753
|
&.ant-radio-wrapper {
|
|
1020
754
|
display: inline-flex;
|
|
@@ -1196,299 +930,391 @@
|
|
|
1196
930
|
}
|
|
1197
931
|
|
|
1198
932
|
|
|
1199
|
-
.
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
933
|
+
.E_phljevk {
|
|
934
|
+
display: flex;
|
|
935
|
+
justify-content: space-between;
|
|
936
|
+
align-items: center;
|
|
937
|
+
padding: 10px 0;
|
|
938
|
+
color: $text-light-secondary;
|
|
939
|
+
font-size: 12px;
|
|
940
|
+
line-height: 24px;
|
|
1203
941
|
|
|
1204
|
-
.
|
|
942
|
+
.pagination-left {
|
|
1205
943
|
padding: 2px 8px;
|
|
1206
|
-
border-radius: 3px;
|
|
1207
944
|
}
|
|
1208
945
|
|
|
1209
|
-
.
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
946
|
+
.dropdown-trigger {
|
|
947
|
+
display: flex;
|
|
948
|
+
align-items: center;
|
|
949
|
+
border-radius: 6px;
|
|
950
|
+
cursor: pointer;
|
|
951
|
+
transition: all 0.3s ease;
|
|
1213
952
|
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
953
|
+
&:hover {
|
|
954
|
+
background: $fills-interaction-light-general-hover;
|
|
955
|
+
color: $text-light-general;
|
|
956
|
+
}
|
|
957
|
+
.icon-inner {
|
|
958
|
+
margin-left: 4px;
|
|
959
|
+
}
|
|
1217
960
|
}
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
display: inline-flex;
|
|
961
|
+
|
|
962
|
+
.pagination-right {
|
|
963
|
+
display: flex;
|
|
1222
964
|
align-items: center;
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
height: 16px;
|
|
1227
|
-
color: inherit;
|
|
965
|
+
color: $blue-60;
|
|
966
|
+
font-weight: bold;
|
|
967
|
+
.icon-inner {
|
|
1228
968
|
margin-left: 4px;
|
|
1229
|
-
opacity: 0.6;
|
|
1230
|
-
display: inline-flex;
|
|
1231
|
-
&:hover {
|
|
1232
|
-
opacity: 1;
|
|
1233
|
-
}
|
|
1234
|
-
}
|
|
1235
|
-
&.ant-tag-blue {
|
|
1236
|
-
color: $fills-light-general-general;
|
|
1237
|
-
background-color: $fills-light-general-general-light;
|
|
1238
|
-
}
|
|
1239
|
-
&.ant-tag-red {
|
|
1240
|
-
color: $fills-light-serious-serious;
|
|
1241
|
-
background-color: $fills-light-serious-serious-light;
|
|
1242
|
-
}
|
|
1243
|
-
&.ant-tag-yellow {
|
|
1244
|
-
color: $fills-light-notice-notice-dark;
|
|
1245
|
-
background-color: $fills-light-notice-notice-light;
|
|
1246
|
-
}
|
|
1247
|
-
&.ant-tag-green {
|
|
1248
|
-
color: $fills-light-positive-positive-dark;
|
|
1249
|
-
background-color: $fills-light-positive-positive-light;
|
|
1250
|
-
}
|
|
1251
|
-
&.ant-tag-gray {
|
|
1252
|
-
color: $text-light-super;
|
|
1253
|
-
background-color: $fills-element-light-container-general;
|
|
1254
969
|
}
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
970
|
+
.prev-btn,
|
|
971
|
+
.next-btn {
|
|
972
|
+
padding: 0 8px;
|
|
973
|
+
> span {
|
|
974
|
+
color: $text-light-general;
|
|
975
|
+
}
|
|
1258
976
|
}
|
|
1259
977
|
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
background-color: $fills-light-serious-serious;
|
|
1264
|
-
}
|
|
1265
|
-
&.ant-tag-yellow {
|
|
1266
|
-
background-color: $fills-light-notice-notice;
|
|
1267
|
-
}
|
|
1268
|
-
&.ant-tag-green {
|
|
1269
|
-
background-color: $fills-light-positive-positive;
|
|
1270
|
-
}
|
|
1271
|
-
&.ant-tag-blue {
|
|
1272
|
-
background-color: $fills-light-general-general;
|
|
1273
|
-
}
|
|
1274
|
-
&.ant-tag-gray {
|
|
1275
|
-
background-color: $gray-70;
|
|
1276
|
-
}
|
|
1277
|
-
&.ant-tag-purple {
|
|
1278
|
-
background-color: $fill-purple-base;
|
|
978
|
+
.next-btn {
|
|
979
|
+
.icon-inner {
|
|
980
|
+
transform: rotate(180deg);
|
|
1279
981
|
}
|
|
1280
982
|
}
|
|
1281
983
|
}
|
|
1282
984
|
}
|
|
1283
985
|
|
|
986
|
+
.E_d12rtyeg {
|
|
987
|
+
&.ant-dropdown .ant-dropdown-menu {
|
|
988
|
+
max-height: calc(100vh - 128px);
|
|
989
|
+
overflow-y: auto;
|
|
1284
990
|
|
|
1285
|
-
.
|
|
1286
|
-
|
|
991
|
+
.ant-dropdown-menu-item {
|
|
992
|
+
padding: 4px 20px;
|
|
993
|
+
font-size: 12px;
|
|
994
|
+
line-height: 18px;
|
|
995
|
+
}
|
|
996
|
+
}
|
|
1287
997
|
}
|
|
1288
998
|
|
|
1289
999
|
|
|
1290
|
-
.
|
|
1291
|
-
.ant-
|
|
1292
|
-
|
|
1000
|
+
.E_i11gg7mj {
|
|
1001
|
+
.ant-input-prefix {
|
|
1002
|
+
margin-right: 8px;
|
|
1293
1003
|
}
|
|
1294
|
-
.ant-
|
|
1295
|
-
|
|
1296
|
-
border-radius: 4px;
|
|
1297
|
-
&:has(.eagle-ellipsis-content) {
|
|
1298
|
-
visibility: hidden;
|
|
1299
|
-
}
|
|
1004
|
+
.ant-input-suffix {
|
|
1005
|
+
margin-left: 8px;
|
|
1300
1006
|
}
|
|
1301
1007
|
}
|
|
1302
1008
|
|
|
1009
|
+
.E_cc368xp {
|
|
1010
|
+
color: $gray-120;
|
|
1011
|
+
border-right: 1px solid $gray-a60-5;
|
|
1012
|
+
margin-right: 8px;
|
|
1013
|
+
padding-right: 8px;
|
|
1014
|
+
}
|
|
1303
1015
|
|
|
1304
|
-
.
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
flex-flow: nowrap !important;
|
|
1308
|
-
line-break: auto;
|
|
1016
|
+
.E_i11o6xqj {
|
|
1017
|
+
display: flex;
|
|
1018
|
+
gap: 4px;
|
|
1309
1019
|
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1020
|
+
.icon-wrapper {
|
|
1021
|
+
cursor: pointer;
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1313
1024
|
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1025
|
+
.E_d19ruhdj {
|
|
1026
|
+
&.icon-wrapper {
|
|
1027
|
+
cursor: not-allowed;
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
.E_ivqqkzv {
|
|
1033
|
+
height: 24px;
|
|
1034
|
+
width: 56px !important;
|
|
1035
|
+
margin-right: 4px;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.E_c1wk4q29 {
|
|
1039
|
+
color: $text-secondary-light;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
.E_s1dizucg {
|
|
1044
|
+
&.ant-switch {
|
|
1045
|
+
min-width: 40px;
|
|
1046
|
+
height: 24px;
|
|
1047
|
+
background: $fills-trans-quinary-light;
|
|
1048
|
+
overflow: hidden;
|
|
1049
|
+
&:focus {
|
|
1050
|
+
box-shadow: 0 0 0 2px $strokes-light-trans-1;
|
|
1320
1051
|
}
|
|
1321
1052
|
}
|
|
1053
|
+
&.ant-switch-small {
|
|
1054
|
+
min-width: 26px;
|
|
1055
|
+
height: 16px;
|
|
1056
|
+
}
|
|
1057
|
+
&.ant-switch-large {
|
|
1058
|
+
min-width: 52px;
|
|
1059
|
+
height: 32px;
|
|
1060
|
+
}
|
|
1322
1061
|
|
|
1323
|
-
&.ant-
|
|
1324
|
-
|
|
1325
|
-
|
|
1062
|
+
&.ant-switch .ant-switch-handle {
|
|
1063
|
+
height: 20px;
|
|
1064
|
+
width: 20px;
|
|
1065
|
+
&::before {
|
|
1066
|
+
border-radius: 10px;
|
|
1067
|
+
transition-delay: 120ms;
|
|
1326
1068
|
}
|
|
1327
|
-
|
|
1328
|
-
|
|
1069
|
+
}
|
|
1070
|
+
&.ant-switch-small .ant-switch-handle {
|
|
1071
|
+
height: 14px;
|
|
1072
|
+
width: 14px;
|
|
1073
|
+
top: 1px;
|
|
1074
|
+
left: 1px;
|
|
1075
|
+
}
|
|
1076
|
+
&.ant-switch-large .ant-switch-handle {
|
|
1077
|
+
height: 28px;
|
|
1078
|
+
width: 28px;
|
|
1079
|
+
&::before {
|
|
1080
|
+
border-radius: 14px;
|
|
1329
1081
|
}
|
|
1330
1082
|
}
|
|
1331
1083
|
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
font-size: 12px;
|
|
1335
|
-
min-height: 0px;
|
|
1084
|
+
&.ant-switch-checked {
|
|
1085
|
+
background-color: $green-60;
|
|
1336
1086
|
}
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1087
|
+
&.ant-switch-checked .ant-switch-handle {
|
|
1088
|
+
left: calc(100% - 20px - 2px);
|
|
1089
|
+
}
|
|
1090
|
+
&.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
1091
|
+
left: calc(100% - 14px - 1px);
|
|
1092
|
+
}
|
|
1093
|
+
&.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
1094
|
+
left: calc(100% - 28px - 2px);
|
|
1342
1095
|
}
|
|
1343
1096
|
}
|
|
1344
1097
|
|
|
1098
|
+
.E_c1up6e3y {
|
|
1099
|
+
margin-left: 5px;
|
|
1100
|
+
}
|
|
1345
1101
|
|
|
1346
|
-
.E_fzh9mnb {
|
|
1347
|
-
width: 100%;
|
|
1348
|
-
height: 100%;
|
|
1349
|
-
min-height: 124px;
|
|
1350
|
-
display: flex;
|
|
1351
|
-
flex-direction: column;
|
|
1352
|
-
justify-content: center;
|
|
1353
|
-
align-items: center;
|
|
1354
1102
|
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
margin-
|
|
1358
|
-
font-size: 18px;
|
|
1103
|
+
.E_tju3gfj {
|
|
1104
|
+
.date {
|
|
1105
|
+
margin-right: 4px;
|
|
1359
1106
|
}
|
|
1360
1107
|
}
|
|
1361
1108
|
|
|
1362
1109
|
|
|
1363
|
-
.
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
}
|
|
1367
|
-
.ant-input-number-input-wrap {
|
|
1368
|
-
display: inline-flex;
|
|
1369
|
-
line-height: 1.5715;
|
|
1370
|
-
height: 100%;
|
|
1371
|
-
width: 100%;
|
|
1372
|
-
}
|
|
1110
|
+
.E_s1dni7lo {
|
|
1111
|
+
width: 430px !important;
|
|
1112
|
+
}
|
|
1373
1113
|
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1114
|
+
.E_d1wwmmm5 {
|
|
1115
|
+
.ant-select-item-group {
|
|
1116
|
+
padding: 8px 16px;
|
|
1117
|
+
line-height: 18px;
|
|
1118
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1119
|
+
height: 34px;
|
|
1120
|
+
min-height: 34px;
|
|
1121
|
+
box-sizing: border-box;
|
|
1122
|
+
margin-top: 8px;
|
|
1382
1123
|
}
|
|
1124
|
+
}
|
|
1383
1125
|
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
cursor: auto;
|
|
1391
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1392
|
-
}
|
|
1126
|
+
.E_o1ugr09p {
|
|
1127
|
+
display: flex;
|
|
1128
|
+
flex-direction: column;
|
|
1129
|
+
margin: 1px 8px;
|
|
1130
|
+
padding: 8px;
|
|
1131
|
+
border-radius: 4px;
|
|
1393
1132
|
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1133
|
+
.selected-icon {
|
|
1134
|
+
display: none;
|
|
1135
|
+
}
|
|
1397
1136
|
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
z-index: $input-hover-index;
|
|
1137
|
+
&.ant-select-item-option-grouped {
|
|
1138
|
+
padding-left: 8px;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
&.ant-select-item-option-selected {
|
|
1142
|
+
background-color: white;
|
|
1143
|
+
.timezone-title {
|
|
1144
|
+
color: #0080ff;
|
|
1145
|
+
}
|
|
1146
|
+
.selected-icon {
|
|
1147
|
+
display: block;
|
|
1410
1148
|
}
|
|
1411
1149
|
}
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1150
|
+
|
|
1151
|
+
&.ant-select-item-option-active {
|
|
1152
|
+
background: rgba(0, 136, 255, 0.16);
|
|
1153
|
+
.timezone-title {
|
|
1154
|
+
color: #0080ff;
|
|
1155
|
+
}
|
|
1156
|
+
.timezone-tag {
|
|
1157
|
+
background: rgba(0, 136, 255, 0.1);
|
|
1158
|
+
color: #0080ff;
|
|
1419
1159
|
}
|
|
1420
1160
|
}
|
|
1421
1161
|
}
|
|
1422
1162
|
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
}
|
|
1163
|
+
.E_o1ifxsq4 {
|
|
1164
|
+
display: flex;
|
|
1165
|
+
justify-content: space-between;
|
|
1166
|
+
height: 20px;
|
|
1167
|
+
line-height: 20px;
|
|
1429
1168
|
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1169
|
+
.timezone-title {
|
|
1170
|
+
color: #2d3a56;
|
|
1171
|
+
overflow: hidden;
|
|
1172
|
+
text-overflow: ellipsis;
|
|
1173
|
+
}
|
|
1434
1174
|
}
|
|
1435
1175
|
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1176
|
+
.E_o1zue7 {
|
|
1177
|
+
display: flex;
|
|
1178
|
+
justify-content: space-between;
|
|
1179
|
+
color: $text-light-secondary;
|
|
1180
|
+
height: 18px;
|
|
1181
|
+
line-height: 18px;
|
|
1182
|
+
margin-top: 2px;
|
|
1440
1183
|
}
|
|
1184
|
+
|
|
1185
|
+
.E_tyfmlxg {
|
|
1186
|
+
border: none;
|
|
1187
|
+
margin-right: 0;
|
|
1188
|
+
background: rgba(225, 230, 241, 0.6);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.E_o18uybox {
|
|
1192
|
+
pointer-events: none;
|
|
1193
|
+
height: 32px;
|
|
1194
|
+
width: 100%;
|
|
1195
|
+
opacity: 0;
|
|
1441
1196
|
}
|
|
1442
1197
|
|
|
1443
1198
|
|
|
1444
|
-
.
|
|
1445
|
-
|
|
1446
|
-
|
|
1199
|
+
.E_s1sck0th {
|
|
1200
|
+
padding: 0 8px;
|
|
1201
|
+
border-radius: 4px;
|
|
1447
1202
|
}
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
height: inherit;
|
|
1203
|
+
|
|
1204
|
+
.E_m855nr1 {
|
|
1205
|
+
padding: 2px 8px;
|
|
1206
|
+
border-radius: 3px;
|
|
1453
1207
|
}
|
|
1454
1208
|
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
flex: none;
|
|
1459
|
-
align-items: center;
|
|
1460
|
-
margin-left: 4px;
|
|
1209
|
+
.E_l1270xpg {
|
|
1210
|
+
padding: 3px 8px;
|
|
1211
|
+
border-radius: 2px;
|
|
1461
1212
|
}
|
|
1462
1213
|
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1214
|
+
.E_t14rextb {
|
|
1215
|
+
&.ant-tag:hover {
|
|
1216
|
+
opacity: unset;
|
|
1217
|
+
}
|
|
1218
|
+
&.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
1219
|
+
margin: 0;
|
|
1220
|
+
margin-right: 8px;
|
|
1221
|
+
display: inline-flex;
|
|
1467
1222
|
align-items: center;
|
|
1468
|
-
|
|
1469
|
-
|
|
1223
|
+
border: none;
|
|
1224
|
+
& .ant-tag-close-icon {
|
|
1225
|
+
width: 16px;
|
|
1226
|
+
height: 16px;
|
|
1227
|
+
color: inherit;
|
|
1228
|
+
margin-left: 4px;
|
|
1229
|
+
opacity: 0.6;
|
|
1230
|
+
display: inline-flex;
|
|
1231
|
+
&:hover {
|
|
1232
|
+
opacity: 1;
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
&.ant-tag-blue {
|
|
1236
|
+
color: $fills-light-general-general;
|
|
1237
|
+
background-color: $fills-light-general-general-light;
|
|
1238
|
+
}
|
|
1239
|
+
&.ant-tag-red {
|
|
1240
|
+
color: $fills-light-serious-serious;
|
|
1241
|
+
background-color: $fills-light-serious-serious-light;
|
|
1242
|
+
}
|
|
1243
|
+
&.ant-tag-yellow {
|
|
1244
|
+
color: $fills-light-notice-notice-dark;
|
|
1245
|
+
background-color: $fills-light-notice-notice-light;
|
|
1246
|
+
}
|
|
1247
|
+
&.ant-tag-green {
|
|
1248
|
+
color: $fills-light-positive-positive-dark;
|
|
1249
|
+
background-color: $fills-light-positive-positive-light;
|
|
1250
|
+
}
|
|
1251
|
+
&.ant-tag-gray {
|
|
1252
|
+
color: $text-light-super;
|
|
1253
|
+
background-color: $fills-element-light-container-general;
|
|
1254
|
+
}
|
|
1255
|
+
&.ant-tag-purple {
|
|
1256
|
+
color: $text-colorful-purple;
|
|
1257
|
+
background-color: $fill-purple-light;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
&.ui-kit-token-checked {
|
|
1261
|
+
color: $text-light-on-tint;
|
|
1262
|
+
&.ant-tag-red {
|
|
1263
|
+
background-color: $fills-light-serious-serious;
|
|
1264
|
+
}
|
|
1265
|
+
&.ant-tag-yellow {
|
|
1266
|
+
background-color: $fills-light-notice-notice;
|
|
1267
|
+
}
|
|
1268
|
+
&.ant-tag-green {
|
|
1269
|
+
background-color: $fills-light-positive-positive;
|
|
1270
|
+
}
|
|
1271
|
+
&.ant-tag-blue {
|
|
1272
|
+
background-color: $fills-light-general-general;
|
|
1273
|
+
}
|
|
1274
|
+
&.ant-tag-gray {
|
|
1275
|
+
background-color: $gray-70;
|
|
1276
|
+
}
|
|
1277
|
+
&.ant-tag-purple {
|
|
1278
|
+
background-color: $fill-purple-base;
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1470
1281
|
}
|
|
1282
|
+
}
|
|
1471
1283
|
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1284
|
+
|
|
1285
|
+
.E_iq1gosr {
|
|
1286
|
+
display: inline-block;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
.E_t1m2x205 {
|
|
1291
|
+
.ant-tooltip-arrow {
|
|
1292
|
+
display: none;
|
|
1293
|
+
}
|
|
1294
|
+
.ant-tooltip-inner {
|
|
1295
|
+
background: $gray-a80-9;
|
|
1296
|
+
border-radius: 4px;
|
|
1297
|
+
&:has(.eagle-ellipsis-content) {
|
|
1298
|
+
visibility: hidden;
|
|
1299
|
+
}
|
|
1477
1300
|
}
|
|
1478
1301
|
}
|
|
1479
1302
|
|
|
1480
1303
|
|
|
1481
|
-
.
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
border-radius: 4px;
|
|
1486
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1487
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1304
|
+
.E_fzh9mnb {
|
|
1305
|
+
width: 100%;
|
|
1306
|
+
height: 100%;
|
|
1307
|
+
min-height: 124px;
|
|
1488
1308
|
display: flex;
|
|
1309
|
+
flex-direction: column;
|
|
1310
|
+
justify-content: center;
|
|
1489
1311
|
align-items: center;
|
|
1490
|
-
|
|
1491
|
-
|
|
1312
|
+
|
|
1313
|
+
.error-text {
|
|
1314
|
+
color: $text-terdiary-light;
|
|
1315
|
+
margin-bottom: 16px;
|
|
1316
|
+
font-size: 18px;
|
|
1317
|
+
}
|
|
1492
1318
|
}
|
|
1493
1319
|
|
|
1494
1320
|
|
|
@@ -1502,6 +1328,180 @@
|
|
|
1502
1328
|
}
|
|
1503
1329
|
|
|
1504
1330
|
|
|
1331
|
+
.E_i1inqkme {
|
|
1332
|
+
height: 18px;
|
|
1333
|
+
line-height: 18px;
|
|
1334
|
+
padding: 0 4px;
|
|
1335
|
+
border-radius: 4px;
|
|
1336
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1337
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1338
|
+
display: flex;
|
|
1339
|
+
align-items: center;
|
|
1340
|
+
white-space: nowrap;
|
|
1341
|
+
margin-right: 4px;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
.E_f7pxqmh {
|
|
1346
|
+
width: 100%;
|
|
1347
|
+
margin-bottom: 0 !important;
|
|
1348
|
+
flex-flow: nowrap !important;
|
|
1349
|
+
line-break: auto;
|
|
1350
|
+
|
|
1351
|
+
& > .ant-form-item-label {
|
|
1352
|
+
text-align: left !important;
|
|
1353
|
+
padding-bottom: 0 !important;
|
|
1354
|
+
|
|
1355
|
+
& > label {
|
|
1356
|
+
min-height: 32px;
|
|
1357
|
+
height: auto;
|
|
1358
|
+
font-size: 13px;
|
|
1359
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1360
|
+
white-space: normal;
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
&.ant-form-item-has-error {
|
|
1365
|
+
.ant-input {
|
|
1366
|
+
border-color: #ff4d4f !important;
|
|
1367
|
+
}
|
|
1368
|
+
.ant-input-password {
|
|
1369
|
+
border-color: #ff4d4f !important;
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.ant-form-item-explain {
|
|
1374
|
+
margin-top: 4px;
|
|
1375
|
+
font-size: 12px;
|
|
1376
|
+
min-height: 0px;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.ant-form-item-extra {
|
|
1380
|
+
font-size: 12px;
|
|
1381
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1382
|
+
min-height: 0px;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
.E_a1wfy30z {
|
|
1388
|
+
.ant-input-number-handler-wrap {
|
|
1389
|
+
display: var(--a1wfy30z-0);
|
|
1390
|
+
}
|
|
1391
|
+
.ant-input-number-input-wrap {
|
|
1392
|
+
padding: 4px 11px;
|
|
1393
|
+
display: inline-flex;
|
|
1394
|
+
line-height: 1.5715;
|
|
1395
|
+
height: inherit;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.ant-input-number-input-wrap::after {
|
|
1399
|
+
content: var(--a1wfy30z-1);
|
|
1400
|
+
display: var(--a1wfy30z-2);
|
|
1401
|
+
flex: none;
|
|
1402
|
+
align-items: center;
|
|
1403
|
+
margin-left: 4px;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.ant-input-number-input-wrap::before {
|
|
1407
|
+
content: var(--a1wfy30z-3);
|
|
1408
|
+
display: var(--a1wfy30z-4);
|
|
1409
|
+
flex: none;
|
|
1410
|
+
align-items: center;
|
|
1411
|
+
margin-right: 4px;
|
|
1412
|
+
cursor: auto;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.ant-input-number-input {
|
|
1416
|
+
padding: 0;
|
|
1417
|
+
margin: 0;
|
|
1418
|
+
height: auto;
|
|
1419
|
+
font-size: inherit;
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
.E_ai7qkf2 {
|
|
1425
|
+
.ant-input-number-handler-wrap {
|
|
1426
|
+
display: var(--ai7qkf2-0);
|
|
1427
|
+
}
|
|
1428
|
+
.ant-input-number-input-wrap {
|
|
1429
|
+
display: inline-flex;
|
|
1430
|
+
line-height: 1.5715;
|
|
1431
|
+
height: 100%;
|
|
1432
|
+
width: 100%;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
.ant-input-number-input-wrap::after {
|
|
1436
|
+
content: var(--ai7qkf2-1);
|
|
1437
|
+
display: var(--ai7qkf2-2);
|
|
1438
|
+
flex: none;
|
|
1439
|
+
align-items: center;
|
|
1440
|
+
margin-left: 4px;
|
|
1441
|
+
padding: 5px 12px 5px 0;
|
|
1442
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.ant-input-number-input-wrap::before {
|
|
1446
|
+
content: var(--ai7qkf2-3);
|
|
1447
|
+
display: var(--ai7qkf2-4);
|
|
1448
|
+
flex: none;
|
|
1449
|
+
align-items: center;
|
|
1450
|
+
margin-right: 4px;
|
|
1451
|
+
cursor: auto;
|
|
1452
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.ant-input-group.ant-input-group-compact > & {
|
|
1456
|
+
border-radius: 0;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
&.ant-input-number {
|
|
1460
|
+
width: 100%;
|
|
1461
|
+
border-radius: 6px;
|
|
1462
|
+
}
|
|
1463
|
+
&.ant-input-number:not([disabled]) {
|
|
1464
|
+
&:focus,
|
|
1465
|
+
&:active,
|
|
1466
|
+
&.ant-input-number-focused {
|
|
1467
|
+
&.ant-input-number {
|
|
1468
|
+
border-color: $blue;
|
|
1469
|
+
box-shadow: $shadow-light-active;
|
|
1470
|
+
z-index: $input-hover-index;
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
&.error {
|
|
1474
|
+
&:hover,
|
|
1475
|
+
&.ant-input-number-focused {
|
|
1476
|
+
&.ant-input-number {
|
|
1477
|
+
border-color: $red;
|
|
1478
|
+
box-shadow: $shadow-light-error;
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.ant-input-number-input {
|
|
1485
|
+
height: 30px;
|
|
1486
|
+
border: 1px;
|
|
1487
|
+
padding: 5px 12px;
|
|
1488
|
+
font-size: inherit;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
&.ant-input-number-lg input {
|
|
1492
|
+
height: 38px;
|
|
1493
|
+
border: 1px;
|
|
1494
|
+
padding: 8px 16px;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
&.ant-input-number-sm input {
|
|
1498
|
+
height: 22px;
|
|
1499
|
+
border: 1px;
|
|
1500
|
+
padding: 2px 8px;
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
1505
|
.E_iouxfgt {
|
|
1506
1506
|
display: inline-flex;
|
|
1507
1507
|
align-items: center;
|
|
@@ -1571,6 +1571,11 @@
|
|
|
1571
1571
|
}
|
|
1572
1572
|
|
|
1573
1573
|
|
|
1574
|
+
.E_m196gn1d {
|
|
1575
|
+
min-width: 1280px;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
|
|
1574
1579
|
.E_cnujxq2 {
|
|
1575
1580
|
display: flex;
|
|
1576
1581
|
flex-direction: column;
|
|
@@ -2384,11 +2389,6 @@
|
|
|
2384
2389
|
}
|
|
2385
2390
|
|
|
2386
2391
|
|
|
2387
|
-
.E_m196gn1d {
|
|
2388
|
-
min-width: 1280px;
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
2392
|
.E_dsnbhzf {
|
|
2393
2393
|
@include Inter(bold);
|
|
2394
2394
|
font-size: 32px;
|
|
@@ -2743,155 +2743,53 @@
|
|
|
2743
2743
|
}
|
|
2744
2744
|
|
|
2745
2745
|
|
|
2746
|
-
.
|
|
2747
|
-
&.ant-select
|
|
2748
|
-
|
|
2749
|
-
|
|
2746
|
+
.E_s4ivdfu {
|
|
2747
|
+
&.ant-select {
|
|
2748
|
+
.ant-select-selection-placeholder {
|
|
2749
|
+
opacity: 1;
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
&.select-loading-value {
|
|
2753
|
+
pointer-events: none;
|
|
2754
|
+
}
|
|
2750
2755
|
}
|
|
2756
|
+
}
|
|
2751
2757
|
|
|
2758
|
+
.E_sks9xr8 {
|
|
2752
2759
|
&.ant-select {
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
&.ant-select-lg {
|
|
2770
|
-
height: 38px;
|
|
2771
|
-
font-size: 13px;
|
|
2772
|
-
}
|
|
2760
|
+
.select-hover-suffix,
|
|
2761
|
+
.select-active-suffix,
|
|
2762
|
+
.select-expanded-suffix,
|
|
2763
|
+
.select-expanded-search-suffix,
|
|
2764
|
+
.select-focus-suffix,
|
|
2765
|
+
.select-error-suffix,
|
|
2766
|
+
.select-error-hover-suffix,
|
|
2767
|
+
.select-error-active-suffix,
|
|
2768
|
+
.select-error-expanded-suffix,
|
|
2769
|
+
.select-error-expanded-search-suffix,
|
|
2770
|
+
.select-error-focus-suffix {
|
|
2771
|
+
display: none;
|
|
2772
|
+
width: 16px;
|
|
2773
|
+
height: 16px;
|
|
2774
|
+
}
|
|
2773
2775
|
|
|
2774
|
-
|
|
2775
|
-
.
|
|
2776
|
-
|
|
2776
|
+
&.ant-select-disabled {
|
|
2777
|
+
.select-suffix {
|
|
2778
|
+
opacity: 0.5;
|
|
2777
2779
|
}
|
|
2780
|
+
}
|
|
2778
2781
|
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
&:hover .ant-select-arrow,
|
|
2791
|
-
&.__pseudo-states-hover .ant-select-arrow {
|
|
2792
|
-
color: $fills-light-general-general;
|
|
2793
|
-
}
|
|
2794
|
-
|
|
2795
|
-
&:active,
|
|
2796
|
-
&:focus,
|
|
2797
|
-
&.ant-select-focused,
|
|
2798
|
-
&.ant-select-open,
|
|
2799
|
-
&.__pseudo-states-active,
|
|
2800
|
-
&.__pseudo-states-focus {
|
|
2801
|
-
.ant-select-selector {
|
|
2802
|
-
border-color: $fills-light-general-general;
|
|
2803
|
-
box-shadow: $shadow-light-active;
|
|
2804
|
-
}
|
|
2805
|
-
}
|
|
2806
|
-
|
|
2807
|
-
&.ant-select-open .ant-select-arrow .anticon-down {
|
|
2808
|
-
transform: rotate(180deg);
|
|
2809
|
-
}
|
|
2810
|
-
}
|
|
2811
|
-
|
|
2812
|
-
&.ant-select-disabled .ant-select-selector {
|
|
2813
|
-
background: $fills-light-trans-3;
|
|
2814
|
-
border-color: $strokes-light-trans-3;
|
|
2815
|
-
cursor: "not-allowed";
|
|
2816
|
-
}
|
|
2817
|
-
}
|
|
2818
|
-
&.select-error:not(.ant-select-disabled) {
|
|
2819
|
-
.ant-select-selector {
|
|
2820
|
-
border-color: $fills-light-serious-serious !important;
|
|
2821
|
-
}
|
|
2822
|
-
|
|
2823
|
-
&:hover .ant-select-arrow,
|
|
2824
|
-
&.__pseudo-states-hover .ant-select-arrow {
|
|
2825
|
-
color: $text-light-super;
|
|
2826
|
-
}
|
|
2827
|
-
|
|
2828
|
-
&:active,
|
|
2829
|
-
&:focus,
|
|
2830
|
-
&.ant-select-focused,
|
|
2831
|
-
&.ant-select-open,
|
|
2832
|
-
&.__pseudo-states-focus,
|
|
2833
|
-
&.__pseudo-states-active {
|
|
2834
|
-
.ant-select-selector {
|
|
2835
|
-
border-color: $fills-light-general-general;
|
|
2836
|
-
box-shadow: $shadow-light-error;
|
|
2837
|
-
}
|
|
2838
|
-
}
|
|
2839
|
-
|
|
2840
|
-
&.ant-select-open .ant-select-arrow .anticon-down {
|
|
2841
|
-
transform: rotate(180deg);
|
|
2842
|
-
}
|
|
2843
|
-
}
|
|
2844
|
-
}
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
.E_s4ivdfu {
|
|
2849
|
-
&.ant-select {
|
|
2850
|
-
.ant-select-selection-placeholder {
|
|
2851
|
-
opacity: 1;
|
|
2852
|
-
}
|
|
2853
|
-
|
|
2854
|
-
&.select-loading-value {
|
|
2855
|
-
pointer-events: none;
|
|
2856
|
-
}
|
|
2857
|
-
}
|
|
2858
|
-
}
|
|
2859
|
-
|
|
2860
|
-
.E_sks9xr8 {
|
|
2861
|
-
&.ant-select {
|
|
2862
|
-
.select-hover-suffix,
|
|
2863
|
-
.select-active-suffix,
|
|
2864
|
-
.select-expanded-suffix,
|
|
2865
|
-
.select-expanded-search-suffix,
|
|
2866
|
-
.select-focus-suffix,
|
|
2867
|
-
.select-error-suffix,
|
|
2868
|
-
.select-error-hover-suffix,
|
|
2869
|
-
.select-error-active-suffix,
|
|
2870
|
-
.select-error-expanded-suffix,
|
|
2871
|
-
.select-error-expanded-search-suffix,
|
|
2872
|
-
.select-error-focus-suffix {
|
|
2873
|
-
display: none;
|
|
2874
|
-
width: 16px;
|
|
2875
|
-
height: 16px;
|
|
2876
|
-
}
|
|
2877
|
-
|
|
2878
|
-
&.ant-select-disabled {
|
|
2879
|
-
.select-suffix {
|
|
2880
|
-
opacity: 0.5;
|
|
2881
|
-
}
|
|
2882
|
-
}
|
|
2883
|
-
|
|
2884
|
-
&:not(.ant-select-disabled) {
|
|
2885
|
-
// open, not error
|
|
2886
|
-
&.ant-select-open:not(.select-error) {
|
|
2887
|
-
&.ant-select-show-search {
|
|
2888
|
-
.select-suffix {
|
|
2889
|
-
display: none;
|
|
2890
|
-
}
|
|
2891
|
-
.select-expanded-search-suffix {
|
|
2892
|
-
display: inline;
|
|
2893
|
-
}
|
|
2894
|
-
}
|
|
2782
|
+
&:not(.ant-select-disabled) {
|
|
2783
|
+
// open, not error
|
|
2784
|
+
&.ant-select-open:not(.select-error) {
|
|
2785
|
+
&.ant-select-show-search {
|
|
2786
|
+
.select-suffix {
|
|
2787
|
+
display: none;
|
|
2788
|
+
}
|
|
2789
|
+
.select-expanded-search-suffix {
|
|
2790
|
+
display: inline;
|
|
2791
|
+
}
|
|
2792
|
+
}
|
|
2895
2793
|
|
|
2896
2794
|
&:not(.ant-select-show-search) {
|
|
2897
2795
|
.select-suffix {
|
|
@@ -3046,6 +2944,108 @@
|
|
|
3046
2944
|
}
|
|
3047
2945
|
|
|
3048
2946
|
|
|
2947
|
+
.E_s17wv897 {
|
|
2948
|
+
&.ant-select,
|
|
2949
|
+
&.ant-select div.ant-select-selector {
|
|
2950
|
+
border-radius: 6px;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
&.ant-select {
|
|
2954
|
+
&.ant-select-single {
|
|
2955
|
+
width: 100%;
|
|
2956
|
+
&[data-size="small"] {
|
|
2957
|
+
}
|
|
2958
|
+
&[data-size="middle"] {
|
|
2959
|
+
height: 30px;
|
|
2960
|
+
}
|
|
2961
|
+
&[data-size="large"] {
|
|
2962
|
+
}
|
|
2963
|
+
color: $text-primary-light;
|
|
2964
|
+
border-color: $strokes-light-trans-2;
|
|
2965
|
+
transition:
|
|
2966
|
+
border 160ms ease 8ms,
|
|
2967
|
+
box-shadow 160ms ease 8ms;
|
|
2968
|
+
font-size: 13px;
|
|
2969
|
+
|
|
2970
|
+
&.ant-select-lg {
|
|
2971
|
+
height: 38px;
|
|
2972
|
+
font-size: 13px;
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
.ant-select-arrow,
|
|
2976
|
+
.ant-select-arrow .anticon-down {
|
|
2977
|
+
transition: 160ms ease;
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
.ant-select-arrow-loading {
|
|
2981
|
+
color: $fills-light-general-general;
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
&:not(.ant-select-disabled) {
|
|
2985
|
+
&:hover .ant-select-selector,
|
|
2986
|
+
&.__pseudo-states-hover .ant-select-selector {
|
|
2987
|
+
border-color: $strokes-light-trans-4;
|
|
2988
|
+
box-shadow: $shadow-light-hover;
|
|
2989
|
+
}
|
|
2990
|
+
|
|
2991
|
+
&:hover .ant-select-arrow,
|
|
2992
|
+
&.__pseudo-states-hover .ant-select-arrow {
|
|
2993
|
+
color: $fills-light-general-general;
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2996
|
+
&:active,
|
|
2997
|
+
&:focus,
|
|
2998
|
+
&.ant-select-focused,
|
|
2999
|
+
&.ant-select-open,
|
|
3000
|
+
&.__pseudo-states-active,
|
|
3001
|
+
&.__pseudo-states-focus {
|
|
3002
|
+
.ant-select-selector {
|
|
3003
|
+
border-color: $fills-light-general-general;
|
|
3004
|
+
box-shadow: $shadow-light-active;
|
|
3005
|
+
}
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
&.ant-select-open .ant-select-arrow .anticon-down {
|
|
3009
|
+
transform: rotate(180deg);
|
|
3010
|
+
}
|
|
3011
|
+
}
|
|
3012
|
+
|
|
3013
|
+
&.ant-select-disabled .ant-select-selector {
|
|
3014
|
+
background: $fills-light-trans-3;
|
|
3015
|
+
border-color: $strokes-light-trans-3;
|
|
3016
|
+
cursor: "not-allowed";
|
|
3017
|
+
}
|
|
3018
|
+
}
|
|
3019
|
+
&.select-error:not(.ant-select-disabled) {
|
|
3020
|
+
.ant-select-selector {
|
|
3021
|
+
border-color: $fills-light-serious-serious !important;
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
&:hover .ant-select-arrow,
|
|
3025
|
+
&.__pseudo-states-hover .ant-select-arrow {
|
|
3026
|
+
color: $text-light-super;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
&:active,
|
|
3030
|
+
&:focus,
|
|
3031
|
+
&.ant-select-focused,
|
|
3032
|
+
&.ant-select-open,
|
|
3033
|
+
&.__pseudo-states-focus,
|
|
3034
|
+
&.__pseudo-states-active {
|
|
3035
|
+
.ant-select-selector {
|
|
3036
|
+
border-color: $fills-light-general-general;
|
|
3037
|
+
box-shadow: $shadow-light-error;
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
&.ant-select-open .ant-select-arrow .anticon-down {
|
|
3042
|
+
transform: rotate(180deg);
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3045
|
+
}
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
|
|
3049
3049
|
.E_oa99sl3 {
|
|
3050
3050
|
display: flex;
|
|
3051
3051
|
justify-content: space-between;
|
|
@@ -3090,6 +3090,23 @@
|
|
|
3090
3090
|
}
|
|
3091
3091
|
|
|
3092
3092
|
|
|
3093
|
+
.E_ryby9ds {
|
|
3094
|
+
display: flex;
|
|
3095
|
+
align-items: center;
|
|
3096
|
+
.order {
|
|
3097
|
+
height: 24px;
|
|
3098
|
+
width: 24px;
|
|
3099
|
+
border-radius: 20px;
|
|
3100
|
+
color: $text-light-general;
|
|
3101
|
+
background: $fill-light-element-container-outstanding;
|
|
3102
|
+
display: flex;
|
|
3103
|
+
align-items: center;
|
|
3104
|
+
justify-content: center;
|
|
3105
|
+
margin-right: 6px;
|
|
3106
|
+
}
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
|
|
3093
3110
|
.E_suhck3k {
|
|
3094
3111
|
height: 24px;
|
|
3095
3112
|
width: 24px;
|
|
@@ -3106,164 +3123,18 @@
|
|
|
3106
3123
|
}
|
|
3107
3124
|
|
|
3108
3125
|
|
|
3109
|
-
.
|
|
3110
|
-
|
|
3111
|
-
margin-right: 2px;
|
|
3112
|
-
}
|
|
3126
|
+
.E_hrhfj7c {
|
|
3127
|
+
display: none;
|
|
3113
3128
|
}
|
|
3114
3129
|
|
|
3115
|
-
.
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
padding-right: 8px;
|
|
3119
|
-
font-size: 12px;
|
|
3130
|
+
.E_dt9qoak {
|
|
3131
|
+
.bottom {
|
|
3132
|
+
color: $text-neutral-secondary;
|
|
3120
3133
|
}
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
border-radius: 4px;
|
|
3134
|
+
.left {
|
|
3135
|
+
min-width: 0;
|
|
3124
3136
|
}
|
|
3125
|
-
|
|
3126
|
-
&.antd5-segmented
|
|
3127
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3128
|
-
.antd5-segmented-item-disabled
|
|
3129
|
-
) {
|
|
3130
|
-
border-radius: 4px;
|
|
3131
|
-
}
|
|
3132
|
-
}
|
|
3133
|
-
|
|
3134
|
-
.E_ma64lna {
|
|
3135
|
-
.antd5-segmented-item-label {
|
|
3136
|
-
padding-left: 12px;
|
|
3137
|
-
padding-right: 12px;
|
|
3138
|
-
}
|
|
3139
|
-
}
|
|
3140
|
-
|
|
3141
|
-
.E_ckld275 {
|
|
3142
|
-
background-color: $fill-neutral-trans-2;
|
|
3143
|
-
&.antd5-segmented
|
|
3144
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3145
|
-
.antd5-segmented-item-disabled
|
|
3146
|
-
) {
|
|
3147
|
-
background-color: $fill-neutral-light-white;
|
|
3148
|
-
color: $text-neutral-secondary-light;
|
|
3149
|
-
}
|
|
3150
|
-
// on animate remove hover bg color
|
|
3151
|
-
&.antd5-segmented
|
|
3152
|
-
.antd5-segmented-thumb
|
|
3153
|
-
~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3154
|
-
.antd5-segmented-item-disabled
|
|
3155
|
-
) {
|
|
3156
|
-
background-color: transparent;
|
|
3157
|
-
}
|
|
3158
|
-
// remove after's bg color
|
|
3159
|
-
&.antd5-segmented
|
|
3160
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3161
|
-
.antd5-segmented-item-disabled
|
|
3162
|
-
)::after {
|
|
3163
|
-
background-color: transparent;
|
|
3164
|
-
}
|
|
3165
|
-
}
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
.E_ryby9ds {
|
|
3169
|
-
display: flex;
|
|
3170
|
-
align-items: center;
|
|
3171
|
-
.order {
|
|
3172
|
-
height: 24px;
|
|
3173
|
-
width: 24px;
|
|
3174
|
-
border-radius: 20px;
|
|
3175
|
-
color: $text-light-general;
|
|
3176
|
-
background: $fill-light-element-container-outstanding;
|
|
3177
|
-
display: flex;
|
|
3178
|
-
align-items: center;
|
|
3179
|
-
justify-content: center;
|
|
3180
|
-
margin-right: 6px;
|
|
3181
|
-
}
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
.E_b1lj76ty {
|
|
3186
|
-
width: 100%;
|
|
3187
|
-
height: 100%;
|
|
3188
|
-
margin: 0 auto;
|
|
3189
|
-
display: flex;
|
|
3190
|
-
flex-direction: column;
|
|
3191
|
-
align-items: center;
|
|
3192
|
-
justify-content: center;
|
|
3193
|
-
color: $gray-a30-10;
|
|
3194
|
-
&.large {
|
|
3195
|
-
max-width: 648px;
|
|
3196
|
-
}
|
|
3197
|
-
&.medium {
|
|
3198
|
-
max-width: 412px;
|
|
3199
|
-
}
|
|
3200
|
-
&.gray {
|
|
3201
|
-
background-color: $fills-trans-primary-light;
|
|
3202
|
-
}
|
|
3203
|
-
&.white {
|
|
3204
|
-
background-color: $fills-light-light-white;
|
|
3205
|
-
}
|
|
3206
|
-
.title {
|
|
3207
|
-
margin-bottom: 4px;
|
|
3208
|
-
}
|
|
3209
|
-
.title,
|
|
3210
|
-
.desc {
|
|
3211
|
-
word-break: break-all;
|
|
3212
|
-
text-align: center;
|
|
3213
|
-
}
|
|
3214
|
-
.action-button.middle {
|
|
3215
|
-
margin-top: 16px;
|
|
3216
|
-
}
|
|
3217
|
-
.action-button.small {
|
|
3218
|
-
margin-top: 8px;
|
|
3219
|
-
}
|
|
3220
|
-
}
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
.E_m5foqp8 {
|
|
3224
|
-
--footer-height: 96px;
|
|
3225
|
-
--modal-content-width: 720px;
|
|
3226
|
-
--modal-content-min-height: 200px;
|
|
3227
|
-
--modal-header-padding: 40px 60px 8px;
|
|
3228
|
-
--modal-content-padding-top: 24px;
|
|
3229
|
-
--modal-content-padding-bottom: 32px;
|
|
3230
|
-
--modal-content-padding-x: 60px;
|
|
3231
|
-
--modal-footer-padding: 0 60px;
|
|
3232
|
-
|
|
3233
|
-
&.content-full.ant-modal {
|
|
3234
|
-
height: calc(100vh - 80px);
|
|
3235
|
-
width: calc(100vw - 160px);
|
|
3236
|
-
.ant-modal-content {
|
|
3237
|
-
width: 100%;
|
|
3238
|
-
height: 100%;
|
|
3239
|
-
max-width: unset;
|
|
3240
|
-
max-height: unset;
|
|
3241
|
-
display: flex;
|
|
3242
|
-
flex-direction: column;
|
|
3243
|
-
}
|
|
3244
|
-
.ant-modal-body {
|
|
3245
|
-
flex: 1;
|
|
3246
|
-
}
|
|
3247
|
-
}
|
|
3248
|
-
|
|
3249
|
-
.initializing-title {
|
|
3250
|
-
height: 32px;
|
|
3251
|
-
}
|
|
3252
|
-
}
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
.E_hrhfj7c {
|
|
3256
|
-
display: none;
|
|
3257
|
-
}
|
|
3258
|
-
|
|
3259
|
-
.E_dt9qoak {
|
|
3260
|
-
.bottom {
|
|
3261
|
-
color: $text-neutral-secondary;
|
|
3262
|
-
}
|
|
3263
|
-
.left {
|
|
3264
|
-
min-width: 0;
|
|
3265
|
-
}
|
|
3266
|
-
}
|
|
3137
|
+
}
|
|
3267
3138
|
|
|
3268
3139
|
.E_crhnxq5 {
|
|
3269
3140
|
display: flex;
|
|
@@ -3334,7 +3205,6 @@
|
|
|
3334
3205
|
justify-content: space-between;
|
|
3335
3206
|
align-items: center;
|
|
3336
3207
|
border-bottom: 1px solid $gray-30;
|
|
3337
|
-
gap: 4px;
|
|
3338
3208
|
}
|
|
3339
3209
|
|
|
3340
3210
|
.E_ckhyuyx {
|
|
@@ -3445,6 +3315,137 @@
|
|
|
3445
3315
|
}
|
|
3446
3316
|
|
|
3447
3317
|
|
|
3318
|
+
.E_b1lj76ty {
|
|
3319
|
+
width: 100%;
|
|
3320
|
+
height: 100%;
|
|
3321
|
+
margin: 0 auto;
|
|
3322
|
+
display: flex;
|
|
3323
|
+
flex-direction: column;
|
|
3324
|
+
align-items: center;
|
|
3325
|
+
justify-content: center;
|
|
3326
|
+
color: $gray-a30-10;
|
|
3327
|
+
&.large {
|
|
3328
|
+
max-width: 648px;
|
|
3329
|
+
}
|
|
3330
|
+
&.medium {
|
|
3331
|
+
max-width: 412px;
|
|
3332
|
+
}
|
|
3333
|
+
&.gray {
|
|
3334
|
+
background-color: $fills-trans-primary-light;
|
|
3335
|
+
}
|
|
3336
|
+
&.white {
|
|
3337
|
+
background-color: $fills-light-light-white;
|
|
3338
|
+
}
|
|
3339
|
+
.title {
|
|
3340
|
+
margin-bottom: 4px;
|
|
3341
|
+
}
|
|
3342
|
+
.title,
|
|
3343
|
+
.desc {
|
|
3344
|
+
word-break: break-all;
|
|
3345
|
+
text-align: center;
|
|
3346
|
+
}
|
|
3347
|
+
.action-button.middle {
|
|
3348
|
+
margin-top: 16px;
|
|
3349
|
+
}
|
|
3350
|
+
.action-button.small {
|
|
3351
|
+
margin-top: 8px;
|
|
3352
|
+
}
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
|
|
3356
|
+
.E_m5foqp8 {
|
|
3357
|
+
&.medium {
|
|
3358
|
+
--footer-height: 96px;
|
|
3359
|
+
--modal-content-width: 720px;
|
|
3360
|
+
--modal-content-min-height: 200px;
|
|
3361
|
+
--modal-header-padding: 40px 60px 8px;
|
|
3362
|
+
--modal-content-padding-top: 24px;
|
|
3363
|
+
--modal-content-padding-bottom: 32px;
|
|
3364
|
+
--modal-content-padding-x: 60px;
|
|
3365
|
+
--modal-footer-padding: 0 60px;
|
|
3366
|
+
|
|
3367
|
+
&.content-full.ant-modal {
|
|
3368
|
+
height: calc(100vh - 80px);
|
|
3369
|
+
width: calc(100vw - 160px);
|
|
3370
|
+
.ant-modal-content {
|
|
3371
|
+
width: 100%;
|
|
3372
|
+
height: 100%;
|
|
3373
|
+
max-width: unset;
|
|
3374
|
+
max-height: unset;
|
|
3375
|
+
display: flex;
|
|
3376
|
+
flex-direction: column;
|
|
3377
|
+
}
|
|
3378
|
+
.ant-modal-body {
|
|
3379
|
+
flex: 1;
|
|
3380
|
+
}
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.initializing-title {
|
|
3384
|
+
height: 32px;
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
.E_s11wux3h {
|
|
3391
|
+
.antd5-segmented-item:not(:last-child) {
|
|
3392
|
+
margin-right: 2px;
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
.E_s1t2an3z {
|
|
3397
|
+
&.antd5-segmented-sm .antd5-segmented-item-label {
|
|
3398
|
+
padding-left: 8px;
|
|
3399
|
+
padding-right: 8px;
|
|
3400
|
+
font-size: 12px;
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
&.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
3404
|
+
border-radius: 4px;
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
&.antd5-segmented
|
|
3408
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3409
|
+
.antd5-segmented-item-disabled
|
|
3410
|
+
) {
|
|
3411
|
+
border-radius: 4px;
|
|
3412
|
+
}
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
.E_ma64lna {
|
|
3416
|
+
.antd5-segmented-item-label {
|
|
3417
|
+
padding-left: 12px;
|
|
3418
|
+
padding-right: 12px;
|
|
3419
|
+
}
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
.E_ckld275 {
|
|
3423
|
+
background-color: $fill-neutral-trans-2;
|
|
3424
|
+
&.antd5-segmented
|
|
3425
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3426
|
+
.antd5-segmented-item-disabled
|
|
3427
|
+
) {
|
|
3428
|
+
background-color: $fill-neutral-light-white;
|
|
3429
|
+
color: $text-neutral-secondary-light;
|
|
3430
|
+
}
|
|
3431
|
+
// on animate remove hover bg color
|
|
3432
|
+
&.antd5-segmented
|
|
3433
|
+
.antd5-segmented-thumb
|
|
3434
|
+
~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3435
|
+
.antd5-segmented-item-disabled
|
|
3436
|
+
) {
|
|
3437
|
+
background-color: transparent;
|
|
3438
|
+
}
|
|
3439
|
+
// remove after's bg color
|
|
3440
|
+
&.antd5-segmented
|
|
3441
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3442
|
+
.antd5-segmented-item-disabled
|
|
3443
|
+
)::after {
|
|
3444
|
+
background-color: transparent;
|
|
3445
|
+
}
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
|
|
3448
3449
|
.E_ckaaqep {
|
|
3449
3450
|
background: #acbad399;
|
|
3450
3451
|
content: "";
|
|
@@ -4317,397 +4318,245 @@
|
|
|
4317
4318
|
}
|
|
4318
4319
|
|
|
4319
4320
|
|
|
4320
|
-
.
|
|
4321
|
-
|
|
4322
|
-
line-height: 22px;
|
|
4323
|
-
display: inline-flex;
|
|
4324
|
-
.ant-checkbox { height: 22px; display: flex; align-items: center; top: 0; } .ant-checkbox-checked::after { border: none; } &.ant-checkbox-wrapper:hover .ant-checkbox-inner, &.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner { border-color: $fills-light-general-general; } .ant-checkbox .ant-checkbox-inner { border: 1px solid $strokes-light-trans-4; } .ant-checkbox.ant-checkbox-checked, .ant-checkbox.ant-checkbox-indeterminate { .ant-checkbox-inner { border: 1px solid $fills-light-general-general; } } .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner { background: $fills-light-general-general; &:after { background-color: $white; height: 2px; width: 10px; border-radius: 2px; } } &.ant-checkbox-wrapper-disabled { opacity: 0.5; .ant-checkbox-disabled .ant-checkbox-inner { background: $fills-light-trans-3; border-color: $strokes-light-trans-4 !important; } .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after { border-color: $text-primary-light; } .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after { background: $text-primary-light; } } .ant-checkbox + span, .ant-checkbox-disabled + span { padding: 0; .main { display: inline-block; margin-left: 12px; color: $text-primary-light; } .sub { margin-left: 28px; color: $text-secondary-light; } } &.compact { .ant-checkbox + span, .ant-checkbox-disabled + span { .main { margin-left: 8px; } .sub { margin-left: 24px; } } }
|
|
4325
|
-
}
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
.E_b14q2gmw {
|
|
4329
|
-
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14),
|
|
4330
|
-
0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447),
|
|
4331
|
-
0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224),
|
|
4332
|
-
0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253),
|
|
4333
|
-
0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07),
|
|
4334
|
-
0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747),
|
|
4335
|
-
0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776),
|
|
4336
|
-
0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
4337
|
-
}
|
|
4338
|
-
|
|
4339
|
-
.E_c1eym6el {
|
|
4340
|
-
border-radius: 8px;
|
|
4341
|
-
background-color: white;
|
|
4342
|
-
&.hoverable {
|
|
4343
|
-
cursor: pointer;
|
|
4344
|
-
|
|
4345
|
-
&:hover {
|
|
4346
|
-
transition: all 200ms ease;
|
|
4347
|
-
box-shadow: 0px 9px 22px rgb(107 125 153 / 23%),
|
|
4348
|
-
0px 1.12694px 2.75474px rgb(107 125 153 / 12%);
|
|
4349
|
-
transform: translateY(-4px);
|
|
4350
|
-
}
|
|
4351
|
-
}
|
|
4352
|
-
}
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
.E_c1yd35n {
|
|
4356
|
-
padding: 0 12px 14px 12px;
|
|
4357
|
-
}
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
.E_c1kghdax {
|
|
4361
|
-
color: $text-primary-light;
|
|
4362
|
-
padding: 7px 12px;
|
|
4363
|
-
display: flex;
|
|
4364
|
-
justify-content: space-between;
|
|
4365
|
-
align-items: center;
|
|
4366
|
-
|
|
4367
|
-
&.has-arrow {
|
|
4368
|
-
padding-left: 10px;
|
|
4369
|
-
|
|
4370
|
-
.title-wrapper {
|
|
4371
|
-
cursor: pointer;
|
|
4372
|
-
color: $text-light-primary;
|
|
4373
|
-
|
|
4374
|
-
&.is-open {
|
|
4375
|
-
color: $text-primary-light;
|
|
4376
|
-
font-weight: 600;
|
|
4377
|
-
|
|
4378
|
-
.collapse-arrow {
|
|
4379
|
-
transform: rotate(90deg);
|
|
4380
|
-
}
|
|
4381
|
-
}
|
|
4382
|
-
}
|
|
4383
|
-
}
|
|
4384
|
-
|
|
4385
|
-
.sub-info {
|
|
4386
|
-
font-size: 12px;
|
|
4387
|
-
line-height: 18px;
|
|
4388
|
-
}
|
|
4389
|
-
|
|
4390
|
-
.title-wrapper {
|
|
4391
|
-
display: flex;
|
|
4392
|
-
align-items: center;
|
|
4393
|
-
user-select: none;
|
|
4394
|
-
flex-grow: 1;
|
|
4395
|
-
font-size: 12px;
|
|
4396
|
-
line-height: 18px;
|
|
4397
|
-
color: $text-primary-light;
|
|
4398
|
-
font-weight: 700;
|
|
4399
|
-
}
|
|
4400
|
-
|
|
4401
|
-
.collapse-arrow {
|
|
4402
|
-
transition: all 50ms ease-out 0ms;
|
|
4403
|
-
margin-right: 2px;
|
|
4404
|
-
}
|
|
4405
|
-
}
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
.E_lht19u8 {
|
|
4409
|
-
width: 64px;
|
|
4410
|
-
height: 64px;
|
|
4411
|
-
display: flex;
|
|
4412
|
-
align-items: center;
|
|
4413
|
-
justify-content: center;
|
|
4321
|
+
.E_u3l9ivi {
|
|
4322
|
+
width: 100%;
|
|
4414
4323
|
position: relative;
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
width: 5px;
|
|
4421
|
-
height: 48px;
|
|
4422
|
-
left: 9.33px;
|
|
4423
|
-
top: 40.5px;
|
|
4424
|
-
|
|
4425
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4426
|
-
border-radius: 5px;
|
|
4427
|
-
transform: rotate(-128deg);
|
|
4428
|
-
transform-origin: top left;
|
|
4429
|
-
|
|
4430
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
4431
|
-
}
|
|
4432
|
-
|
|
4433
|
-
.E_ll4n94n {
|
|
4434
|
-
position: absolute;
|
|
4435
|
-
width: 5px;
|
|
4436
|
-
height: 48px;
|
|
4437
|
-
left: 40.8px;
|
|
4438
|
-
top: 8.4px;
|
|
4439
|
-
|
|
4440
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4441
|
-
border-radius: 5px;
|
|
4442
|
-
transform: rotate(-8deg);
|
|
4443
|
-
transform-origin: top left;
|
|
4444
|
-
|
|
4445
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
4446
|
-
}
|
|
4447
|
-
|
|
4448
|
-
.E_l17lbdo6 {
|
|
4449
|
-
position: absolute;
|
|
4450
|
-
width: 5px;
|
|
4451
|
-
height: 48px;
|
|
4452
|
-
left: 52.9px;
|
|
4453
|
-
top: 51.8px;
|
|
4454
|
-
|
|
4455
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4456
|
-
border-radius: 5px;
|
|
4457
|
-
transform: rotate(112deg);
|
|
4458
|
-
transform-origin: top left;
|
|
4459
|
-
|
|
4460
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
4461
|
-
}
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
.E_t1dtlqs1 {
|
|
4465
|
-
margin-bottom: 4px;
|
|
4466
|
-
color: $text-secondary-light;
|
|
4467
|
-
}
|
|
4468
|
-
|
|
4469
|
-
.E_s1ese5oy {
|
|
4470
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4471
|
-
line-height: 32px;
|
|
4472
|
-
height: 32px;
|
|
4473
|
-
margin-bottom: 0;
|
|
4474
|
-
&.primary,
|
|
4475
|
-
&.info {
|
|
4476
|
-
color: $text-light-general;
|
|
4324
|
+
.upload-label {
|
|
4325
|
+
color: $text-light-primary;
|
|
4326
|
+
word-break: break-word;
|
|
4327
|
+
margin-bottom: 4px;
|
|
4328
|
+
display: block;
|
|
4477
4329
|
}
|
|
4478
|
-
|
|
4479
|
-
color:
|
|
4330
|
+
.upload-description {
|
|
4331
|
+
color: $text-light-secondary;
|
|
4332
|
+
word-break: break-word;
|
|
4480
4333
|
}
|
|
4481
|
-
|
|
4482
|
-
|
|
4334
|
+
.upload-button {
|
|
4335
|
+
display: block;
|
|
4483
4336
|
}
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4337
|
+
.upload-button:not(:first-child),
|
|
4338
|
+
.upload-drag:not(:first-child) {
|
|
4339
|
+
margin-top: 8px;
|
|
4487
4340
|
}
|
|
4488
|
-
|
|
4489
|
-
|
|
4341
|
+
.upload-button:not(:last-child),
|
|
4342
|
+
.upload-drag:not(:last-child) {
|
|
4343
|
+
margin-bottom: 8px;
|
|
4490
4344
|
}
|
|
4491
|
-
}
|
|
4492
4345
|
|
|
4493
|
-
.
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4346
|
+
.upload-drag-area {
|
|
4347
|
+
padding: 32px 16px;
|
|
4348
|
+
border-radius: 4px;
|
|
4349
|
+
border: 1px dashed $strokes-light-trans-4;
|
|
4350
|
+
background: $fills-light-trans-1;
|
|
4497
4351
|
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4352
|
+
display: flex;
|
|
4353
|
+
flex-direction: column;
|
|
4354
|
+
align-items: center;
|
|
4355
|
+
.upload-drag-text {
|
|
4356
|
+
text-align: center;
|
|
4357
|
+
}
|
|
4502
4358
|
|
|
4503
|
-
.
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
flex: 1;
|
|
4507
|
-
position: relative;
|
|
4508
|
-
top: -7px;
|
|
4509
|
-
}
|
|
4510
|
-
p {
|
|
4511
|
-
width: 100%;
|
|
4512
|
-
overflow: hidden;
|
|
4513
|
-
text-overflow: ellipsis;
|
|
4514
|
-
white-space: nowrap;
|
|
4515
|
-
}
|
|
4516
|
-
}
|
|
4359
|
+
.ant-upload-drag-container {
|
|
4360
|
+
color: $text-light-primary;
|
|
4361
|
+
}
|
|
4517
4362
|
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4363
|
+
&.has-file {
|
|
4364
|
+
padding: 16px;
|
|
4365
|
+
.ant-upload-drag-container {
|
|
4366
|
+
display: flex;
|
|
4367
|
+
flex-direction: row;
|
|
4368
|
+
justify-content: center;
|
|
4369
|
+
align-items: flex-start;
|
|
4370
|
+
.ant-btn.ant-btn-link {
|
|
4371
|
+
height: 24px;
|
|
4372
|
+
}
|
|
4373
|
+
.ant-btn.ant-btn-link[disabled] {
|
|
4374
|
+
color: $text-light-primary;
|
|
4375
|
+
opacity: 1;
|
|
4376
|
+
}
|
|
4377
|
+
}
|
|
4378
|
+
.upload-drag-text {
|
|
4379
|
+
margin-left: 8px;
|
|
4380
|
+
text-align: left;
|
|
4381
|
+
.ant-btn.ant-btn-link {
|
|
4382
|
+
height: 24px;
|
|
4383
|
+
}
|
|
4384
|
+
}
|
|
4526
4385
|
}
|
|
4527
|
-
.
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4386
|
+
&.has-file.single {
|
|
4387
|
+
padding: 12px;
|
|
4388
|
+
line-height: 24px;
|
|
4389
|
+
.ant-upload-drag-container {
|
|
4390
|
+
display: flex;
|
|
4391
|
+
flex-direction: row;
|
|
4392
|
+
align-items: flex-start;
|
|
4393
|
+
justify-content: space-between;
|
|
4394
|
+
line-height: 24px;
|
|
4395
|
+
word-break: break-all;
|
|
4396
|
+
.ant-btn.ant-btn-link {
|
|
4397
|
+
height: 24px;
|
|
4398
|
+
}
|
|
4535
4399
|
}
|
|
4536
|
-
flex-wrap: nowrap;
|
|
4537
|
-
justify-content: flex-start;
|
|
4538
|
-
background: $fills-light-opaque-1;
|
|
4539
|
-
font-size: 14px;
|
|
4540
|
-
color: $text-secondary-light;
|
|
4541
|
-
border-bottom: 1px solid $fills-light-trans-2;
|
|
4542
4400
|
}
|
|
4543
|
-
|
|
4544
|
-
|
|
4401
|
+
&.file-error.single {
|
|
4402
|
+
border-color: $strokes-light-serious;
|
|
4403
|
+
background: $fills-element-light-container-serious;
|
|
4545
4404
|
}
|
|
4546
|
-
|
|
4405
|
+
|
|
4406
|
+
.file-info {
|
|
4547
4407
|
display: flex;
|
|
4548
|
-
|
|
4408
|
+
cursor: default;
|
|
4549
4409
|
align-items: flex-start;
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
border: none;
|
|
4553
|
-
.row-description {
|
|
4554
|
-
flex-basis: 100%;
|
|
4555
|
-
margin: 12px 0 0;
|
|
4556
|
-
order: 99;
|
|
4557
|
-
color: $text-secondary-light;
|
|
4558
|
-
}
|
|
4559
|
-
.row-error-message {
|
|
4560
|
-
color: $text-light-serious;
|
|
4561
|
-
flex-basis: 100%;
|
|
4562
|
-
order: 98;
|
|
4563
|
-
margin: 12px 0 0;
|
|
4564
|
-
}
|
|
4565
|
-
&:hover {
|
|
4566
|
-
background-color: $fills-light-trans-1;
|
|
4410
|
+
.icon-wrapper {
|
|
4411
|
+
margin: 4px 0;
|
|
4567
4412
|
}
|
|
4568
|
-
|
|
4569
|
-
|
|
4413
|
+
.file-name {
|
|
4414
|
+
margin: 3px 4px;
|
|
4415
|
+
text-align: left;
|
|
4570
4416
|
}
|
|
4571
4417
|
}
|
|
4572
|
-
.eagle-table-form-cell {
|
|
4573
|
-
flex: 1 0 0;
|
|
4574
|
-
overflow: hidden;
|
|
4575
|
-
.cell-description {
|
|
4576
|
-
color: $text-secondary-light;
|
|
4577
|
-
margin: 0;
|
|
4578
|
-
}
|
|
4579
|
-
|
|
4580
|
-
@mixin text-align-style($align-position) {
|
|
4581
|
-
& > * {
|
|
4582
|
-
text-align: $align-position;
|
|
4583
|
-
}
|
|
4584
|
-
.ant-form-item-control-input-content {
|
|
4585
|
-
&,
|
|
4586
|
-
& > * {
|
|
4587
|
-
text-align: $align-position;
|
|
4588
|
-
}
|
|
4589
|
-
}
|
|
4590
|
-
}
|
|
4591
4418
|
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
&.align-left {
|
|
4596
|
-
@include text-align-style(left);
|
|
4597
|
-
}
|
|
4598
|
-
&.align-right {
|
|
4599
|
-
@include text-align-style(right);
|
|
4600
|
-
}
|
|
4601
|
-
|
|
4602
|
-
&:not(:last-of-type) {
|
|
4603
|
-
margin-right: 8px;
|
|
4604
|
-
}
|
|
4605
|
-
}
|
|
4606
|
-
.ant-list-item-action {
|
|
4607
|
-
padding: 4px;
|
|
4608
|
-
width: 24px;
|
|
4609
|
-
height: 24px;
|
|
4610
|
-
overflow: hidden;
|
|
4611
|
-
li {
|
|
4612
|
-
padding: 0;
|
|
4613
|
-
}
|
|
4419
|
+
&:not(.ant-upload-disabled):not(.file-error):hover {
|
|
4420
|
+
border-color: $strokes-light-outstanding;
|
|
4421
|
+
background: $fills-light-general-general-light;
|
|
4614
4422
|
}
|
|
4615
|
-
|
|
4616
|
-
cursor: not-allowed;
|
|
4423
|
+
&.ant-upload-disabled {
|
|
4617
4424
|
opacity: 0.5;
|
|
4618
4425
|
}
|
|
4619
|
-
&.
|
|
4620
|
-
|
|
4621
|
-
|
|
4426
|
+
&.ant-upload-disabled.reach-max-count {
|
|
4427
|
+
color: $text-light-tertiary;
|
|
4428
|
+
}
|
|
4429
|
+
}
|
|
4430
|
+
|
|
4431
|
+
.upload-error {
|
|
4432
|
+
margin-top: 8px;
|
|
4433
|
+
color: $text-light-serious;
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
.upload-file-info-list {
|
|
4437
|
+
gap: 4px;
|
|
4438
|
+
display: flex;
|
|
4439
|
+
flex-direction: column;
|
|
4440
|
+
}
|
|
4441
|
+
.upload-file-list {
|
|
4442
|
+
width: 100%;
|
|
4443
|
+
.upload-file-item {
|
|
4444
|
+
padding-bottom: 4px;
|
|
4445
|
+
&:not(:last-child) {
|
|
4446
|
+
border-bottom: 1px solid $strokes-light-trans-1;
|
|
4447
|
+
margin-bottom: 4px;
|
|
4622
4448
|
}
|
|
4623
|
-
.
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4449
|
+
.upload-file-info {
|
|
4450
|
+
display: flex;
|
|
4451
|
+
align-items: flex-start;
|
|
4452
|
+
.file-info {
|
|
4453
|
+
display: flex;
|
|
4454
|
+
align-items: flex-start;
|
|
4455
|
+
width: calc(100% - 25px);
|
|
4456
|
+
.validating {
|
|
4457
|
+
color: $text-light-tertiary;
|
|
4458
|
+
}
|
|
4459
|
+
.icon-wrapper {
|
|
4460
|
+
margin: 0 4px;
|
|
4461
|
+
}
|
|
4628
4462
|
}
|
|
4629
|
-
.
|
|
4630
|
-
|
|
4631
|
-
}
|
|
4632
|
-
|
|
4633
|
-
.ant-form-item-control-input {
|
|
4634
|
-
min-height: 24px;
|
|
4635
|
-
font-size: 12px;
|
|
4636
|
-
position: relative;
|
|
4463
|
+
.remove-button {
|
|
4464
|
+
margin-left: auto;
|
|
4637
4465
|
}
|
|
4638
4466
|
}
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
.eagle-table-form-row {
|
|
4643
|
-
border-bottom: 1px solid $fills-light-trans-2;
|
|
4644
|
-
}
|
|
4645
|
-
}
|
|
4646
|
-
&.row-split-by-zebraMarking {
|
|
4647
|
-
.draggable-container {
|
|
4648
|
-
& > :nth-child(2n) {
|
|
4649
|
-
background-color: $fills-trans-primary-light;
|
|
4467
|
+
.upload-file-error {
|
|
4468
|
+
color: $red;
|
|
4469
|
+
margin-left: 24px;
|
|
4650
4470
|
}
|
|
4651
4471
|
}
|
|
4652
4472
|
}
|
|
4653
4473
|
}
|
|
4654
4474
|
|
|
4655
|
-
.
|
|
4475
|
+
.E_ftdwz1g {
|
|
4656
4476
|
display: flex;
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4477
|
+
width: 100%;
|
|
4478
|
+
flex-direction: row;
|
|
4479
|
+
background: $fills-light-trans-1;
|
|
4480
|
+
padding: 7px 8px;
|
|
4481
|
+
border-radius: 4px;
|
|
4482
|
+
gap: 4px;
|
|
4483
|
+
align-items: self-start;
|
|
4484
|
+
color: $text-light-primary;
|
|
4660
4485
|
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4486
|
+
.file-size,
|
|
4487
|
+
.file-size-unit {
|
|
4488
|
+
color: $text-light-secondary;
|
|
4664
4489
|
}
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4490
|
+
.file-info {
|
|
4491
|
+
flex-grow: 1;
|
|
4492
|
+
overflow: hidden;
|
|
4493
|
+
}
|
|
4494
|
+
.icon-wrapper {
|
|
4495
|
+
margin-top: 2px;
|
|
4496
|
+
cursor: pointer;
|
|
4497
|
+
}
|
|
4498
|
+
.upload-file-error {
|
|
4499
|
+
color: $text-light-serious;
|
|
4500
|
+
}
|
|
4501
|
+
&.file-error-wrapper {
|
|
4502
|
+
background: $fills-element-light-container-serious;
|
|
4503
|
+
}
|
|
4504
|
+
&.disabled {
|
|
4505
|
+
opacity: 0.5;
|
|
4671
4506
|
}
|
|
4672
4507
|
}
|
|
4673
4508
|
|
|
4674
|
-
.E_d77i8u0 {
|
|
4675
|
-
width: 24px;
|
|
4676
|
-
height: 24px;
|
|
4677
|
-
padding: 4px;
|
|
4678
|
-
margin-right: 8px;
|
|
4679
|
-
}
|
|
4680
4509
|
|
|
4510
|
+
.E_c1kghdax {
|
|
4511
|
+
color: $text-primary-light;
|
|
4512
|
+
padding: 7px 12px;
|
|
4513
|
+
display: flex;
|
|
4514
|
+
justify-content: space-between;
|
|
4515
|
+
align-items: center;
|
|
4681
4516
|
|
|
4682
|
-
|
|
4683
|
-
padding:
|
|
4684
|
-
|
|
4517
|
+
&.has-arrow {
|
|
4518
|
+
padding-left: 10px;
|
|
4519
|
+
|
|
4520
|
+
.title-wrapper {
|
|
4521
|
+
cursor: pointer;
|
|
4522
|
+
color: $text-light-primary;
|
|
4523
|
+
|
|
4524
|
+
&.is-open {
|
|
4525
|
+
color: $text-primary-light;
|
|
4526
|
+
font-weight: 600;
|
|
4527
|
+
|
|
4528
|
+
.collapse-arrow {
|
|
4529
|
+
transform: rotate(90deg);
|
|
4530
|
+
}
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
}
|
|
4534
|
+
|
|
4535
|
+
.sub-info {
|
|
4536
|
+
font-size: 12px;
|
|
4537
|
+
line-height: 18px;
|
|
4685
4538
|
}
|
|
4686
4539
|
|
|
4687
|
-
.
|
|
4688
|
-
|
|
4689
|
-
|
|
4540
|
+
.title-wrapper {
|
|
4541
|
+
display: flex;
|
|
4542
|
+
align-items: center;
|
|
4543
|
+
user-select: none;
|
|
4544
|
+
flex-grow: 1;
|
|
4545
|
+
font-size: 12px;
|
|
4546
|
+
line-height: 18px;
|
|
4547
|
+
color: $text-primary-light;
|
|
4548
|
+
font-weight: 700;
|
|
4690
4549
|
}
|
|
4691
4550
|
|
|
4692
|
-
.
|
|
4693
|
-
|
|
4551
|
+
.collapse-arrow {
|
|
4552
|
+
transition: all 50ms ease-out 0ms;
|
|
4553
|
+
margin-right: 2px;
|
|
4554
|
+
}
|
|
4694
4555
|
}
|
|
4695
4556
|
|
|
4696
|
-
.E_i1vxv4ln {
|
|
4697
|
-
margin-right: 4px;
|
|
4698
|
-
height: 16px;
|
|
4699
|
-
}
|
|
4700
4557
|
|
|
4701
|
-
.
|
|
4702
|
-
|
|
4703
|
-
font-weight: 700;
|
|
4704
|
-
color: $text-neutral-primary;
|
|
4705
|
-
background-color: $fill-neutral-trans-1;
|
|
4706
|
-
border: 1px solid $stroke-neutral-trans-2;
|
|
4707
|
-
word-break: break-all;
|
|
4708
|
-
display: inline;
|
|
4709
|
-
white-space: normal;
|
|
4710
|
-
}
|
|
4558
|
+
.E_c1yd35n {
|
|
4559
|
+
padding: 0 12px 14px 12px;
|
|
4711
4560
|
}
|
|
4712
4561
|
|
|
4713
4562
|
|
|
@@ -4912,18 +4761,97 @@
|
|
|
4912
4761
|
}
|
|
4913
4762
|
|
|
4914
4763
|
|
|
4915
|
-
.
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
.
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4764
|
+
.E_b14q2gmw {
|
|
4765
|
+
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14),
|
|
4766
|
+
0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447),
|
|
4767
|
+
0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224),
|
|
4768
|
+
0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253),
|
|
4769
|
+
0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07),
|
|
4770
|
+
0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747),
|
|
4771
|
+
0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776),
|
|
4772
|
+
0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
4773
|
+
}
|
|
4774
|
+
|
|
4775
|
+
.E_c1eym6el {
|
|
4776
|
+
border-radius: 8px;
|
|
4777
|
+
background-color: white;
|
|
4778
|
+
&.hoverable {
|
|
4779
|
+
cursor: pointer;
|
|
4780
|
+
|
|
4781
|
+
&:hover {
|
|
4782
|
+
transition: all 200ms ease;
|
|
4783
|
+
box-shadow: 0px 9px 22px rgb(107 125 153 / 23%),
|
|
4784
|
+
0px 1.12694px 2.75474px rgb(107 125 153 / 12%);
|
|
4785
|
+
transform: translateY(-4px);
|
|
4922
4786
|
}
|
|
4923
4787
|
}
|
|
4924
4788
|
}
|
|
4925
4789
|
|
|
4926
4790
|
|
|
4791
|
+
.E_ckui4s7 {
|
|
4792
|
+
color: $text-primary-light;
|
|
4793
|
+
line-height: 22px;
|
|
4794
|
+
display: inline-flex;
|
|
4795
|
+
.ant-checkbox { height: 22px; display: flex; align-items: center; top: 0; } .ant-checkbox-checked::after { border: none; } &.ant-checkbox-wrapper:hover .ant-checkbox-inner, &.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner { border-color: $fills-light-general-general; } .ant-checkbox .ant-checkbox-inner { border: 1px solid $strokes-light-trans-4; } .ant-checkbox.ant-checkbox-checked, .ant-checkbox.ant-checkbox-indeterminate { .ant-checkbox-inner { border: 1px solid $fills-light-general-general; } } .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner { background: $fills-light-general-general; &:after { background-color: $white; height: 2px; width: 10px; border-radius: 2px; } } &.ant-checkbox-wrapper-disabled { opacity: 0.5; .ant-checkbox-disabled .ant-checkbox-inner { background: $fills-light-trans-3; border-color: $strokes-light-trans-4 !important; } .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after { border-color: $text-primary-light; } .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after { background: $text-primary-light; } } .ant-checkbox + span, .ant-checkbox-disabled + span { padding: 0; .main { display: inline-block; margin-left: 12px; color: $text-primary-light; } .sub { margin-left: 28px; color: $text-secondary-light; } } &.compact { .ant-checkbox + span, .ant-checkbox-disabled + span { .main { margin-left: 8px; } .sub { margin-left: 24px; } } }
|
|
4796
|
+
}
|
|
4797
|
+
|
|
4798
|
+
|
|
4799
|
+
.E_lht19u8 {
|
|
4800
|
+
width: 64px;
|
|
4801
|
+
height: 64px;
|
|
4802
|
+
display: flex;
|
|
4803
|
+
align-items: center;
|
|
4804
|
+
justify-content: center;
|
|
4805
|
+
position: relative;
|
|
4806
|
+
opacity: 0.2;
|
|
4807
|
+
}
|
|
4808
|
+
|
|
4809
|
+
.E_lk3gkp4 {
|
|
4810
|
+
position: absolute;
|
|
4811
|
+
width: 5px;
|
|
4812
|
+
height: 48px;
|
|
4813
|
+
left: 9.33px;
|
|
4814
|
+
top: 40.5px;
|
|
4815
|
+
|
|
4816
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4817
|
+
border-radius: 5px;
|
|
4818
|
+
transform: rotate(-128deg);
|
|
4819
|
+
transform-origin: top left;
|
|
4820
|
+
|
|
4821
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
.E_ll4n94n {
|
|
4825
|
+
position: absolute;
|
|
4826
|
+
width: 5px;
|
|
4827
|
+
height: 48px;
|
|
4828
|
+
left: 40.8px;
|
|
4829
|
+
top: 8.4px;
|
|
4830
|
+
|
|
4831
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4832
|
+
border-radius: 5px;
|
|
4833
|
+
transform: rotate(-8deg);
|
|
4834
|
+
transform-origin: top left;
|
|
4835
|
+
|
|
4836
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
4837
|
+
}
|
|
4838
|
+
|
|
4839
|
+
.E_l17lbdo6 {
|
|
4840
|
+
position: absolute;
|
|
4841
|
+
width: 5px;
|
|
4842
|
+
height: 48px;
|
|
4843
|
+
left: 52.9px;
|
|
4844
|
+
top: 51.8px;
|
|
4845
|
+
|
|
4846
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4847
|
+
border-radius: 5px;
|
|
4848
|
+
transform: rotate(112deg);
|
|
4849
|
+
transform-origin: top left;
|
|
4850
|
+
|
|
4851
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
|
|
4927
4855
|
.E_sjob3jg {
|
|
4928
4856
|
$item: ant-steps-item;
|
|
4929
4857
|
--item-min-width: 60px;
|
|
@@ -5145,14 +5073,157 @@
|
|
|
5145
5073
|
color: $gray-a75-8;
|
|
5146
5074
|
justify-content: center;
|
|
5147
5075
|
}
|
|
5148
|
-
}
|
|
5076
|
+
}
|
|
5077
|
+
|
|
5078
|
+
|
|
5079
|
+
.E_w7ob4th {
|
|
5080
|
+
&.outside-tag {
|
|
5081
|
+
padding-left: 0;
|
|
5082
|
+
.inside-tag {
|
|
5083
|
+
border-radius: 4px 0 0 4px;
|
|
5084
|
+
padding-right: 4px;
|
|
5085
|
+
margin-right: 4px;
|
|
5086
|
+
}
|
|
5087
|
+
}
|
|
5088
|
+
}
|
|
5089
|
+
|
|
5090
|
+
|
|
5091
|
+
.E_l1ucdodl {
|
|
5092
|
+
$prefix: ui-kit-status-legend;
|
|
5093
|
+
margin: 0;
|
|
5094
|
+
border-radius: 20px;
|
|
5095
|
+
padding: 2px 10px;
|
|
5096
|
+
height: 22px;
|
|
5097
|
+
display: flex;
|
|
5098
|
+
align-items: center;
|
|
5099
|
+
|
|
5100
|
+
&.ui-kit-status-legend.on-tint {
|
|
5101
|
+
color: $text-neutral-ontint;
|
|
5102
|
+
}
|
|
5103
|
+
&.tag-hover {
|
|
5104
|
+
cursor: pointer;
|
|
5105
|
+
}
|
|
5106
|
+
|
|
5107
|
+
&.#{$prefix} {
|
|
5108
|
+
color: $text-neutral-primary;
|
|
5109
|
+
.#{$prefix}-icon {
|
|
5110
|
+
margin-right: 6px;
|
|
5111
|
+
}
|
|
5112
|
+
.#{$prefix}-number {
|
|
5113
|
+
margin-left: 8px;
|
|
5114
|
+
color: #2C385299;
|
|
5115
|
+
&.#{$prefix}-number.on-tint {
|
|
5116
|
+
color: $text-neutral-ontint;
|
|
5117
|
+
}
|
|
5118
|
+
}
|
|
5119
|
+
&.eagle-legend-blue {
|
|
5120
|
+
.#{$prefix}-icon {
|
|
5121
|
+
background-color: $fill-outstanding-base;
|
|
5122
|
+
}
|
|
5123
|
+
}
|
|
5124
|
+
&.eagle-legend-red {
|
|
5125
|
+
.#{$prefix}-icon {
|
|
5126
|
+
background-color: $fill-serious-base;
|
|
5127
|
+
}
|
|
5128
|
+
}
|
|
5129
|
+
&.eagle-legend-yellow {
|
|
5130
|
+
.#{$prefix}-icon {
|
|
5131
|
+
background-color: $fill-notice-base;
|
|
5132
|
+
}
|
|
5133
|
+
}
|
|
5134
|
+
&.eagle-legend-green {
|
|
5135
|
+
.#{$prefix}-icon {
|
|
5136
|
+
background-color: $fill-positive-base;
|
|
5137
|
+
}
|
|
5138
|
+
}
|
|
5139
|
+
&.eagle-legend-gray {
|
|
5140
|
+
.#{$prefix}-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5141
|
+
background-color: $gray-70;
|
|
5142
|
+
}
|
|
5143
|
+
}
|
|
5144
|
+
&.eagle-legend-purple {
|
|
5145
|
+
.#{$prefix}-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5146
|
+
background-color: $purple-50;
|
|
5147
|
+
}
|
|
5148
|
+
}
|
|
5149
|
+
}
|
|
5150
|
+
}
|
|
5151
|
+
|
|
5152
|
+
.E_s1qj66nc {
|
|
5153
|
+
width: 8px;
|
|
5154
|
+
height: 8px;
|
|
5155
|
+
border-radius: 50%;
|
|
5156
|
+
display: inline-block;
|
|
5157
|
+
}
|
|
5158
|
+
|
|
5159
|
+
.E_s5x1boq {
|
|
5160
|
+
width: 8px;
|
|
5161
|
+
height: 8px;
|
|
5162
|
+
border-radius: 2px;
|
|
5163
|
+
display: inline-block;
|
|
5164
|
+
}
|
|
5165
|
+
|
|
5166
|
+
.E_c1xm185 {
|
|
5167
|
+
color: #2C385299;
|
|
5168
|
+
}
|
|
5169
|
+
|
|
5170
|
+
.E_c1x5l5qc {
|
|
5171
|
+
flex: 1;
|
|
5172
|
+
}
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
.E_r77hffu {
|
|
5176
|
+
display: flex;
|
|
5177
|
+
align-items: center;
|
|
5178
|
+
justify-content: space-between;
|
|
5179
|
+
column-gap: 6px;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5182
|
+
.E_p1cmxsf7 {
|
|
5183
|
+
display: flex;
|
|
5184
|
+
flex-direction: column;
|
|
5185
|
+
justify-content: center;
|
|
5186
|
+
row-gap: var(--p1cmxsf7-0);
|
|
5187
|
+
|
|
5188
|
+
.antd5-progress-line {
|
|
5189
|
+
font-size: 0;
|
|
5190
|
+
margin-bottom: unset;
|
|
5191
|
+
margin-inline-end: unset;
|
|
5192
|
+
}
|
|
5193
|
+
}
|
|
5194
|
+
|
|
5195
|
+
|
|
5196
|
+
.E_slr2ynn {
|
|
5197
|
+
padding: 0 8px;
|
|
5198
|
+
height: 18px;
|
|
5199
|
+
}
|
|
5200
|
+
|
|
5201
|
+
.E_m140wbb6 {
|
|
5202
|
+
padding: 2px 8px;
|
|
5203
|
+
height: 24px;
|
|
5204
|
+
}
|
|
5149
5205
|
|
|
5206
|
+
.E_t1fozc1i {
|
|
5207
|
+
margin: 0;
|
|
5208
|
+
}
|
|
5150
5209
|
|
|
5151
|
-
.
|
|
5210
|
+
.E_i1vxv4ln {
|
|
5152
5211
|
margin-right: 4px;
|
|
5153
5212
|
height: 16px;
|
|
5154
5213
|
}
|
|
5155
5214
|
|
|
5215
|
+
.E_n1afl31m {
|
|
5216
|
+
&.ant-tag.ant-tag-gray {
|
|
5217
|
+
font-weight: 700;
|
|
5218
|
+
color: $text-neutral-primary;
|
|
5219
|
+
background-color: $fill-neutral-trans-1;
|
|
5220
|
+
border: 1px solid $stroke-neutral-trans-2;
|
|
5221
|
+
word-break: break-all;
|
|
5222
|
+
display: inline;
|
|
5223
|
+
white-space: normal;
|
|
5224
|
+
}
|
|
5225
|
+
}
|
|
5226
|
+
|
|
5156
5227
|
|
|
5157
5228
|
.E_t13ef470 {
|
|
5158
5229
|
height: 100%;
|
|
@@ -5189,110 +5260,228 @@
|
|
|
5189
5260
|
}
|
|
5190
5261
|
|
|
5191
5262
|
|
|
5192
|
-
.
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
padding: 2px 10px;
|
|
5197
|
-
height: 22px;
|
|
5198
|
-
display: flex;
|
|
5199
|
-
align-items: center;
|
|
5263
|
+
.E_i1g85yz3 {
|
|
5264
|
+
margin-right: 4px;
|
|
5265
|
+
height: 16px;
|
|
5266
|
+
}
|
|
5200
5267
|
|
|
5201
|
-
|
|
5202
|
-
|
|
5268
|
+
|
|
5269
|
+
.E_t1dtlqs1 {
|
|
5270
|
+
margin-bottom: 4px;
|
|
5271
|
+
color: $text-secondary-light;
|
|
5272
|
+
}
|
|
5273
|
+
|
|
5274
|
+
.E_s1ese5oy {
|
|
5275
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5276
|
+
line-height: 32px;
|
|
5277
|
+
height: 32px;
|
|
5278
|
+
margin-bottom: 0;
|
|
5279
|
+
&.primary,
|
|
5280
|
+
&.info {
|
|
5281
|
+
color: $text-light-general;
|
|
5203
5282
|
}
|
|
5204
|
-
&.
|
|
5205
|
-
|
|
5283
|
+
&.warning {
|
|
5284
|
+
color: #ffa500;
|
|
5285
|
+
}
|
|
5286
|
+
&.success {
|
|
5287
|
+
color: $text-light-positive;
|
|
5288
|
+
}
|
|
5289
|
+
&.danger,
|
|
5290
|
+
&.error {
|
|
5291
|
+
color: $text-light-serious;
|
|
5292
|
+
}
|
|
5293
|
+
&.normal {
|
|
5294
|
+
color: $text-secondary-light;
|
|
5206
5295
|
}
|
|
5296
|
+
}
|
|
5207
5297
|
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5298
|
+
.E_b1ibis43 {
|
|
5299
|
+
margin-bottom: 0;
|
|
5300
|
+
color: $text-light-primary;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
.E_b11xxjd2 {
|
|
5304
|
+
line-height: 32px;
|
|
5305
|
+
margin-right: 6px;
|
|
5306
|
+
}
|
|
5307
|
+
|
|
5308
|
+
.E_bsub5bw {
|
|
5309
|
+
&.with-description {
|
|
5310
|
+
height: 24px;
|
|
5311
|
+
flex: 1;
|
|
5312
|
+
position: relative;
|
|
5313
|
+
top: -7px;
|
|
5314
|
+
}
|
|
5315
|
+
p {
|
|
5316
|
+
width: 100%;
|
|
5317
|
+
overflow: hidden;
|
|
5318
|
+
text-overflow: ellipsis;
|
|
5319
|
+
white-space: nowrap;
|
|
5320
|
+
}
|
|
5321
|
+
}
|
|
5322
|
+
|
|
5323
|
+
.E_tmoyoag {
|
|
5324
|
+
border: 1px solid $strokes-light-trans-2;
|
|
5325
|
+
border-radius: 8px;
|
|
5326
|
+
overflow: auto;
|
|
5327
|
+
.ant-list {
|
|
5328
|
+
position: relative;
|
|
5329
|
+
.ant-list-item:last-child {
|
|
5330
|
+
border-bottom: none;
|
|
5212
5331
|
}
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5332
|
+
.eagle-table-form-header {
|
|
5333
|
+
position: sticky;
|
|
5334
|
+
top: 0;
|
|
5335
|
+
z-index: $eagle-table-form-header-index;
|
|
5336
|
+
display: flex;
|
|
5337
|
+
padding: 8px;
|
|
5338
|
+
& {
|
|
5339
|
+
align-items: inherit;
|
|
5218
5340
|
}
|
|
5341
|
+
flex-wrap: nowrap;
|
|
5342
|
+
justify-content: flex-start;
|
|
5343
|
+
background: $fills-light-opaque-1;
|
|
5344
|
+
font-size: 14px;
|
|
5345
|
+
color: $text-secondary-light;
|
|
5346
|
+
border-bottom: 1px solid $fills-light-trans-2;
|
|
5219
5347
|
}
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
background-color: $fill-outstanding-base;
|
|
5223
|
-
}
|
|
5348
|
+
.eagle-table-form-header .eagle-table-form-cell > p {
|
|
5349
|
+
margin-bottom: 0;
|
|
5224
5350
|
}
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5351
|
+
.eagle-table-form-row {
|
|
5352
|
+
display: flex;
|
|
5353
|
+
justify-content: flex-start;
|
|
5354
|
+
align-items: flex-start;
|
|
5355
|
+
flex-wrap: wrap;
|
|
5356
|
+
padding: 8px;
|
|
5357
|
+
border: none;
|
|
5358
|
+
.row-description {
|
|
5359
|
+
flex-basis: 100%;
|
|
5360
|
+
margin: 12px 0 0;
|
|
5361
|
+
order: 99;
|
|
5362
|
+
color: $text-secondary-light;
|
|
5228
5363
|
}
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5364
|
+
.row-error-message {
|
|
5365
|
+
color: $text-light-serious;
|
|
5366
|
+
flex-basis: 100%;
|
|
5367
|
+
order: 98;
|
|
5368
|
+
margin: 12px 0 0;
|
|
5233
5369
|
}
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
.#{$prefix}-icon {
|
|
5237
|
-
background-color: $fill-positive-base;
|
|
5370
|
+
&:hover {
|
|
5371
|
+
background-color: $fills-light-trans-1;
|
|
5238
5372
|
}
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
.#{$prefix}-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5242
|
-
background-color: $gray-70;
|
|
5373
|
+
&.isDragging {
|
|
5374
|
+
background-color: $fills-light-general-general-light;
|
|
5243
5375
|
}
|
|
5244
5376
|
}
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5377
|
+
.eagle-table-form-cell {
|
|
5378
|
+
flex: 1 0 0;
|
|
5379
|
+
overflow: hidden;
|
|
5380
|
+
.cell-description {
|
|
5381
|
+
color: $text-secondary-light;
|
|
5382
|
+
margin: 0;
|
|
5248
5383
|
}
|
|
5249
|
-
}
|
|
5250
|
-
}
|
|
5251
|
-
}
|
|
5252
|
-
|
|
5253
|
-
.E_s1qj66nc {
|
|
5254
|
-
width: 8px;
|
|
5255
|
-
height: 8px;
|
|
5256
|
-
border-radius: 50%;
|
|
5257
|
-
display: inline-block;
|
|
5258
|
-
}
|
|
5259
5384
|
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5385
|
+
@mixin text-align-style($align-position) {
|
|
5386
|
+
& > * {
|
|
5387
|
+
text-align: $align-position;
|
|
5388
|
+
}
|
|
5389
|
+
.ant-form-item-control-input-content {
|
|
5390
|
+
&,
|
|
5391
|
+
& > * {
|
|
5392
|
+
text-align: $align-position;
|
|
5393
|
+
}
|
|
5394
|
+
}
|
|
5395
|
+
}
|
|
5266
5396
|
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5397
|
+
&.align-center {
|
|
5398
|
+
@include text-align-style(center);
|
|
5399
|
+
}
|
|
5400
|
+
&.align-left {
|
|
5401
|
+
@include text-align-style(left);
|
|
5402
|
+
}
|
|
5403
|
+
&.align-right {
|
|
5404
|
+
@include text-align-style(right);
|
|
5405
|
+
}
|
|
5270
5406
|
|
|
5271
|
-
|
|
5272
|
-
|
|
5407
|
+
&:not(:last-of-type) {
|
|
5408
|
+
margin-right: 8px;
|
|
5409
|
+
}
|
|
5410
|
+
}
|
|
5411
|
+
.ant-list-item-action {
|
|
5412
|
+
padding: 4px;
|
|
5413
|
+
width: 24px;
|
|
5414
|
+
height: 24px;
|
|
5415
|
+
overflow: hidden;
|
|
5416
|
+
li {
|
|
5417
|
+
padding: 0;
|
|
5418
|
+
}
|
|
5419
|
+
}
|
|
5420
|
+
.delete-row-icon.disabled {
|
|
5421
|
+
cursor: not-allowed;
|
|
5422
|
+
opacity: 0.5;
|
|
5423
|
+
}
|
|
5424
|
+
&.size-default {
|
|
5425
|
+
.ant-list-item-action {
|
|
5426
|
+
margin: 0;
|
|
5427
|
+
}
|
|
5428
|
+
.eagle-table-form-cell {
|
|
5429
|
+
.ant-input,
|
|
5430
|
+
.ant-select-selector {
|
|
5431
|
+
border-radius: 5px;
|
|
5432
|
+
font-size: 12px;
|
|
5433
|
+
}
|
|
5434
|
+
.ant-input-affix-wrapper {
|
|
5435
|
+
font-size: inherit;
|
|
5273
5436
|
}
|
|
5274
5437
|
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
|
|
5438
|
+
.ant-form-item-control-input {
|
|
5439
|
+
min-height: 24px;
|
|
5440
|
+
font-size: 12px;
|
|
5441
|
+
position: relative;
|
|
5442
|
+
}
|
|
5443
|
+
}
|
|
5444
|
+
}
|
|
5445
|
+
}
|
|
5446
|
+
&.row-split-by-border {
|
|
5447
|
+
.eagle-table-form-row {
|
|
5448
|
+
border-bottom: 1px solid $fills-light-trans-2;
|
|
5449
|
+
}
|
|
5450
|
+
}
|
|
5451
|
+
&.row-split-by-zebraMarking {
|
|
5452
|
+
.draggable-container {
|
|
5453
|
+
& > :nth-child(2n) {
|
|
5454
|
+
background-color: $fills-trans-primary-light;
|
|
5455
|
+
}
|
|
5456
|
+
}
|
|
5457
|
+
}
|
|
5281
5458
|
}
|
|
5282
5459
|
|
|
5283
|
-
.
|
|
5460
|
+
.E_a138syjm {
|
|
5284
5461
|
display: flex;
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
row-gap: var(--p1cmxsf7-0);
|
|
5462
|
+
align-items: center;
|
|
5463
|
+
gap: 8px;
|
|
5288
5464
|
|
|
5289
|
-
.
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5465
|
+
button.ant-btn {
|
|
5466
|
+
padding: 2px 8px;
|
|
5467
|
+
height: 24px;
|
|
5468
|
+
}
|
|
5469
|
+
& > span.maximum-desc {
|
|
5470
|
+
display: none;
|
|
5471
|
+
color: $text-secondary-light;
|
|
5472
|
+
&.disabled {
|
|
5473
|
+
display: inline;
|
|
5474
|
+
}
|
|
5293
5475
|
}
|
|
5294
5476
|
}
|
|
5295
5477
|
|
|
5478
|
+
.E_d77i8u0 {
|
|
5479
|
+
width: 24px;
|
|
5480
|
+
height: 24px;
|
|
5481
|
+
padding: 4px;
|
|
5482
|
+
margin-right: 8px;
|
|
5483
|
+
}
|
|
5484
|
+
|
|
5296
5485
|
|
|
5297
5486
|
.E_m11nzl2x {
|
|
5298
5487
|
color: $text-light-secondary;
|
|
@@ -5741,11 +5930,6 @@
|
|
|
5741
5930
|
}
|
|
5742
5931
|
|
|
5743
5932
|
|
|
5744
|
-
.E_b1jaupqb {
|
|
5745
|
-
color: #F0483E;
|
|
5746
|
-
}
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
5933
|
.E_t59qhqp {
|
|
5750
5934
|
padding: 0px;
|
|
5751
5935
|
padding-top: 5px;
|
|
@@ -5801,6 +5985,11 @@
|
|
|
5801
5985
|
}
|
|
5802
5986
|
|
|
5803
5987
|
|
|
5988
|
+
.E_b1jaupqb {
|
|
5989
|
+
color: #F0483E;
|
|
5990
|
+
}
|
|
5991
|
+
|
|
5992
|
+
|
|
5804
5993
|
.E_icab5o7 {
|
|
5805
5994
|
--modal-to-viewport-margin: 10px;
|
|
5806
5995
|
--modal-body-padding-bottom: 40px;
|
|
@@ -6286,11 +6475,6 @@
|
|
|
6286
6475
|
}
|
|
6287
6476
|
|
|
6288
6477
|
|
|
6289
|
-
.E_t1616y1o {
|
|
6290
|
-
color: $text-light-on-tint;
|
|
6291
|
-
}
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
6478
|
.E_t1gvlxt5 {
|
|
6295
6479
|
min-width: 0;
|
|
6296
6480
|
flex: 1;
|
|
@@ -6315,6 +6499,11 @@
|
|
|
6315
6499
|
}
|
|
6316
6500
|
|
|
6317
6501
|
|
|
6502
|
+
.E_t1616y1o {
|
|
6503
|
+
color: $text-light-on-tint;
|
|
6504
|
+
}
|
|
6505
|
+
|
|
6506
|
+
|
|
6318
6507
|
.E_f16blduf {
|
|
6319
6508
|
&.ant-form-item {
|
|
6320
6509
|
margin-bottom: 0;
|
|
@@ -6402,15 +6591,17 @@
|
|
|
6402
6591
|
}
|
|
6403
6592
|
|
|
6404
6593
|
|
|
6405
|
-
.
|
|
6406
|
-
|
|
6407
|
-
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6594
|
+
.E_skwah65 {
|
|
6595
|
+
height: 8px;
|
|
6596
|
+
box-sizing: border-box;
|
|
6597
|
+
border-radius: 2px;
|
|
6598
|
+
background: #f5f7fa;
|
|
6599
|
+
display: flex;
|
|
6600
|
+
width: 100%;
|
|
6601
|
+
overflow: hidden;
|
|
6411
6602
|
|
|
6412
|
-
|
|
6413
|
-
|
|
6603
|
+
.stack-bar-item + .stack-bar-item {
|
|
6604
|
+
margin-left: 1px;
|
|
6414
6605
|
}
|
|
6415
6606
|
}
|
|
6416
6607
|
|
|
@@ -6470,197 +6661,186 @@
|
|
|
6470
6661
|
}
|
|
6471
6662
|
|
|
6472
6663
|
|
|
6473
|
-
.
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6664
|
+
.E_s1ebs0ra {
|
|
6665
|
+
display: flex;
|
|
6666
|
+
align-items: center;
|
|
6667
|
+
justify-content: space-between;
|
|
6668
|
+
background: $backgrounds-light-grouped;
|
|
6669
|
+
padding: 8px 12px;
|
|
6670
|
+
position: sticky;
|
|
6671
|
+
top: 0;
|
|
6672
|
+
z-index: 1;
|
|
6673
|
+
margin-bottom: -52px;
|
|
6481
6674
|
|
|
6482
|
-
.
|
|
6483
|
-
.enabled-switch {
|
|
6675
|
+
.select-total {
|
|
6484
6676
|
display: flex;
|
|
6485
6677
|
align-items: center;
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
.enabled-text {
|
|
6489
|
-
margin-right: 8px;
|
|
6490
|
-
}
|
|
6491
|
-
}
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
.E_t1sqg15u {
|
|
6495
|
-
background: white;
|
|
6678
|
+
font-weight: 700;
|
|
6679
|
+
flex-shrink: 0;
|
|
6496
6680
|
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6681
|
+
.icon-wrapper {
|
|
6682
|
+
cursor: pointer;
|
|
6683
|
+
margin-left: 8px;
|
|
6684
|
+
width: 32px;
|
|
6685
|
+
height: 32px;
|
|
6686
|
+
border-radius: 50%;
|
|
6687
|
+
justify-content: center;
|
|
6500
6688
|
|
|
6501
|
-
|
|
6502
|
-
|
|
6689
|
+
&:hover {
|
|
6690
|
+
background: $fills-light-trans-2;
|
|
6503
6691
|
}
|
|
6504
6692
|
}
|
|
6505
6693
|
}
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6694
|
+
.action-group {
|
|
6695
|
+
flex: 1;
|
|
6696
|
+
margin-left: 88px;
|
|
6697
|
+
white-space: nowrap;
|
|
6698
|
+
text-align: right;
|
|
6699
|
+
position: relative;
|
|
6700
|
+
padding: 4px 0;
|
|
6701
|
+
margin-top: -4px;
|
|
6702
|
+
overflow: hidden;
|
|
6703
|
+
.sub-menu-delete {
|
|
6704
|
+
transform: translateY(-4px);
|
|
6514
6705
|
}
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
border-top: 1px solid $strokes-light-trans-1;
|
|
6706
|
+
button {
|
|
6707
|
+
border: none;
|
|
6518
6708
|
}
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
padding-bottom: 0;
|
|
6709
|
+
> *:not(:last-child) {
|
|
6710
|
+
margin-right: 8px;
|
|
6522
6711
|
}
|
|
6523
|
-
}
|
|
6524
6712
|
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
text-align: right;
|
|
6713
|
+
> button:last-child {
|
|
6714
|
+
margin-right: 4px;
|
|
6528
6715
|
}
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6716
|
+
.more-btn {
|
|
6717
|
+
cursor: pointer;
|
|
6718
|
+
width: 32px;
|
|
6719
|
+
height: 32px;
|
|
6720
|
+
justify-content: center;
|
|
6721
|
+
border-radius: 50%;
|
|
6533
6722
|
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
text-overflow: ellipsis;
|
|
6723
|
+
&:hover {
|
|
6724
|
+
background: $white;
|
|
6725
|
+
}
|
|
6538
6726
|
}
|
|
6539
6727
|
}
|
|
6540
6728
|
}
|
|
6541
6729
|
|
|
6542
|
-
.
|
|
6543
|
-
display: flex;
|
|
6544
|
-
justify-content: space-between;
|
|
6730
|
+
.E_mzzncgx {
|
|
6731
|
+
display: inline-flex;
|
|
6545
6732
|
align-items: center;
|
|
6546
|
-
|
|
6547
|
-
min-height: 32px;
|
|
6548
|
-
|
|
6549
|
-
.table-title {
|
|
6550
|
-
color: $text-secondary-light;
|
|
6551
|
-
font-weight: 600;
|
|
6552
|
-
font-size: 12px;
|
|
6553
|
-
line-height: 8px;
|
|
6554
|
-
}
|
|
6555
|
-
|
|
6556
|
-
.edit-icon {
|
|
6557
|
-
font-size: 16px;
|
|
6558
|
-
color: $strokes-translucent-2-light;
|
|
6559
|
-
cursor: pointer;
|
|
6560
|
-
}
|
|
6561
|
-
}
|
|
6562
|
-
|
|
6563
|
-
.E_t1s7goww {
|
|
6564
|
-
font-size: 12px;
|
|
6565
|
-
line-height: 18px;
|
|
6733
|
+
gap: 4px;
|
|
6566
6734
|
}
|
|
6567
6735
|
|
|
6568
|
-
.E_t93e4cf {
|
|
6569
|
-
display: flex;
|
|
6570
|
-
padding: 8px 0;
|
|
6571
|
-
color: $text-primary-light;
|
|
6572
|
-
|
|
6573
|
-
.hidden {
|
|
6574
|
-
display: none;
|
|
6575
|
-
}
|
|
6576
6736
|
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6737
|
+
.E_clm1wy1 {
|
|
6738
|
+
width: 192px;
|
|
6739
|
+
height: 246px;
|
|
6740
|
+
border-radius: 4px;
|
|
6580
6741
|
|
|
6581
|
-
.
|
|
6582
|
-
|
|
6583
|
-
overflow-x: auto;
|
|
6742
|
+
> .ant-picker-calendar,
|
|
6743
|
+
> .ant-picker-calendar .ant-picker-panel {
|
|
6584
6744
|
width: 100%;
|
|
6585
|
-
|
|
6745
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
6746
|
+
border-top: none;
|
|
6586
6747
|
|
|
6587
|
-
.ant-
|
|
6588
|
-
|
|
6589
|
-
text-align: left;
|
|
6748
|
+
.ant-picker-body {
|
|
6749
|
+
padding: 0 16px;
|
|
6590
6750
|
}
|
|
6591
6751
|
|
|
6592
|
-
.
|
|
6593
|
-
|
|
6752
|
+
.ant-picker-content {
|
|
6753
|
+
width: 100%;
|
|
6754
|
+
height: 180px;
|
|
6755
|
+
border-spacing: 0;
|
|
6756
|
+
|
|
6757
|
+
thead {
|
|
6758
|
+
margin-bottom: 8px;
|
|
6759
|
+
}
|
|
6760
|
+
th {
|
|
6761
|
+
width: 22px;
|
|
6762
|
+
}
|
|
6763
|
+
td {
|
|
6764
|
+
padding: 0;
|
|
6765
|
+
}
|
|
6594
6766
|
}
|
|
6595
6767
|
}
|
|
6768
|
+
|
|
6769
|
+
.ant-picker-cell {
|
|
6770
|
+
color: rgba(62, 70, 82, 0.6);
|
|
6771
|
+
opacity: 0.4;
|
|
6772
|
+
}
|
|
6773
|
+
.ant-picker-cell-in-view {
|
|
6774
|
+
color: rgba(62, 70, 82, 0.6);
|
|
6775
|
+
opacity: 1;
|
|
6776
|
+
}
|
|
6777
|
+
.ant-picker-cell-in-view > .active {
|
|
6778
|
+
color: #3e4652;
|
|
6779
|
+
}
|
|
6780
|
+
|
|
6781
|
+
.ant-picker-cell::before {
|
|
6782
|
+
pointer-events: none;
|
|
6783
|
+
}
|
|
6596
6784
|
}
|
|
6597
6785
|
|
|
6598
|
-
.
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
padding
|
|
6786
|
+
.E_t1tsm00v {
|
|
6787
|
+
color: rgba(129, 138, 153, 0.6);
|
|
6788
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
6789
|
+
backdrop-filter: blur(10px);
|
|
6790
|
+
padding: 7px 10px;
|
|
6603
6791
|
}
|
|
6604
6792
|
|
|
6605
|
-
|
|
6606
|
-
.
|
|
6793
|
+
.E_c167wnad {
|
|
6794
|
+
color: rgba(62, 70, 82, 0.6);
|
|
6607
6795
|
display: flex;
|
|
6796
|
+
justify-content: space-between;
|
|
6608
6797
|
align-items: center;
|
|
6609
|
-
|
|
6610
|
-
line-height: 18px;
|
|
6798
|
+
padding: 8px 16px;
|
|
6611
6799
|
|
|
6612
|
-
|
|
6613
|
-
|
|
6800
|
+
.anticon {
|
|
6801
|
+
cursor: pointer;
|
|
6802
|
+
&:hover {
|
|
6803
|
+
color: $blue;
|
|
6804
|
+
}
|
|
6614
6805
|
}
|
|
6615
6806
|
}
|
|
6616
6807
|
|
|
6617
|
-
.
|
|
6618
|
-
|
|
6619
|
-
}
|
|
6620
|
-
|
|
6621
|
-
.E_tcckoz1 {
|
|
6622
|
-
max-height: 400px;
|
|
6623
|
-
overflow: auto;
|
|
6624
|
-
}
|
|
6625
|
-
|
|
6808
|
+
.E_cxhf7dh {
|
|
6809
|
+
text-align: center;
|
|
6626
6810
|
|
|
6627
|
-
.
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
|
|
6811
|
+
.dots {
|
|
6812
|
+
display: flex;
|
|
6813
|
+
justify-content: center;
|
|
6814
|
+
}
|
|
6815
|
+
.dot {
|
|
6816
|
+
display: inline-block;
|
|
6817
|
+
width: 2px;
|
|
6818
|
+
height: 2px;
|
|
6819
|
+
border-radius: 1px;
|
|
6820
|
+
background: $blue;
|
|
6635
6821
|
|
|
6636
|
-
|
|
6637
|
-
|
|
6822
|
+
&:not(:last-child) {
|
|
6823
|
+
margin-right: 2px;
|
|
6824
|
+
}
|
|
6825
|
+
}
|
|
6826
|
+
.bar {
|
|
6827
|
+
width: 9px;
|
|
6828
|
+
height: 2px;
|
|
6829
|
+
background: $blue;
|
|
6830
|
+
border-radius: 2px;
|
|
6638
6831
|
}
|
|
6639
6832
|
}
|
|
6640
6833
|
|
|
6641
6834
|
|
|
6642
|
-
.
|
|
6643
|
-
|
|
6644
|
-
align-items: center;
|
|
6645
|
-
justify-content: flex-end;
|
|
6646
|
-
}
|
|
6647
|
-
|
|
6648
|
-
.E_b1ctd5xy {
|
|
6649
|
-
display: flex;
|
|
6650
|
-
align-items: center;
|
|
6651
|
-
width: calc(100% - 40px);
|
|
6835
|
+
.E_gmyahx3 {
|
|
6836
|
+
cursor: pointer;
|
|
6652
6837
|
|
|
6653
|
-
.
|
|
6654
|
-
|
|
6655
|
-
width: 100%;
|
|
6838
|
+
.link-text {
|
|
6839
|
+
color: $text-light-tertiary;
|
|
6656
6840
|
}
|
|
6657
|
-
}
|
|
6658
|
-
|
|
6659
|
-
.E_u1p8acpn {
|
|
6660
|
-
min-width: 40px;
|
|
6661
6841
|
|
|
6662
|
-
.
|
|
6663
|
-
color: $text-light-
|
|
6842
|
+
&:hover .link-text {
|
|
6843
|
+
color: $text-light-general;
|
|
6664
6844
|
}
|
|
6665
6845
|
}
|
|
6666
6846
|
|
|
@@ -6768,235 +6948,94 @@
|
|
|
6768
6948
|
|
|
6769
6949
|
&.active {
|
|
6770
6950
|
background: rgba(0, 128, 255, 0.1);
|
|
6771
|
-
color: $blue;
|
|
6772
|
-
}
|
|
6773
|
-
}
|
|
6774
|
-
|
|
6775
|
-
padding-bottom: 4px;
|
|
6776
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
6777
|
-
}
|
|
6778
|
-
|
|
6779
|
-
.E_wpbf4pq {
|
|
6780
|
-
padding: 10px 0;
|
|
6781
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
6782
|
-
|
|
6783
|
-
.ant-input,
|
|
6784
|
-
.ant-picker {
|
|
6785
|
-
width: 80px;
|
|
6786
|
-
margin: 0 9px;
|
|
6787
|
-
text-align: center;
|
|
6788
|
-
}
|
|
6789
|
-
|
|
6790
|
-
.options {
|
|
6791
|
-
padding: 12px 0 12px 16px;
|
|
6792
|
-
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
6793
|
-
margin: 5px 0 5px 8px;
|
|
6794
|
-
}
|
|
6795
|
-
.week-day-option,
|
|
6796
|
-
.month-day-option {
|
|
6797
|
-
background: #f5f7fa;
|
|
6798
|
-
box-sizing: border-box;
|
|
6799
|
-
border-radius: 16px;
|
|
6800
|
-
margin-right: 8px;
|
|
6801
|
-
|
|
6802
|
-
&:focus {
|
|
6803
|
-
color: inherit;
|
|
6804
|
-
border-color: #d9d9d9;
|
|
6805
|
-
}
|
|
6806
|
-
}
|
|
6807
|
-
.week-day-option {
|
|
6808
|
-
&.active {
|
|
6809
|
-
background-color: $blue;
|
|
6810
|
-
border-color: $blue;
|
|
6811
|
-
color: $white;
|
|
6812
|
-
}
|
|
6813
|
-
&.en-text {
|
|
6814
|
-
width: 110px;
|
|
6815
|
-
margin-top: 4px;
|
|
6816
|
-
}
|
|
6817
|
-
}
|
|
6818
|
-
.month-day-option {
|
|
6819
|
-
width: 32px;
|
|
6820
|
-
padding: 0;
|
|
6821
|
-
margin-bottom: 8px;
|
|
6822
|
-
|
|
6823
|
-
&.active {
|
|
6824
|
-
background-color: $blue;
|
|
6825
|
-
border-color: $blue;
|
|
6826
|
-
color: $white;
|
|
6827
|
-
}
|
|
6828
|
-
}
|
|
6829
|
-
}
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
.E_s1ebs0ra {
|
|
6833
|
-
display: flex;
|
|
6834
|
-
align-items: center;
|
|
6835
|
-
justify-content: space-between;
|
|
6836
|
-
background: $backgrounds-light-grouped;
|
|
6837
|
-
padding: 8px 12px;
|
|
6838
|
-
position: sticky;
|
|
6839
|
-
top: 0;
|
|
6840
|
-
z-index: 1;
|
|
6841
|
-
margin-bottom: -52px;
|
|
6842
|
-
|
|
6843
|
-
.select-total {
|
|
6844
|
-
display: flex;
|
|
6845
|
-
align-items: center;
|
|
6846
|
-
font-weight: 700;
|
|
6847
|
-
flex-shrink: 0;
|
|
6848
|
-
|
|
6849
|
-
.icon-wrapper {
|
|
6850
|
-
cursor: pointer;
|
|
6851
|
-
margin-left: 8px;
|
|
6852
|
-
width: 32px;
|
|
6853
|
-
height: 32px;
|
|
6854
|
-
border-radius: 50%;
|
|
6855
|
-
justify-content: center;
|
|
6856
|
-
|
|
6857
|
-
&:hover {
|
|
6858
|
-
background: $fills-light-trans-2;
|
|
6859
|
-
}
|
|
6860
|
-
}
|
|
6861
|
-
}
|
|
6862
|
-
.action-group {
|
|
6863
|
-
flex: 1;
|
|
6864
|
-
margin-left: 88px;
|
|
6865
|
-
white-space: nowrap;
|
|
6866
|
-
text-align: right;
|
|
6867
|
-
position: relative;
|
|
6868
|
-
padding: 4px 0;
|
|
6869
|
-
margin-top: -4px;
|
|
6870
|
-
overflow: hidden;
|
|
6871
|
-
.sub-menu-delete {
|
|
6872
|
-
transform: translateY(-4px);
|
|
6873
|
-
}
|
|
6874
|
-
button {
|
|
6875
|
-
border: none;
|
|
6876
|
-
}
|
|
6877
|
-
> *:not(:last-child) {
|
|
6878
|
-
margin-right: 8px;
|
|
6879
|
-
}
|
|
6880
|
-
|
|
6881
|
-
> button:last-child {
|
|
6882
|
-
margin-right: 4px;
|
|
6883
|
-
}
|
|
6884
|
-
.more-btn {
|
|
6885
|
-
cursor: pointer;
|
|
6886
|
-
width: 32px;
|
|
6887
|
-
height: 32px;
|
|
6888
|
-
justify-content: center;
|
|
6889
|
-
border-radius: 50%;
|
|
6890
|
-
|
|
6891
|
-
&:hover {
|
|
6892
|
-
background: $white;
|
|
6893
|
-
}
|
|
6894
|
-
}
|
|
6895
|
-
}
|
|
6896
|
-
}
|
|
6897
|
-
|
|
6898
|
-
.E_mzzncgx {
|
|
6899
|
-
display: inline-flex;
|
|
6900
|
-
align-items: center;
|
|
6901
|
-
gap: 4px;
|
|
6902
|
-
}
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
.E_clm1wy1 {
|
|
6906
|
-
width: 192px;
|
|
6907
|
-
height: 246px;
|
|
6908
|
-
border-radius: 4px;
|
|
6909
|
-
|
|
6910
|
-
> .ant-picker-calendar,
|
|
6911
|
-
> .ant-picker-calendar .ant-picker-panel {
|
|
6912
|
-
width: 100%;
|
|
6913
|
-
background-color: rgba(245, 247, 250, 0.6);
|
|
6914
|
-
border-top: none;
|
|
6915
|
-
|
|
6916
|
-
.ant-picker-body {
|
|
6917
|
-
padding: 0 16px;
|
|
6918
|
-
}
|
|
6919
|
-
|
|
6920
|
-
.ant-picker-content {
|
|
6921
|
-
width: 100%;
|
|
6922
|
-
height: 180px;
|
|
6923
|
-
border-spacing: 0;
|
|
6924
|
-
|
|
6925
|
-
thead {
|
|
6926
|
-
margin-bottom: 8px;
|
|
6927
|
-
}
|
|
6928
|
-
th {
|
|
6929
|
-
width: 22px;
|
|
6930
|
-
}
|
|
6931
|
-
td {
|
|
6932
|
-
padding: 0;
|
|
6933
|
-
}
|
|
6951
|
+
color: $blue;
|
|
6934
6952
|
}
|
|
6935
6953
|
}
|
|
6936
6954
|
|
|
6937
|
-
|
|
6938
|
-
|
|
6939
|
-
|
|
6955
|
+
padding-bottom: 4px;
|
|
6956
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
6957
|
+
}
|
|
6958
|
+
|
|
6959
|
+
.E_wpbf4pq {
|
|
6960
|
+
padding: 10px 0;
|
|
6961
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
6962
|
+
|
|
6963
|
+
.ant-input,
|
|
6964
|
+
.ant-picker {
|
|
6965
|
+
width: 80px;
|
|
6966
|
+
margin: 0 9px;
|
|
6967
|
+
text-align: center;
|
|
6940
6968
|
}
|
|
6941
|
-
|
|
6942
|
-
|
|
6943
|
-
|
|
6969
|
+
|
|
6970
|
+
.options {
|
|
6971
|
+
padding: 12px 0 12px 16px;
|
|
6972
|
+
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
6973
|
+
margin: 5px 0 5px 8px;
|
|
6944
6974
|
}
|
|
6945
|
-
.
|
|
6946
|
-
|
|
6975
|
+
.week-day-option,
|
|
6976
|
+
.month-day-option {
|
|
6977
|
+
background: #f5f7fa;
|
|
6978
|
+
box-sizing: border-box;
|
|
6979
|
+
border-radius: 16px;
|
|
6980
|
+
margin-right: 8px;
|
|
6981
|
+
|
|
6982
|
+
&:focus {
|
|
6983
|
+
color: inherit;
|
|
6984
|
+
border-color: #d9d9d9;
|
|
6985
|
+
}
|
|
6986
|
+
}
|
|
6987
|
+
.week-day-option {
|
|
6988
|
+
&.active {
|
|
6989
|
+
background-color: $blue;
|
|
6990
|
+
border-color: $blue;
|
|
6991
|
+
color: $white;
|
|
6992
|
+
}
|
|
6993
|
+
&.en-text {
|
|
6994
|
+
width: 110px;
|
|
6995
|
+
margin-top: 4px;
|
|
6996
|
+
}
|
|
6947
6997
|
}
|
|
6998
|
+
.month-day-option {
|
|
6999
|
+
width: 32px;
|
|
7000
|
+
padding: 0;
|
|
7001
|
+
margin-bottom: 8px;
|
|
6948
7002
|
|
|
6949
|
-
|
|
6950
|
-
|
|
7003
|
+
&.active {
|
|
7004
|
+
background-color: $blue;
|
|
7005
|
+
border-color: $blue;
|
|
7006
|
+
color: $white;
|
|
7007
|
+
}
|
|
6951
7008
|
}
|
|
6952
7009
|
}
|
|
6953
7010
|
|
|
6954
|
-
|
|
6955
|
-
|
|
6956
|
-
|
|
6957
|
-
|
|
6958
|
-
|
|
7011
|
+
|
|
7012
|
+
.E_tqjc4ui {
|
|
7013
|
+
@at-root {
|
|
7014
|
+
span#{&} {
|
|
7015
|
+
margin: 0 2px;
|
|
7016
|
+
}
|
|
7017
|
+
}
|
|
6959
7018
|
}
|
|
6960
7019
|
|
|
6961
|
-
|
|
6962
|
-
|
|
7020
|
+
|
|
7021
|
+
.E_n12mqh7z {
|
|
6963
7022
|
display: flex;
|
|
6964
|
-
justify-content: space-between;
|
|
6965
7023
|
align-items: center;
|
|
6966
|
-
|
|
7024
|
+
font-size: 12px;
|
|
7025
|
+
line-height: 18px;
|
|
6967
7026
|
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
&:hover {
|
|
6971
|
-
color: $blue;
|
|
6972
|
-
}
|
|
7027
|
+
&:not(:last-child) {
|
|
7028
|
+
margin-bottom: 4px;
|
|
6973
7029
|
}
|
|
6974
7030
|
}
|
|
6975
7031
|
|
|
6976
|
-
.
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
.dots {
|
|
6980
|
-
display: flex;
|
|
6981
|
-
justify-content: center;
|
|
6982
|
-
}
|
|
6983
|
-
.dot {
|
|
6984
|
-
display: inline-block;
|
|
6985
|
-
width: 2px;
|
|
6986
|
-
height: 2px;
|
|
6987
|
-
border-radius: 1px;
|
|
6988
|
-
background: $blue;
|
|
7032
|
+
.E_tf5bynu {
|
|
7033
|
+
margin: 0 3px;
|
|
7034
|
+
}
|
|
6989
7035
|
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
}
|
|
6994
|
-
.bar {
|
|
6995
|
-
width: 9px;
|
|
6996
|
-
height: 2px;
|
|
6997
|
-
background: $blue;
|
|
6998
|
-
border-radius: 2px;
|
|
6999
|
-
}
|
|
7036
|
+
.E_tcckoz1 {
|
|
7037
|
+
max-height: 400px;
|
|
7038
|
+
overflow: auto;
|
|
7000
7039
|
}
|
|
7001
7040
|
|
|
7002
7041
|
|
|
@@ -7030,163 +7069,117 @@
|
|
|
7030
7069
|
}
|
|
7031
7070
|
|
|
7032
7071
|
|
|
7033
|
-
.
|
|
7034
|
-
|
|
7035
|
-
background: $backgrounds-light-grouped;
|
|
7036
|
-
padding: 32px 8px;
|
|
7037
|
-
overflow: auto;
|
|
7038
|
-
}
|
|
7039
|
-
|
|
7040
|
-
.ant-layout-sider-children {
|
|
7041
|
-
display: flex;
|
|
7042
|
-
flex-direction: column;
|
|
7043
|
-
justify-content: space-between;
|
|
7044
|
-
}
|
|
7072
|
+
.E_t1sqg15u {
|
|
7073
|
+
background: white;
|
|
7045
7074
|
|
|
7046
|
-
|
|
7047
|
-
|
|
7048
|
-
|
|
7075
|
+
&.inline {
|
|
7076
|
+
.table-row {
|
|
7077
|
+
flex-direction: column;
|
|
7049
7078
|
|
|
7050
|
-
|
|
7051
|
-
|
|
7052
|
-
|
|
7053
|
-
color: $text-light-primary;
|
|
7054
|
-
width: 180px;
|
|
7055
|
-
overflow: hidden;
|
|
7056
|
-
text-overflow: ellipsis;
|
|
7079
|
+
> label {
|
|
7080
|
+
padding: 0 16px 7px 0;
|
|
7081
|
+
}
|
|
7057
7082
|
}
|
|
7058
7083
|
}
|
|
7059
7084
|
|
|
7060
|
-
|
|
7061
|
-
|
|
7062
|
-
|
|
7063
|
-
|
|
7064
|
-
.ant-menu-item {
|
|
7065
|
-
margin: 0;
|
|
7066
|
-
}
|
|
7067
|
-
.ant-menu-item-group-title {
|
|
7068
|
-
font-size: 12px;
|
|
7069
|
-
padding: 0 8px 4px;
|
|
7070
|
-
line-height: 18px;
|
|
7085
|
+
&.has-border {
|
|
7086
|
+
.table-header {
|
|
7087
|
+
border-bottom: 1px solid $strokes-light-trans-1;
|
|
7088
|
+
}
|
|
7071
7089
|
|
|
7072
|
-
|
|
7073
|
-
|
|
7074
|
-
}
|
|
7075
|
-
}
|
|
7076
|
-
&:not(:last-child) {
|
|
7077
|
-
padding-bottom: 24px;
|
|
7078
|
-
&.split {
|
|
7079
|
-
margin-bottom: 24px;
|
|
7080
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
7081
|
-
}
|
|
7082
|
-
}
|
|
7090
|
+
.hiddenBorder {
|
|
7091
|
+
border-top: none !important;
|
|
7083
7092
|
}
|
|
7084
7093
|
|
|
7085
|
-
.
|
|
7086
|
-
|
|
7087
|
-
|
|
7088
|
-
align-items: center;
|
|
7089
|
-
height: 32px;
|
|
7090
|
-
line-height: 22px;
|
|
7091
|
-
padding: 0 8px;
|
|
7094
|
+
.table-row + .table-row {
|
|
7095
|
+
border-top: 1px solid $strokes-light-trans-1;
|
|
7096
|
+
}
|
|
7092
7097
|
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
|
|
7098
|
+
.table-row:last-of-type {
|
|
7099
|
+
padding-bottom: 0;
|
|
7100
|
+
}
|
|
7101
|
+
}
|
|
7096
7102
|
|
|
7097
|
-
|
|
7098
|
-
|
|
7099
|
-
|
|
7100
|
-
}
|
|
7101
|
-
&.ant-menu-item-selected {
|
|
7102
|
-
background: $background-selected;
|
|
7103
|
-
box-shadow: $box-shadow-light-selected;
|
|
7104
|
-
border-radius: 6px;
|
|
7105
|
-
color: $text-light-on-tint;
|
|
7106
|
-
a {
|
|
7107
|
-
color: $text-light-on-tint;
|
|
7108
|
-
}
|
|
7109
|
-
}
|
|
7110
|
-
&:not(.ant-menu-item-selected) {
|
|
7111
|
-
&.ant-menu-item:hover,
|
|
7112
|
-
&.ant-menu-item-active {
|
|
7113
|
-
background: $background-onhover;
|
|
7114
|
-
box-shadow: $box-shadow-light-onhover;
|
|
7115
|
-
border-radius: 6px;
|
|
7116
|
-
}
|
|
7117
|
-
}
|
|
7103
|
+
&.align-right {
|
|
7104
|
+
.content {
|
|
7105
|
+
text-align: right;
|
|
7118
7106
|
}
|
|
7119
7107
|
}
|
|
7120
|
-
|
|
7108
|
+
.uuid-row {
|
|
7109
|
+
display: flex;
|
|
7110
|
+
justify-content: space-between;
|
|
7121
7111
|
|
|
7122
|
-
.
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
|
|
7112
|
+
.id-text {
|
|
7113
|
+
white-space: nowrap;
|
|
7114
|
+
overflow: hidden;
|
|
7115
|
+
text-overflow: ellipsis;
|
|
7116
|
+
}
|
|
7126
7117
|
}
|
|
7118
|
+
}
|
|
7127
7119
|
|
|
7128
|
-
|
|
7129
|
-
|
|
7130
|
-
|
|
7120
|
+
.E_t4zczcp {
|
|
7121
|
+
display: flex;
|
|
7122
|
+
justify-content: space-between;
|
|
7123
|
+
align-items: center;
|
|
7124
|
+
padding: 8px;
|
|
7125
|
+
min-height: 32px;
|
|
7131
7126
|
|
|
7132
|
-
|
|
7133
|
-
|
|
7134
|
-
|
|
7127
|
+
.table-title {
|
|
7128
|
+
color: $text-secondary-light;
|
|
7129
|
+
font-weight: 600;
|
|
7130
|
+
font-size: 12px;
|
|
7131
|
+
line-height: 8px;
|
|
7132
|
+
}
|
|
7135
7133
|
|
|
7136
|
-
|
|
7137
|
-
|
|
7138
|
-
|
|
7139
|
-
|
|
7134
|
+
.edit-icon {
|
|
7135
|
+
font-size: 16px;
|
|
7136
|
+
color: $strokes-translucent-2-light;
|
|
7137
|
+
cursor: pointer;
|
|
7140
7138
|
}
|
|
7141
7139
|
}
|
|
7142
7140
|
|
|
7143
|
-
.
|
|
7141
|
+
.E_t1s7goww {
|
|
7142
|
+
font-size: 12px;
|
|
7143
|
+
line-height: 18px;
|
|
7144
|
+
}
|
|
7145
|
+
|
|
7146
|
+
.E_t93e4cf {
|
|
7144
7147
|
display: flex;
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
&[disabled] {
|
|
7149
|
-
color: rgba(0, 0, 0, 0.25) !important;
|
|
7150
|
-
opacity: 1 !important;
|
|
7151
|
-
}
|
|
7148
|
+
padding: 8px 0;
|
|
7149
|
+
color: $text-primary-light;
|
|
7152
7150
|
|
|
7153
|
-
|
|
7154
|
-
|
|
7155
|
-
color: $text-light-primary;
|
|
7151
|
+
.hidden {
|
|
7152
|
+
display: none;
|
|
7156
7153
|
}
|
|
7157
7154
|
|
|
7158
|
-
.
|
|
7159
|
-
|
|
7155
|
+
.ant-btn.ant-btn-link {
|
|
7156
|
+
height: auto;
|
|
7160
7157
|
}
|
|
7161
7158
|
|
|
7162
|
-
.
|
|
7163
|
-
flex: 1;
|
|
7159
|
+
.content {
|
|
7164
7160
|
overflow: hidden;
|
|
7165
|
-
|
|
7166
|
-
|
|
7167
|
-
|
|
7168
|
-
}
|
|
7169
|
-
}
|
|
7170
|
-
|
|
7161
|
+
overflow-x: auto;
|
|
7162
|
+
width: 100%;
|
|
7163
|
+
white-space: pre-wrap;
|
|
7171
7164
|
|
|
7172
|
-
.
|
|
7173
|
-
|
|
7174
|
-
|
|
7175
|
-
&.link {
|
|
7176
|
-
cursor: pointer !important;
|
|
7177
|
-
&:hover {
|
|
7178
|
-
color: $text-colorful-outstanding;
|
|
7179
|
-
}
|
|
7180
|
-
}
|
|
7181
|
-
&.black {
|
|
7182
|
-
color: $text-neutral-primary;
|
|
7165
|
+
.ant-btn {
|
|
7166
|
+
white-space: pre-wrap;
|
|
7167
|
+
text-align: left;
|
|
7183
7168
|
}
|
|
7184
|
-
|
|
7185
|
-
|
|
7169
|
+
|
|
7170
|
+
.unit-chart {
|
|
7171
|
+
justify-content: flex-start;
|
|
7186
7172
|
}
|
|
7187
7173
|
}
|
|
7188
7174
|
}
|
|
7189
7175
|
|
|
7176
|
+
.E_rhz2uv5 {
|
|
7177
|
+
width: var(--rhz2uv5-0);
|
|
7178
|
+
flex-shrink: 0;
|
|
7179
|
+
color: $text-secondary-light;
|
|
7180
|
+
padding-right: 12px;
|
|
7181
|
+
}
|
|
7182
|
+
|
|
7190
7183
|
|
|
7191
7184
|
.E_t160l1cm {
|
|
7192
7185
|
display: flex;
|
|
@@ -7372,86 +7365,282 @@
|
|
|
7372
7365
|
}
|
|
7373
7366
|
}
|
|
7374
7367
|
|
|
7375
|
-
.tab-menu-item-light {
|
|
7376
|
-
&:hover,
|
|
7377
|
-
&:active {
|
|
7378
|
-
background: $white;
|
|
7379
|
-
}
|
|
7368
|
+
.tab-menu-item-light {
|
|
7369
|
+
&:hover,
|
|
7370
|
+
&:active {
|
|
7371
|
+
background: $white;
|
|
7372
|
+
}
|
|
7373
|
+
|
|
7374
|
+
&:active {
|
|
7375
|
+
color: $blue-80;
|
|
7376
|
+
}
|
|
7377
|
+
|
|
7378
|
+
&.tab-menu-item.tab-menu-item-selected {
|
|
7379
|
+
background: $white;
|
|
7380
|
+
color: $blue-100;
|
|
7381
|
+
}
|
|
7382
|
+
|
|
7383
|
+
&.tab-menu-item-group.tab-menu-item-selected {
|
|
7384
|
+
.main-title {
|
|
7385
|
+
color: rgba($gray-80, 0.6);
|
|
7386
|
+
}
|
|
7387
|
+
|
|
7388
|
+
.sub-title {
|
|
7389
|
+
color: $blue-100;
|
|
7390
|
+
}
|
|
7391
|
+
|
|
7392
|
+
.sub-title > .slash-arrow {
|
|
7393
|
+
fill: $fills-opaque-quaternary-light;
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
.sub-title > .expand-arrow path {
|
|
7397
|
+
fill: $blue-100;
|
|
7398
|
+
}
|
|
7399
|
+
}
|
|
7400
|
+
}
|
|
7401
|
+
|
|
7402
|
+
.tab-content {
|
|
7403
|
+
flex: 1;
|
|
7404
|
+
display: flex;
|
|
7405
|
+
flex-direction: column;
|
|
7406
|
+
}
|
|
7407
|
+
|
|
7408
|
+
/* FIXME:(yanzhen) do this better */
|
|
7409
|
+
&.is-overview .tab-content {
|
|
7410
|
+
overflow: visible;
|
|
7411
|
+
}
|
|
7412
|
+
}
|
|
7413
|
+
|
|
7414
|
+
.E_t14npdqr {
|
|
7415
|
+
max-width: 240px;
|
|
7416
|
+
animation: none;
|
|
7417
|
+
|
|
7418
|
+
&.ant-dropdown .ant-dropdown-menu {
|
|
7419
|
+
border: 1px solid $blue-60;
|
|
7420
|
+
padding: 0;
|
|
7421
|
+
|
|
7422
|
+
.ant-dropdown-menu-item {
|
|
7423
|
+
margin: 0;
|
|
7424
|
+
height: 32px;
|
|
7425
|
+
line-height: 32px;
|
|
7426
|
+
font-size: 13px;
|
|
7427
|
+
padding: 0 10px;
|
|
7428
|
+
display: block;
|
|
7429
|
+
overflow: hidden;
|
|
7430
|
+
text-overflow: ellipsis;
|
|
7431
|
+
white-space: nowrap;
|
|
7432
|
+
|
|
7433
|
+
&:not(:first-child) {
|
|
7434
|
+
&::before {
|
|
7435
|
+
content: " ";
|
|
7436
|
+
height: 1px;
|
|
7437
|
+
width: calc(100% + 10px);
|
|
7438
|
+
background: $strokes-translucent-1-light;
|
|
7439
|
+
display: block;
|
|
7440
|
+
}
|
|
7441
|
+
}
|
|
7442
|
+
|
|
7443
|
+
&.ant-dropdown-menu-item-selected {
|
|
7444
|
+
color: $blue-60;
|
|
7445
|
+
background: transparent;
|
|
7446
|
+
}
|
|
7447
|
+
}
|
|
7448
|
+
}
|
|
7449
|
+
}
|
|
7450
|
+
|
|
7451
|
+
|
|
7452
|
+
.E_u15heuvq {
|
|
7453
|
+
&.content {
|
|
7454
|
+
cursor: default !important;
|
|
7455
|
+
&.link {
|
|
7456
|
+
cursor: pointer !important;
|
|
7457
|
+
&:hover {
|
|
7458
|
+
color: $text-colorful-outstanding;
|
|
7459
|
+
}
|
|
7460
|
+
}
|
|
7461
|
+
&.black {
|
|
7462
|
+
color: $text-neutral-primary;
|
|
7463
|
+
}
|
|
7464
|
+
&.gray {
|
|
7465
|
+
color: $text-neutral-secondary;
|
|
7466
|
+
}
|
|
7467
|
+
}
|
|
7468
|
+
}
|
|
7469
|
+
|
|
7470
|
+
|
|
7471
|
+
.E_s1at6qmn {
|
|
7472
|
+
&.ant-layout-sider {
|
|
7473
|
+
background: $backgrounds-light-grouped;
|
|
7474
|
+
padding: 32px 8px;
|
|
7475
|
+
overflow: auto;
|
|
7476
|
+
}
|
|
7477
|
+
|
|
7478
|
+
.ant-layout-sider-children {
|
|
7479
|
+
display: flex;
|
|
7480
|
+
flex-direction: column;
|
|
7481
|
+
justify-content: space-between;
|
|
7482
|
+
}
|
|
7483
|
+
|
|
7484
|
+
footer {
|
|
7485
|
+
display: flex;
|
|
7486
|
+
}
|
|
7487
|
+
|
|
7488
|
+
.ant-menu {
|
|
7489
|
+
background: $backgrounds-light-grouped;
|
|
7490
|
+
a {
|
|
7491
|
+
color: $text-light-primary;
|
|
7492
|
+
width: 180px;
|
|
7493
|
+
overflow: hidden;
|
|
7494
|
+
text-overflow: ellipsis;
|
|
7495
|
+
}
|
|
7496
|
+
}
|
|
7497
|
+
|
|
7498
|
+
.ant-menu-vertical {
|
|
7499
|
+
margin-bottom: 24px;
|
|
7500
|
+
|
|
7501
|
+
.ant-menu-item-group {
|
|
7502
|
+
.ant-menu-item {
|
|
7503
|
+
margin: 0;
|
|
7504
|
+
}
|
|
7505
|
+
.ant-menu-item-group-title {
|
|
7506
|
+
font-size: 12px;
|
|
7507
|
+
padding: 0 8px 4px;
|
|
7508
|
+
line-height: 18px;
|
|
7509
|
+
|
|
7510
|
+
&:empty {
|
|
7511
|
+
padding: 0;
|
|
7512
|
+
}
|
|
7513
|
+
}
|
|
7514
|
+
&:not(:last-child) {
|
|
7515
|
+
padding-bottom: 24px;
|
|
7516
|
+
&.split {
|
|
7517
|
+
margin-bottom: 24px;
|
|
7518
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
7519
|
+
}
|
|
7520
|
+
}
|
|
7521
|
+
}
|
|
7522
|
+
|
|
7523
|
+
.ant-menu-item {
|
|
7524
|
+
transition: none;
|
|
7525
|
+
display: flex;
|
|
7526
|
+
align-items: center;
|
|
7527
|
+
height: 32px;
|
|
7528
|
+
line-height: 22px;
|
|
7529
|
+
padding: 0 8px;
|
|
7530
|
+
|
|
7531
|
+
> .icon-wrapper {
|
|
7532
|
+
margin-right: 12px;
|
|
7533
|
+
}
|
|
7534
|
+
|
|
7535
|
+
&:not(:last-child) {
|
|
7536
|
+
margin: 0;
|
|
7537
|
+
margin-bottom: 2px;
|
|
7538
|
+
}
|
|
7539
|
+
&.ant-menu-item-selected {
|
|
7540
|
+
background: $background-selected;
|
|
7541
|
+
box-shadow: $box-shadow-light-selected;
|
|
7542
|
+
border-radius: 6px;
|
|
7543
|
+
color: $text-light-on-tint;
|
|
7544
|
+
a {
|
|
7545
|
+
color: $text-light-on-tint;
|
|
7546
|
+
}
|
|
7547
|
+
}
|
|
7548
|
+
&:not(.ant-menu-item-selected) {
|
|
7549
|
+
&.ant-menu-item:hover,
|
|
7550
|
+
&.ant-menu-item-active {
|
|
7551
|
+
background: $background-onhover;
|
|
7552
|
+
box-shadow: $box-shadow-light-onhover;
|
|
7553
|
+
border-radius: 6px;
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7556
|
+
}
|
|
7557
|
+
}
|
|
7558
|
+
}
|
|
7559
|
+
|
|
7560
|
+
.E_s1wu0lms {
|
|
7561
|
+
.ant-menu-item-group-title {
|
|
7562
|
+
white-space: nowrap;
|
|
7563
|
+
transition: all 0s;
|
|
7564
|
+
}
|
|
7565
|
+
|
|
7566
|
+
&.shrink {
|
|
7567
|
+
transition: all 0s;
|
|
7568
|
+
overflow: hidden;
|
|
7380
7569
|
|
|
7381
|
-
|
|
7382
|
-
|
|
7570
|
+
.ant-menu-item-group-title {
|
|
7571
|
+
visibility: hidden;
|
|
7383
7572
|
}
|
|
7384
7573
|
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7574
|
+
.ant-menu-item {
|
|
7575
|
+
width: 36px;
|
|
7576
|
+
padding: 0 6px;
|
|
7388
7577
|
}
|
|
7578
|
+
}
|
|
7579
|
+
}
|
|
7389
7580
|
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7581
|
+
.E_n1ugzfva {
|
|
7582
|
+
display: flex;
|
|
7583
|
+
place-items: center;
|
|
7584
|
+
width: 100% !important;
|
|
7394
7585
|
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7586
|
+
&[disabled] {
|
|
7587
|
+
color: rgba(0, 0, 0, 0.25) !important;
|
|
7588
|
+
opacity: 1 !important;
|
|
7589
|
+
}
|
|
7398
7590
|
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7591
|
+
&.ant-btn {
|
|
7592
|
+
width: 100%;
|
|
7593
|
+
color: $text-light-primary;
|
|
7594
|
+
}
|
|
7402
7595
|
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
}
|
|
7406
|
-
}
|
|
7596
|
+
.icon-wrapper {
|
|
7597
|
+
margin-right: 12px;
|
|
7407
7598
|
}
|
|
7408
7599
|
|
|
7409
|
-
.
|
|
7600
|
+
.link-title {
|
|
7410
7601
|
flex: 1;
|
|
7602
|
+
overflow: hidden;
|
|
7603
|
+
white-space: nowrap;
|
|
7604
|
+
text-overflow: ellipsis;
|
|
7605
|
+
text-align: left;
|
|
7606
|
+
}
|
|
7607
|
+
}
|
|
7608
|
+
|
|
7609
|
+
|
|
7610
|
+
.E_s1iv0tp1 {
|
|
7611
|
+
.enabled-switch {
|
|
7411
7612
|
display: flex;
|
|
7412
|
-
|
|
7613
|
+
align-items: center;
|
|
7413
7614
|
}
|
|
7414
7615
|
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
overflow: visible;
|
|
7616
|
+
.enabled-text {
|
|
7617
|
+
margin-right: 8px;
|
|
7418
7618
|
}
|
|
7419
7619
|
}
|
|
7420
7620
|
|
|
7421
|
-
.E_t14npdqr {
|
|
7422
|
-
max-width: 240px;
|
|
7423
|
-
animation: none;
|
|
7424
7621
|
|
|
7425
|
-
|
|
7426
|
-
|
|
7427
|
-
|
|
7622
|
+
.E_wg1tsps {
|
|
7623
|
+
display: flex;
|
|
7624
|
+
align-items: center;
|
|
7625
|
+
justify-content: flex-end;
|
|
7626
|
+
}
|
|
7428
7627
|
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
|
|
7433
|
-
font-size: 13px;
|
|
7434
|
-
padding: 0 10px;
|
|
7435
|
-
display: block;
|
|
7436
|
-
overflow: hidden;
|
|
7437
|
-
text-overflow: ellipsis;
|
|
7438
|
-
white-space: nowrap;
|
|
7628
|
+
.E_b1ctd5xy {
|
|
7629
|
+
display: flex;
|
|
7630
|
+
align-items: center;
|
|
7631
|
+
width: calc(100% - 40px);
|
|
7439
7632
|
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
background: $strokes-translucent-1-light;
|
|
7446
|
-
display: block;
|
|
7447
|
-
}
|
|
7448
|
-
}
|
|
7633
|
+
.chart {
|
|
7634
|
+
display: inline-block;
|
|
7635
|
+
width: 100%;
|
|
7636
|
+
}
|
|
7637
|
+
}
|
|
7449
7638
|
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7639
|
+
.E_u1p8acpn {
|
|
7640
|
+
min-width: 40px;
|
|
7641
|
+
|
|
7642
|
+
.unit {
|
|
7643
|
+
color: $text-light-primary !important;
|
|
7455
7644
|
}
|
|
7456
7645
|
}
|
|
7457
7646
|
|
|
@@ -7534,6 +7723,13 @@
|
|
|
7534
7723
|
}
|
|
7535
7724
|
|
|
7536
7725
|
|
|
7726
|
+
.E_h1ol2wl7 {
|
|
7727
|
+
font-weight: bold;
|
|
7728
|
+
background-color: unset;
|
|
7729
|
+
padding: unset;
|
|
7730
|
+
}
|
|
7731
|
+
|
|
7732
|
+
|
|
7537
7733
|
.E_i5w779o {
|
|
7538
7734
|
padding: 8px 0;
|
|
7539
7735
|
|
|
@@ -7578,13 +7774,6 @@
|
|
|
7578
7774
|
}
|
|
7579
7775
|
|
|
7580
7776
|
|
|
7581
|
-
.E_h1ol2wl7 {
|
|
7582
|
-
font-weight: bold;
|
|
7583
|
-
background-color: unset;
|
|
7584
|
-
padding: unset;
|
|
7585
|
-
}
|
|
7586
|
-
|
|
7587
|
-
|
|
7588
7777
|
.E_kr6am0s {
|
|
7589
7778
|
.ant-modal-body {
|
|
7590
7779
|
padding: 60px 128px;
|
|
@@ -7677,57 +7866,6 @@
|
|
|
7677
7866
|
}
|
|
7678
7867
|
|
|
7679
7868
|
|
|
7680
|
-
.E_c14ouk5o {
|
|
7681
|
-
width: 100%;
|
|
7682
|
-
height: 100%;
|
|
7683
|
-
display: flex;
|
|
7684
|
-
font-size: 12px;
|
|
7685
|
-
line-height: 18px;
|
|
7686
|
-
padding: 8px 0;
|
|
7687
|
-
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
7688
|
-
|
|
7689
|
-
&:last-of-type {
|
|
7690
|
-
box-shadow: none;
|
|
7691
|
-
padding-bottom: 0;
|
|
7692
|
-
}
|
|
7693
|
-
&.collapsed {
|
|
7694
|
-
flex-direction: column;
|
|
7695
|
-
|
|
7696
|
-
.collapsed-content {
|
|
7697
|
-
display: flex;
|
|
7698
|
-
|
|
7699
|
-
> span {
|
|
7700
|
-
flex: 1;
|
|
7701
|
-
display: flex;
|
|
7702
|
-
justify-content: space-between;
|
|
7703
|
-
.ant-btn {
|
|
7704
|
-
height: auto;
|
|
7705
|
-
}
|
|
7706
|
-
}
|
|
7707
|
-
}
|
|
7708
|
-
.extra-content {
|
|
7709
|
-
margin-left: 162px;
|
|
7710
|
-
}
|
|
7711
|
-
}
|
|
7712
|
-
|
|
7713
|
-
.col-label {
|
|
7714
|
-
width: 216px;
|
|
7715
|
-
color: $text-secondary-light;
|
|
7716
|
-
margin-right: 12px;
|
|
7717
|
-
flex-shrink: 0;
|
|
7718
|
-
}
|
|
7719
|
-
|
|
7720
|
-
.col-content {
|
|
7721
|
-
color: $text-primary-light;
|
|
7722
|
-
|
|
7723
|
-
/* make btn link in info row have the same height as normal text */
|
|
7724
|
-
.ant-btn.ant-btn-link {
|
|
7725
|
-
height: auto;
|
|
7726
|
-
}
|
|
7727
|
-
}
|
|
7728
|
-
}
|
|
7729
|
-
|
|
7730
|
-
|
|
7731
7869
|
.E_c1kchka8 {
|
|
7732
7870
|
height: 100%;
|
|
7733
7871
|
width: 100%;
|
|
@@ -8327,6 +8465,67 @@
|
|
|
8327
8465
|
}
|
|
8328
8466
|
|
|
8329
8467
|
|
|
8468
|
+
.E_cevhqx7 {
|
|
8469
|
+
color: $text-light-primary;
|
|
8470
|
+
}
|
|
8471
|
+
|
|
8472
|
+
.E_snbqlt4 {
|
|
8473
|
+
margin-top: 8px;
|
|
8474
|
+
color: $text-light-secondary;
|
|
8475
|
+
}
|
|
8476
|
+
|
|
8477
|
+
|
|
8478
|
+
.E_c14ouk5o {
|
|
8479
|
+
width: 100%;
|
|
8480
|
+
height: 100%;
|
|
8481
|
+
display: flex;
|
|
8482
|
+
font-size: 12px;
|
|
8483
|
+
line-height: 18px;
|
|
8484
|
+
padding: 8px 0;
|
|
8485
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
8486
|
+
|
|
8487
|
+
&:last-of-type {
|
|
8488
|
+
box-shadow: none;
|
|
8489
|
+
padding-bottom: 0;
|
|
8490
|
+
}
|
|
8491
|
+
&.collapsed {
|
|
8492
|
+
flex-direction: column;
|
|
8493
|
+
|
|
8494
|
+
.collapsed-content {
|
|
8495
|
+
display: flex;
|
|
8496
|
+
|
|
8497
|
+
> span {
|
|
8498
|
+
flex: 1;
|
|
8499
|
+
display: flex;
|
|
8500
|
+
justify-content: space-between;
|
|
8501
|
+
.ant-btn {
|
|
8502
|
+
height: auto;
|
|
8503
|
+
}
|
|
8504
|
+
}
|
|
8505
|
+
}
|
|
8506
|
+
.extra-content {
|
|
8507
|
+
margin-left: 162px;
|
|
8508
|
+
}
|
|
8509
|
+
}
|
|
8510
|
+
|
|
8511
|
+
.col-label {
|
|
8512
|
+
width: 216px;
|
|
8513
|
+
color: $text-secondary-light;
|
|
8514
|
+
margin-right: 12px;
|
|
8515
|
+
flex-shrink: 0;
|
|
8516
|
+
}
|
|
8517
|
+
|
|
8518
|
+
.col-content {
|
|
8519
|
+
color: $text-primary-light;
|
|
8520
|
+
|
|
8521
|
+
/* make btn link in info row have the same height as normal text */
|
|
8522
|
+
.ant-btn.ant-btn-link {
|
|
8523
|
+
height: auto;
|
|
8524
|
+
}
|
|
8525
|
+
}
|
|
8526
|
+
}
|
|
8527
|
+
|
|
8528
|
+
|
|
8330
8529
|
.E_c1ss4prm {
|
|
8331
8530
|
color: $text-light-secondary;
|
|
8332
8531
|
&:is(ul, ol) {
|
|
@@ -8383,13 +8582,3 @@
|
|
|
8383
8582
|
margin: 16px 0;
|
|
8384
8583
|
}
|
|
8385
8584
|
|
|
8386
|
-
|
|
8387
|
-
.E_cevhqx7 {
|
|
8388
|
-
color: $text-light-primary;
|
|
8389
|
-
}
|
|
8390
|
-
|
|
8391
|
-
.E_snbqlt4 {
|
|
8392
|
-
margin-top: 8px;
|
|
8393
|
-
color: $text-light-secondary;
|
|
8394
|
-
}
|
|
8395
|
-
|