@cloudtower/eagle 0.31.16 → 0.31.17
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/Fields/FieldsEnum/index.js +1 -1
- package/dist/cjs/core/LegacySelect/index.js +185 -0
- package/dist/cjs/core/LegacySelect/select.style.js +5 -0
- package/dist/cjs/core/Select/index.js +106 -117
- package/dist/cjs/core/Select/select.style.js +11 -0
- package/dist/cjs/core/Select/select.widgets.js +63 -0
- package/dist/cjs/core/TimeZoneSelect/index.js +1 -1
- package/dist/cjs/core/index.js +9 -9
- package/dist/cjs/index.js +185 -181
- package/dist/cjs/legacy-antd.js +137 -135
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1582 -1399
- package/dist/esm/core/Fields/FieldsEnum/index.js +4 -4
- package/dist/esm/core/LegacySelect/index.js +177 -0
- package/dist/esm/core/LegacySelect/select.style.js +3 -0
- package/dist/esm/core/Select/index.js +104 -116
- package/dist/esm/core/Select/select.style.js +6 -0
- package/dist/esm/core/Select/select.widgets.js +57 -0
- package/dist/esm/core/TimeZoneSelect/index.js +2 -2
- package/dist/esm/index.js +5 -3
- package/dist/esm/legacy-antd.js +2 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/LegacySelect/index.d.ts +4 -0
- package/dist/src/core/LegacySelect/select.style.d.ts +1 -0
- package/dist/src/core/LegacySelect/select.type.d.ts +31 -0
- package/dist/src/core/Select/index.d.ts +1 -0
- package/dist/src/core/Select/select.style.d.ts +4 -0
- package/dist/src/core/Select/select.type.d.ts +6 -30
- package/dist/src/core/Select/select.widgets.d.ts +7 -0
- package/dist/src/core/index.d.ts +4 -2
- package/dist/src/spec/base.d.ts +2 -1
- package/dist/stories/docs/core/{Select.Simple.stories.d.ts → LegacySelect.Simple.stories.d.ts} +3 -3
- package/dist/stories/docs/core/LegacySelect.stories.d.ts +16 -0
- package/dist/style.css +1358 -1206
- package/package.json +4 -4
package/dist/components.css
CHANGED
|
@@ -29572,6 +29572,20 @@ html body {
|
|
|
29572
29572
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29573
29573
|
}
|
|
29574
29574
|
}
|
|
29575
|
+
.E_skwah65 {
|
|
29576
|
+
height: 8px;
|
|
29577
|
+
box-sizing: border-box;
|
|
29578
|
+
border-radius: 2px;
|
|
29579
|
+
background: #f5f7fa;
|
|
29580
|
+
display: flex;
|
|
29581
|
+
width: 100%;
|
|
29582
|
+
overflow: hidden;
|
|
29583
|
+
}
|
|
29584
|
+
|
|
29585
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
29586
|
+
margin-left: 1px;
|
|
29587
|
+
}
|
|
29588
|
+
|
|
29575
29589
|
.E_c18bcrac {
|
|
29576
29590
|
display: inline-block;
|
|
29577
29591
|
width: 100%;
|
|
@@ -29621,144 +29635,6 @@ html body {
|
|
|
29621
29635
|
margin-right: 4px;
|
|
29622
29636
|
}
|
|
29623
29637
|
|
|
29624
|
-
.E_s1ebs0ra {
|
|
29625
|
-
display: flex;
|
|
29626
|
-
align-items: center;
|
|
29627
|
-
justify-content: space-between;
|
|
29628
|
-
background: #edf0f7;
|
|
29629
|
-
padding: 8px 12px;
|
|
29630
|
-
position: sticky;
|
|
29631
|
-
top: 0;
|
|
29632
|
-
z-index: 1;
|
|
29633
|
-
margin-bottom: -52px;
|
|
29634
|
-
}
|
|
29635
|
-
|
|
29636
|
-
.E_s1ebs0ra .select-total {
|
|
29637
|
-
display: flex;
|
|
29638
|
-
align-items: center;
|
|
29639
|
-
font-weight: 700;
|
|
29640
|
-
flex-shrink: 0;
|
|
29641
|
-
}
|
|
29642
|
-
|
|
29643
|
-
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29644
|
-
cursor: pointer;
|
|
29645
|
-
margin-left: 8px;
|
|
29646
|
-
width: 32px;
|
|
29647
|
-
height: 32px;
|
|
29648
|
-
border-radius: 50%;
|
|
29649
|
-
justify-content: center;
|
|
29650
|
-
}
|
|
29651
|
-
|
|
29652
|
-
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29653
|
-
background: rgba(225, 230, 241, 0.6);
|
|
29654
|
-
}
|
|
29655
|
-
|
|
29656
|
-
.E_s1ebs0ra .action-group {
|
|
29657
|
-
flex: 1;
|
|
29658
|
-
margin-left: 88px;
|
|
29659
|
-
white-space: nowrap;
|
|
29660
|
-
text-align: right;
|
|
29661
|
-
position: relative;
|
|
29662
|
-
padding: 4px 0;
|
|
29663
|
-
margin-top: -4px;
|
|
29664
|
-
overflow: hidden;
|
|
29665
|
-
}
|
|
29666
|
-
|
|
29667
|
-
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29668
|
-
transform: translateY(-4px);
|
|
29669
|
-
}
|
|
29670
|
-
|
|
29671
|
-
.E_s1ebs0ra .action-group button {
|
|
29672
|
-
border: none;
|
|
29673
|
-
}
|
|
29674
|
-
|
|
29675
|
-
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29676
|
-
margin-right: 8px;
|
|
29677
|
-
}
|
|
29678
|
-
|
|
29679
|
-
.E_s1ebs0ra .action-group > button:last-child {
|
|
29680
|
-
margin-right: 4px;
|
|
29681
|
-
}
|
|
29682
|
-
|
|
29683
|
-
.E_s1ebs0ra .action-group .more-btn {
|
|
29684
|
-
cursor: pointer;
|
|
29685
|
-
width: 32px;
|
|
29686
|
-
height: 32px;
|
|
29687
|
-
justify-content: center;
|
|
29688
|
-
border-radius: 50%;
|
|
29689
|
-
}
|
|
29690
|
-
|
|
29691
|
-
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29692
|
-
background: #fff;
|
|
29693
|
-
}
|
|
29694
|
-
|
|
29695
|
-
span.E_tqjc4ui {
|
|
29696
|
-
margin: 0 2px;
|
|
29697
|
-
}
|
|
29698
|
-
|
|
29699
|
-
.E_n12mqh7z {
|
|
29700
|
-
display: flex;
|
|
29701
|
-
align-items: center;
|
|
29702
|
-
font-size: 12px;
|
|
29703
|
-
line-height: 18px;
|
|
29704
|
-
}
|
|
29705
|
-
|
|
29706
|
-
.E_n12mqh7z:not(:last-child) {
|
|
29707
|
-
margin-bottom: 4px;
|
|
29708
|
-
}
|
|
29709
|
-
|
|
29710
|
-
.E_tf5bynu {
|
|
29711
|
-
margin: 0 3px;
|
|
29712
|
-
}
|
|
29713
|
-
|
|
29714
|
-
.E_tcckoz1 {
|
|
29715
|
-
max-height: 400px;
|
|
29716
|
-
overflow: auto;
|
|
29717
|
-
}
|
|
29718
|
-
|
|
29719
|
-
.E_ou7iq30 {
|
|
29720
|
-
overflow: hidden;
|
|
29721
|
-
text-overflow: ellipsis;
|
|
29722
|
-
}
|
|
29723
|
-
|
|
29724
|
-
.E_s1tui002 {
|
|
29725
|
-
white-space: nowrap;
|
|
29726
|
-
}
|
|
29727
|
-
|
|
29728
|
-
.E_mxrc2zg {
|
|
29729
|
-
display: -webkit-box;
|
|
29730
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
29731
|
-
-webkit-box-orient: vertical;
|
|
29732
|
-
word-break: break-all;
|
|
29733
|
-
}
|
|
29734
|
-
|
|
29735
|
-
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
29736
|
-
display: none;
|
|
29737
|
-
}
|
|
29738
|
-
|
|
29739
|
-
.E_t1vv6d68 .ant-tooltip-inner {
|
|
29740
|
-
background: rgba(23, 38, 64, 0.8);
|
|
29741
|
-
border-radius: 4px;
|
|
29742
|
-
}
|
|
29743
|
-
|
|
29744
|
-
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
29745
|
-
visibility: hidden;
|
|
29746
|
-
}
|
|
29747
|
-
|
|
29748
|
-
.E_skwah65 {
|
|
29749
|
-
height: 8px;
|
|
29750
|
-
box-sizing: border-box;
|
|
29751
|
-
border-radius: 2px;
|
|
29752
|
-
background: #f5f7fa;
|
|
29753
|
-
display: flex;
|
|
29754
|
-
width: 100%;
|
|
29755
|
-
overflow: hidden;
|
|
29756
|
-
}
|
|
29757
|
-
|
|
29758
|
-
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
29759
|
-
margin-left: 1px;
|
|
29760
|
-
}
|
|
29761
|
-
|
|
29762
29638
|
.E_gmyahx3 {
|
|
29763
29639
|
cursor: pointer;
|
|
29764
29640
|
}
|
|
@@ -29880,80 +29756,200 @@ span.E_tqjc4ui {
|
|
|
29880
29756
|
border-radius: 2px;
|
|
29881
29757
|
}
|
|
29882
29758
|
|
|
29883
|
-
.
|
|
29884
|
-
|
|
29759
|
+
.E_n12mqh7z {
|
|
29760
|
+
display: flex;
|
|
29761
|
+
align-items: center;
|
|
29762
|
+
font-size: 12px;
|
|
29763
|
+
line-height: 18px;
|
|
29885
29764
|
}
|
|
29886
29765
|
|
|
29887
|
-
.
|
|
29888
|
-
|
|
29766
|
+
.E_n12mqh7z:not(:last-child) {
|
|
29767
|
+
margin-bottom: 4px;
|
|
29889
29768
|
}
|
|
29890
29769
|
|
|
29891
|
-
.
|
|
29892
|
-
|
|
29770
|
+
.E_tf5bynu {
|
|
29771
|
+
margin: 0 3px;
|
|
29893
29772
|
}
|
|
29894
29773
|
|
|
29895
|
-
.
|
|
29896
|
-
|
|
29774
|
+
.E_tcckoz1 {
|
|
29775
|
+
max-height: 400px;
|
|
29776
|
+
overflow: auto;
|
|
29897
29777
|
}
|
|
29898
29778
|
|
|
29899
|
-
.
|
|
29900
|
-
|
|
29901
|
-
|
|
29902
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
29779
|
+
.E_ou7iq30 {
|
|
29780
|
+
overflow: hidden;
|
|
29781
|
+
text-overflow: ellipsis;
|
|
29903
29782
|
}
|
|
29904
29783
|
|
|
29905
|
-
.
|
|
29906
|
-
|
|
29907
|
-
padding-bottom: 0;
|
|
29784
|
+
.E_s1tui002 {
|
|
29785
|
+
white-space: nowrap;
|
|
29908
29786
|
}
|
|
29909
29787
|
|
|
29910
|
-
.
|
|
29911
|
-
|
|
29912
|
-
|
|
29913
|
-
|
|
29788
|
+
.E_mxrc2zg {
|
|
29789
|
+
display: -webkit-box;
|
|
29790
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
29791
|
+
-webkit-box-orient: vertical;
|
|
29792
|
+
word-break: break-all;
|
|
29914
29793
|
}
|
|
29915
29794
|
|
|
29916
|
-
.
|
|
29917
|
-
|
|
29918
|
-
margin-top: 5px;
|
|
29795
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
29796
|
+
display: none;
|
|
29919
29797
|
}
|
|
29920
29798
|
|
|
29921
|
-
.
|
|
29922
|
-
|
|
29923
|
-
|
|
29799
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
29800
|
+
background: rgba(23, 38, 64, 0.8);
|
|
29801
|
+
border-radius: 4px;
|
|
29924
29802
|
}
|
|
29925
29803
|
|
|
29926
|
-
.
|
|
29804
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
29805
|
+
visibility: hidden;
|
|
29806
|
+
}
|
|
29807
|
+
|
|
29808
|
+
.E_s1ebs0ra {
|
|
29927
29809
|
display: flex;
|
|
29928
29810
|
align-items: center;
|
|
29929
29811
|
justify-content: space-between;
|
|
29930
|
-
|
|
29812
|
+
background: #edf0f7;
|
|
29813
|
+
padding: 8px 12px;
|
|
29814
|
+
position: sticky;
|
|
29815
|
+
top: 0;
|
|
29816
|
+
z-index: 1;
|
|
29817
|
+
margin-bottom: -52px;
|
|
29931
29818
|
}
|
|
29932
29819
|
|
|
29933
|
-
.
|
|
29934
|
-
|
|
29820
|
+
.E_s1ebs0ra .select-total {
|
|
29821
|
+
display: flex;
|
|
29822
|
+
align-items: center;
|
|
29823
|
+
font-weight: 700;
|
|
29824
|
+
flex-shrink: 0;
|
|
29935
29825
|
}
|
|
29936
29826
|
|
|
29937
|
-
.
|
|
29938
|
-
|
|
29827
|
+
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29828
|
+
cursor: pointer;
|
|
29829
|
+
margin-left: 8px;
|
|
29830
|
+
width: 32px;
|
|
29831
|
+
height: 32px;
|
|
29832
|
+
border-radius: 50%;
|
|
29833
|
+
justify-content: center;
|
|
29939
29834
|
}
|
|
29940
29835
|
|
|
29941
|
-
.
|
|
29836
|
+
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29837
|
+
background: rgba(225, 230, 241, 0.6);
|
|
29838
|
+
}
|
|
29839
|
+
|
|
29840
|
+
.E_s1ebs0ra .action-group {
|
|
29942
29841
|
flex: 1;
|
|
29943
|
-
|
|
29944
|
-
overflow: hidden;
|
|
29945
|
-
align-items: center;
|
|
29946
|
-
justify-content: flex-start;
|
|
29842
|
+
margin-left: 88px;
|
|
29947
29843
|
white-space: nowrap;
|
|
29844
|
+
text-align: right;
|
|
29845
|
+
position: relative;
|
|
29846
|
+
padding: 4px 0;
|
|
29847
|
+
margin-top: -4px;
|
|
29848
|
+
overflow: hidden;
|
|
29948
29849
|
}
|
|
29949
29850
|
|
|
29950
|
-
.
|
|
29951
|
-
|
|
29952
|
-
overflow: hidden;
|
|
29953
|
-
text-overflow: ellipsis;
|
|
29851
|
+
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29852
|
+
transform: translateY(-4px);
|
|
29954
29853
|
}
|
|
29955
29854
|
|
|
29956
|
-
.
|
|
29855
|
+
.E_s1ebs0ra .action-group button {
|
|
29856
|
+
border: none;
|
|
29857
|
+
}
|
|
29858
|
+
|
|
29859
|
+
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29860
|
+
margin-right: 8px;
|
|
29861
|
+
}
|
|
29862
|
+
|
|
29863
|
+
.E_s1ebs0ra .action-group > button:last-child {
|
|
29864
|
+
margin-right: 4px;
|
|
29865
|
+
}
|
|
29866
|
+
|
|
29867
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
29868
|
+
cursor: pointer;
|
|
29869
|
+
width: 32px;
|
|
29870
|
+
height: 32px;
|
|
29871
|
+
justify-content: center;
|
|
29872
|
+
border-radius: 50%;
|
|
29873
|
+
}
|
|
29874
|
+
|
|
29875
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29876
|
+
background: #fff;
|
|
29877
|
+
}
|
|
29878
|
+
|
|
29879
|
+
.E_c1up1pdz {
|
|
29880
|
+
width: 648px;
|
|
29881
|
+
}
|
|
29882
|
+
|
|
29883
|
+
.E_c1up1pdz.active {
|
|
29884
|
+
border-color: #0080ff;
|
|
29885
|
+
}
|
|
29886
|
+
|
|
29887
|
+
.E_c1up1pdz.active > header {
|
|
29888
|
+
background: rgba(0, 128, 255, 0.1);
|
|
29889
|
+
}
|
|
29890
|
+
|
|
29891
|
+
.E_c1up1pdz .expand {
|
|
29892
|
+
padding: 12px;
|
|
29893
|
+
}
|
|
29894
|
+
|
|
29895
|
+
.E_c1up1pdz .field-item {
|
|
29896
|
+
display: flex;
|
|
29897
|
+
padding: 10px 0;
|
|
29898
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
29899
|
+
}
|
|
29900
|
+
|
|
29901
|
+
.E_c1up1pdz .field-item:last-child {
|
|
29902
|
+
border-bottom: none;
|
|
29903
|
+
padding-bottom: 0;
|
|
29904
|
+
}
|
|
29905
|
+
|
|
29906
|
+
.E_c1up1pdz .field-item label {
|
|
29907
|
+
line-height: 32px;
|
|
29908
|
+
width: 100px;
|
|
29909
|
+
color: rgba(62, 70, 82, 0.6);
|
|
29910
|
+
}
|
|
29911
|
+
|
|
29912
|
+
.E_c1up1pdz .help {
|
|
29913
|
+
color: rgba(62, 70, 82, 0.6);
|
|
29914
|
+
margin-top: 5px;
|
|
29915
|
+
}
|
|
29916
|
+
|
|
29917
|
+
.E_c1up1pdz .ant-input-affix-wrapper,
|
|
29918
|
+
.E_c1up1pdz .ant-picker {
|
|
29919
|
+
width: 128px;
|
|
29920
|
+
}
|
|
29921
|
+
|
|
29922
|
+
.E_c156wh19 {
|
|
29923
|
+
display: flex;
|
|
29924
|
+
align-items: center;
|
|
29925
|
+
justify-content: space-between;
|
|
29926
|
+
word-break: keep-all;
|
|
29927
|
+
}
|
|
29928
|
+
|
|
29929
|
+
.E_c156wh19 .title {
|
|
29930
|
+
margin: 0 16px 0 8px;
|
|
29931
|
+
}
|
|
29932
|
+
|
|
29933
|
+
.E_c156wh19 .retain {
|
|
29934
|
+
color: rgba(129, 138, 153, 0.6);
|
|
29935
|
+
}
|
|
29936
|
+
|
|
29937
|
+
.E_c156wh19 div.left {
|
|
29938
|
+
flex: 1;
|
|
29939
|
+
display: flex;
|
|
29940
|
+
overflow: hidden;
|
|
29941
|
+
align-items: center;
|
|
29942
|
+
justify-content: flex-start;
|
|
29943
|
+
white-space: nowrap;
|
|
29944
|
+
}
|
|
29945
|
+
|
|
29946
|
+
.E_c156wh19 div.left .title {
|
|
29947
|
+
max-width: 100%;
|
|
29948
|
+
overflow: hidden;
|
|
29949
|
+
text-overflow: ellipsis;
|
|
29950
|
+
}
|
|
29951
|
+
|
|
29952
|
+
.E_c156wh19 div.right {
|
|
29957
29953
|
display: flex;
|
|
29958
29954
|
align-items: center;
|
|
29959
29955
|
}
|
|
@@ -30046,135 +30042,8 @@ span.E_tqjc4ui {
|
|
|
30046
30042
|
color: #fff;
|
|
30047
30043
|
}
|
|
30048
30044
|
|
|
30049
|
-
.
|
|
30050
|
-
|
|
30051
|
-
}
|
|
30052
|
-
|
|
30053
|
-
.E_t1sqg15u.inline .table-row {
|
|
30054
|
-
flex-direction: column;
|
|
30055
|
-
}
|
|
30056
|
-
|
|
30057
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
30058
|
-
padding: 0 16px 7px 0;
|
|
30059
|
-
}
|
|
30060
|
-
|
|
30061
|
-
.E_t1sqg15u.has-border .table-header {
|
|
30062
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
30063
|
-
}
|
|
30064
|
-
|
|
30065
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
30066
|
-
border-top: none !important;
|
|
30067
|
-
}
|
|
30068
|
-
|
|
30069
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
30070
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
30071
|
-
}
|
|
30072
|
-
|
|
30073
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
30074
|
-
padding-bottom: 0;
|
|
30075
|
-
}
|
|
30076
|
-
|
|
30077
|
-
.E_t1sqg15u.align-right .content {
|
|
30078
|
-
text-align: right;
|
|
30079
|
-
}
|
|
30080
|
-
|
|
30081
|
-
.E_t1sqg15u .uuid-row {
|
|
30082
|
-
display: flex;
|
|
30083
|
-
justify-content: space-between;
|
|
30084
|
-
}
|
|
30085
|
-
|
|
30086
|
-
.E_t1sqg15u .uuid-row .id-text {
|
|
30087
|
-
white-space: nowrap;
|
|
30088
|
-
overflow: hidden;
|
|
30089
|
-
text-overflow: ellipsis;
|
|
30090
|
-
}
|
|
30091
|
-
|
|
30092
|
-
.E_t4zczcp {
|
|
30093
|
-
display: flex;
|
|
30094
|
-
justify-content: space-between;
|
|
30095
|
-
align-items: center;
|
|
30096
|
-
padding: 8px;
|
|
30097
|
-
min-height: 32px;
|
|
30098
|
-
}
|
|
30099
|
-
|
|
30100
|
-
.E_t4zczcp .table-title {
|
|
30101
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30102
|
-
font-weight: 600;
|
|
30103
|
-
font-size: 12px;
|
|
30104
|
-
line-height: 8px;
|
|
30105
|
-
}
|
|
30106
|
-
|
|
30107
|
-
.E_t4zczcp .edit-icon {
|
|
30108
|
-
font-size: 16px;
|
|
30109
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30110
|
-
cursor: pointer;
|
|
30111
|
-
}
|
|
30112
|
-
|
|
30113
|
-
.E_t1s7goww {
|
|
30114
|
-
font-size: 12px;
|
|
30115
|
-
line-height: 18px;
|
|
30116
|
-
}
|
|
30117
|
-
|
|
30118
|
-
.E_t93e4cf {
|
|
30119
|
-
display: flex;
|
|
30120
|
-
padding: 8px 0;
|
|
30121
|
-
color: #2d3a56;
|
|
30122
|
-
}
|
|
30123
|
-
|
|
30124
|
-
.E_t93e4cf .hidden {
|
|
30125
|
-
display: none;
|
|
30126
|
-
}
|
|
30127
|
-
|
|
30128
|
-
.E_t93e4cf .ant-btn-link {
|
|
30129
|
-
height: auto;
|
|
30130
|
-
}
|
|
30131
|
-
|
|
30132
|
-
.E_t93e4cf .content {
|
|
30133
|
-
overflow: hidden;
|
|
30134
|
-
overflow-x: auto;
|
|
30135
|
-
width: 100%;
|
|
30136
|
-
white-space: pre-wrap;
|
|
30137
|
-
}
|
|
30138
|
-
|
|
30139
|
-
.E_t93e4cf .content .ant-btn {
|
|
30140
|
-
white-space: pre-wrap;
|
|
30141
|
-
text-align: left;
|
|
30142
|
-
}
|
|
30143
|
-
|
|
30144
|
-
.E_t93e4cf .content .unit-chart {
|
|
30145
|
-
justify-content: flex-start;
|
|
30146
|
-
}
|
|
30147
|
-
|
|
30148
|
-
.E_rhz2uv5 {
|
|
30149
|
-
width: var(--rhz2uv5-0);
|
|
30150
|
-
flex-shrink: 0;
|
|
30151
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30152
|
-
padding-right: 12px;
|
|
30153
|
-
}
|
|
30154
|
-
|
|
30155
|
-
.E_wg1tsps {
|
|
30156
|
-
display: flex;
|
|
30157
|
-
align-items: center;
|
|
30158
|
-
justify-content: flex-end;
|
|
30159
|
-
}
|
|
30160
|
-
|
|
30161
|
-
.E_b1ctd5xy {
|
|
30162
|
-
display: flex;
|
|
30163
|
-
align-items: center;
|
|
30164
|
-
width: calc(100% - 40px);
|
|
30165
|
-
}
|
|
30166
|
-
|
|
30167
|
-
.E_b1ctd5xy .chart {
|
|
30168
|
-
display: inline-block;
|
|
30169
|
-
width: 100%;
|
|
30170
|
-
}
|
|
30171
|
-
|
|
30172
|
-
.E_u1p8acpn {
|
|
30173
|
-
min-width: 40px;
|
|
30174
|
-
}
|
|
30175
|
-
|
|
30176
|
-
.E_u1p8acpn .unit {
|
|
30177
|
-
color: #00122e !important;
|
|
30045
|
+
span.E_tqjc4ui {
|
|
30046
|
+
margin: 0 2px;
|
|
30178
30047
|
}
|
|
30179
30048
|
|
|
30180
30049
|
.E_s1at6qmn.ant-layout-sider {
|
|
@@ -30563,38 +30432,144 @@ span.E_tqjc4ui {
|
|
|
30563
30432
|
background: transparent;
|
|
30564
30433
|
}
|
|
30565
30434
|
|
|
30566
|
-
.
|
|
30567
|
-
|
|
30568
|
-
align-items: center;
|
|
30435
|
+
.E_t1sqg15u {
|
|
30436
|
+
background: white;
|
|
30569
30437
|
}
|
|
30570
30438
|
|
|
30571
|
-
.
|
|
30572
|
-
|
|
30439
|
+
.E_t1sqg15u.inline .table-row {
|
|
30440
|
+
flex-direction: column;
|
|
30573
30441
|
}
|
|
30574
30442
|
|
|
30575
|
-
.
|
|
30576
|
-
|
|
30577
|
-
border-radius: 4px;
|
|
30443
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
30444
|
+
padding: 0 16px 7px 0;
|
|
30578
30445
|
}
|
|
30579
30446
|
|
|
30580
|
-
.
|
|
30581
|
-
|
|
30447
|
+
.E_t1sqg15u.has-border .table-header {
|
|
30448
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
30582
30449
|
}
|
|
30583
30450
|
|
|
30584
|
-
.
|
|
30585
|
-
border-
|
|
30451
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
30452
|
+
border-top: none !important;
|
|
30586
30453
|
}
|
|
30587
30454
|
|
|
30588
|
-
.
|
|
30589
|
-
|
|
30455
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
30456
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
30590
30457
|
}
|
|
30591
30458
|
|
|
30592
|
-
.
|
|
30593
|
-
|
|
30459
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
30460
|
+
padding-bottom: 0;
|
|
30594
30461
|
}
|
|
30595
30462
|
|
|
30596
|
-
.
|
|
30597
|
-
|
|
30463
|
+
.E_t1sqg15u.align-right .content {
|
|
30464
|
+
text-align: right;
|
|
30465
|
+
}
|
|
30466
|
+
|
|
30467
|
+
.E_t1sqg15u .uuid-row {
|
|
30468
|
+
display: flex;
|
|
30469
|
+
justify-content: space-between;
|
|
30470
|
+
}
|
|
30471
|
+
|
|
30472
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
30473
|
+
white-space: nowrap;
|
|
30474
|
+
overflow: hidden;
|
|
30475
|
+
text-overflow: ellipsis;
|
|
30476
|
+
}
|
|
30477
|
+
|
|
30478
|
+
.E_t4zczcp {
|
|
30479
|
+
display: flex;
|
|
30480
|
+
justify-content: space-between;
|
|
30481
|
+
align-items: center;
|
|
30482
|
+
padding: 8px;
|
|
30483
|
+
min-height: 32px;
|
|
30484
|
+
}
|
|
30485
|
+
|
|
30486
|
+
.E_t4zczcp .table-title {
|
|
30487
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30488
|
+
font-weight: 600;
|
|
30489
|
+
font-size: 12px;
|
|
30490
|
+
line-height: 8px;
|
|
30491
|
+
}
|
|
30492
|
+
|
|
30493
|
+
.E_t4zczcp .edit-icon {
|
|
30494
|
+
font-size: 16px;
|
|
30495
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30496
|
+
cursor: pointer;
|
|
30497
|
+
}
|
|
30498
|
+
|
|
30499
|
+
.E_t1s7goww {
|
|
30500
|
+
font-size: 12px;
|
|
30501
|
+
line-height: 18px;
|
|
30502
|
+
}
|
|
30503
|
+
|
|
30504
|
+
.E_t93e4cf {
|
|
30505
|
+
display: flex;
|
|
30506
|
+
padding: 8px 0;
|
|
30507
|
+
color: #2d3a56;
|
|
30508
|
+
}
|
|
30509
|
+
|
|
30510
|
+
.E_t93e4cf .hidden {
|
|
30511
|
+
display: none;
|
|
30512
|
+
}
|
|
30513
|
+
|
|
30514
|
+
.E_t93e4cf .ant-btn-link {
|
|
30515
|
+
height: auto;
|
|
30516
|
+
}
|
|
30517
|
+
|
|
30518
|
+
.E_t93e4cf .content {
|
|
30519
|
+
overflow: hidden;
|
|
30520
|
+
overflow-x: auto;
|
|
30521
|
+
width: 100%;
|
|
30522
|
+
white-space: pre-wrap;
|
|
30523
|
+
}
|
|
30524
|
+
|
|
30525
|
+
.E_t93e4cf .content .ant-btn {
|
|
30526
|
+
white-space: pre-wrap;
|
|
30527
|
+
text-align: left;
|
|
30528
|
+
}
|
|
30529
|
+
|
|
30530
|
+
.E_t93e4cf .content .unit-chart {
|
|
30531
|
+
justify-content: flex-start;
|
|
30532
|
+
}
|
|
30533
|
+
|
|
30534
|
+
.E_rhz2uv5 {
|
|
30535
|
+
width: var(--rhz2uv5-0);
|
|
30536
|
+
flex-shrink: 0;
|
|
30537
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30538
|
+
padding-right: 12px;
|
|
30539
|
+
}
|
|
30540
|
+
|
|
30541
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
30542
|
+
display: flex;
|
|
30543
|
+
align-items: center;
|
|
30544
|
+
}
|
|
30545
|
+
|
|
30546
|
+
.E_s1iv0tp1 .enabled-text {
|
|
30547
|
+
margin-right: 8px;
|
|
30548
|
+
}
|
|
30549
|
+
|
|
30550
|
+
.E_wg1tsps {
|
|
30551
|
+
display: flex;
|
|
30552
|
+
align-items: center;
|
|
30553
|
+
justify-content: flex-end;
|
|
30554
|
+
}
|
|
30555
|
+
|
|
30556
|
+
.E_b1ctd5xy {
|
|
30557
|
+
display: flex;
|
|
30558
|
+
align-items: center;
|
|
30559
|
+
width: calc(100% - 40px);
|
|
30560
|
+
}
|
|
30561
|
+
|
|
30562
|
+
.E_b1ctd5xy .chart {
|
|
30563
|
+
display: inline-block;
|
|
30564
|
+
width: 100%;
|
|
30565
|
+
}
|
|
30566
|
+
|
|
30567
|
+
.E_u1p8acpn {
|
|
30568
|
+
min-width: 40px;
|
|
30569
|
+
}
|
|
30570
|
+
|
|
30571
|
+
.E_u1p8acpn .unit {
|
|
30572
|
+
color: #00122e !important;
|
|
30598
30573
|
}
|
|
30599
30574
|
|
|
30600
30575
|
.E_m74vjol {
|
|
@@ -30646,6 +30621,25 @@ span.E_tqjc4ui {
|
|
|
30646
30621
|
border-radius: unset;
|
|
30647
30622
|
}
|
|
30648
30623
|
|
|
30624
|
+
.E_berrcjl {
|
|
30625
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30626
|
+
margin-bottom: 4px;
|
|
30627
|
+
}
|
|
30628
|
+
|
|
30629
|
+
.E_berrcjl .breadcrumb-link {
|
|
30630
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30631
|
+
cursor: pointer;
|
|
30632
|
+
transition: color 160ms ease;
|
|
30633
|
+
}
|
|
30634
|
+
|
|
30635
|
+
.E_berrcjl .breadcrumb-link:hover {
|
|
30636
|
+
color: #0080ff;
|
|
30637
|
+
}
|
|
30638
|
+
|
|
30639
|
+
.E_berrcjl .breadcrumb-link:active {
|
|
30640
|
+
color: #005ed1;
|
|
30641
|
+
}
|
|
30642
|
+
|
|
30649
30643
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
30650
30644
|
justify-content: center;
|
|
30651
30645
|
}
|
|
@@ -30938,23 +30932,62 @@ button.E_n7k2c6r {
|
|
|
30938
30932
|
padding: 0;
|
|
30939
30933
|
}
|
|
30940
30934
|
|
|
30941
|
-
.
|
|
30942
|
-
|
|
30943
|
-
|
|
30935
|
+
.E_c18gxmrl {
|
|
30936
|
+
border: 1px solid #d8deeb;
|
|
30937
|
+
border-radius: 4px;
|
|
30944
30938
|
}
|
|
30945
30939
|
|
|
30946
|
-
.
|
|
30947
|
-
|
|
30948
|
-
cursor: pointer;
|
|
30949
|
-
transition: color 160ms ease;
|
|
30940
|
+
.E_c18gxmrl + .E_c18gxmrl {
|
|
30941
|
+
margin-top: 8px;
|
|
30950
30942
|
}
|
|
30951
30943
|
|
|
30952
|
-
.
|
|
30953
|
-
color: #0080ff;
|
|
30944
|
+
.E_c18gxmrl:hover {
|
|
30945
|
+
border-color: #0080ff;
|
|
30954
30946
|
}
|
|
30955
30947
|
|
|
30956
|
-
.
|
|
30957
|
-
|
|
30948
|
+
.E_c18gxmrl:hover > header {
|
|
30949
|
+
background: rgba(0, 128, 255, 0.1);
|
|
30950
|
+
}
|
|
30951
|
+
|
|
30952
|
+
.E_c18gxmrl.active header {
|
|
30953
|
+
border-bottom: 1px solid #d8deeb;
|
|
30954
|
+
}
|
|
30955
|
+
|
|
30956
|
+
.E_c18gxmrl > header {
|
|
30957
|
+
padding: 8px 12px;
|
|
30958
|
+
}
|
|
30959
|
+
|
|
30960
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
30961
|
+
border: 0px;
|
|
30962
|
+
background-color: #fff;
|
|
30963
|
+
}
|
|
30964
|
+
|
|
30965
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
30966
|
+
padding-top: 0px;
|
|
30967
|
+
padding-bottom: 0px;
|
|
30968
|
+
padding-left: 0px !important;
|
|
30969
|
+
padding-right: 24px;
|
|
30970
|
+
}
|
|
30971
|
+
|
|
30972
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
30973
|
+
right: 0px;
|
|
30974
|
+
}
|
|
30975
|
+
|
|
30976
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
30977
|
+
padding: 0px;
|
|
30978
|
+
}
|
|
30979
|
+
|
|
30980
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
30981
|
+
padding-right: 0px;
|
|
30982
|
+
cursor: default;
|
|
30983
|
+
}
|
|
30984
|
+
|
|
30985
|
+
.E_c1yyuluq {
|
|
30986
|
+
border-radius: 8px;
|
|
30987
|
+
}
|
|
30988
|
+
|
|
30989
|
+
.E_c1yyuluq .ant-card-body {
|
|
30990
|
+
padding: 20px 24px 24px 24px;
|
|
30958
30991
|
}
|
|
30959
30992
|
|
|
30960
30993
|
.E_c1uzzomf {
|
|
@@ -30982,21 +31015,6 @@ button.E_n7k2c6r {
|
|
|
30982
31015
|
text-align: center;
|
|
30983
31016
|
}
|
|
30984
31017
|
|
|
30985
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
30986
|
-
padding: 4px 8px 0 8px;
|
|
30987
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30988
|
-
font-size: 12px;
|
|
30989
|
-
}
|
|
30990
|
-
|
|
30991
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
30992
|
-
padding-bottom: 6px;
|
|
30993
|
-
}
|
|
30994
|
-
|
|
30995
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
30996
|
-
padding-top: 4px;
|
|
30997
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30998
|
-
}
|
|
30999
|
-
|
|
31000
31018
|
.E_d1bw7c5z {
|
|
31001
31019
|
position: relative;
|
|
31002
31020
|
max-width: 388px;
|
|
@@ -31093,171 +31111,44 @@ button.E_n7k2c6r {
|
|
|
31093
31111
|
width: 102px;
|
|
31094
31112
|
}
|
|
31095
31113
|
|
|
31096
|
-
.
|
|
31097
|
-
|
|
31114
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
31115
|
+
padding: 4px 8px 0 8px;
|
|
31116
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31117
|
+
font-size: 12px;
|
|
31098
31118
|
}
|
|
31099
31119
|
|
|
31100
|
-
.
|
|
31101
|
-
padding:
|
|
31120
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
31121
|
+
padding-bottom: 6px;
|
|
31102
31122
|
}
|
|
31103
31123
|
|
|
31104
|
-
.
|
|
31105
|
-
|
|
31106
|
-
|
|
31124
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
31125
|
+
padding-top: 4px;
|
|
31126
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31107
31127
|
}
|
|
31108
31128
|
|
|
31109
|
-
.
|
|
31110
|
-
|
|
31111
|
-
padding-bottom: 0px;
|
|
31112
|
-
padding-left: 0px !important;
|
|
31113
|
-
padding-right: 24px;
|
|
31129
|
+
.E_sx1bpnu .ant-input-sm {
|
|
31130
|
+
line-height: 18px;
|
|
31114
31131
|
}
|
|
31115
31132
|
|
|
31116
|
-
.
|
|
31117
|
-
|
|
31133
|
+
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
31134
|
+
display: flex;
|
|
31118
31135
|
}
|
|
31119
31136
|
|
|
31120
|
-
.
|
|
31121
|
-
|
|
31137
|
+
.E_phljevk {
|
|
31138
|
+
display: flex;
|
|
31139
|
+
justify-content: space-between;
|
|
31140
|
+
align-items: center;
|
|
31141
|
+
padding: 10px 0;
|
|
31142
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31143
|
+
font-size: 12px;
|
|
31144
|
+
line-height: 24px;
|
|
31122
31145
|
}
|
|
31123
31146
|
|
|
31124
|
-
.
|
|
31125
|
-
padding
|
|
31126
|
-
cursor: default;
|
|
31147
|
+
.E_phljevk .pagination-left {
|
|
31148
|
+
padding: 2px 8px;
|
|
31127
31149
|
}
|
|
31128
31150
|
|
|
31129
|
-
.
|
|
31130
|
-
display: flex;
|
|
31131
|
-
}
|
|
31132
|
-
|
|
31133
|
-
.E_sx1bpnu .ant-input-sm {
|
|
31134
|
-
line-height: 18px;
|
|
31135
|
-
}
|
|
31136
|
-
|
|
31137
|
-
.E_i11gg7mj .ant-input-prefix {
|
|
31138
|
-
margin-right: 8px;
|
|
31139
|
-
}
|
|
31140
|
-
|
|
31141
|
-
.E_i11gg7mj .ant-input-suffix {
|
|
31142
|
-
margin-left: 8px;
|
|
31143
|
-
}
|
|
31144
|
-
|
|
31145
|
-
.E_cc368xp {
|
|
31146
|
-
color: #00122e;
|
|
31147
|
-
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
31148
|
-
margin-right: 8px;
|
|
31149
|
-
padding-right: 8px;
|
|
31150
|
-
}
|
|
31151
|
-
|
|
31152
|
-
.E_i11o6xqj {
|
|
31153
|
-
display: flex;
|
|
31154
|
-
gap: 4px;
|
|
31155
|
-
}
|
|
31156
|
-
|
|
31157
|
-
.E_i11o6xqj .icon-wrapper {
|
|
31158
|
-
cursor: pointer;
|
|
31159
|
-
}
|
|
31160
|
-
|
|
31161
|
-
.E_d19ruhdj.icon-wrapper {
|
|
31162
|
-
cursor: not-allowed;
|
|
31163
|
-
}
|
|
31164
|
-
|
|
31165
|
-
.E_s177mls5.ant-select, .E_s177mls5.ant-select .ant-select-selector {
|
|
31166
|
-
border-radius: 6px;
|
|
31167
|
-
}
|
|
31168
|
-
|
|
31169
|
-
.E_s177mls5.ant-select.ant-select-single {
|
|
31170
|
-
width: 100%;
|
|
31171
|
-
color: #2d3a56;
|
|
31172
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
31173
|
-
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31174
|
-
font-size: 13px;
|
|
31175
|
-
}
|
|
31176
|
-
|
|
31177
|
-
.E_s177mls5.ant-select.ant-select-single[data-size=middle] {
|
|
31178
|
-
height: 30px;
|
|
31179
|
-
}
|
|
31180
|
-
|
|
31181
|
-
.E_s177mls5.ant-select.ant-select-single.ant-select-lg {
|
|
31182
|
-
height: 38px;
|
|
31183
|
-
font-size: 13px;
|
|
31184
|
-
}
|
|
31185
|
-
|
|
31186
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow,
|
|
31187
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
31188
|
-
transition: 160ms ease;
|
|
31189
|
-
}
|
|
31190
|
-
|
|
31191
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
31192
|
-
color: #0080ff;
|
|
31193
|
-
}
|
|
31194
|
-
|
|
31195
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
31196
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
31197
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31198
|
-
}
|
|
31199
|
-
|
|
31200
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
31201
|
-
color: #0080ff;
|
|
31202
|
-
}
|
|
31203
|
-
|
|
31204
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
31205
|
-
border-color: #0080ff;
|
|
31206
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31207
|
-
}
|
|
31208
|
-
|
|
31209
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
31210
|
-
transform: rotate(180deg);
|
|
31211
|
-
}
|
|
31212
|
-
|
|
31213
|
-
.E_s177mls5.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
31214
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31215
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31216
|
-
cursor: "not-allowed";
|
|
31217
|
-
}
|
|
31218
|
-
|
|
31219
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
31220
|
-
border-color: #f0483e !important;
|
|
31221
|
-
}
|
|
31222
|
-
|
|
31223
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
31224
|
-
color: #1d326c;
|
|
31225
|
-
}
|
|
31226
|
-
|
|
31227
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
31228
|
-
border-color: #0080ff;
|
|
31229
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31230
|
-
}
|
|
31231
|
-
|
|
31232
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
31233
|
-
transform: rotate(180deg);
|
|
31234
|
-
}
|
|
31235
|
-
|
|
31236
|
-
.E_ivqqkzv {
|
|
31237
|
-
height: 24px;
|
|
31238
|
-
width: 56px !important;
|
|
31239
|
-
margin-right: 4px;
|
|
31240
|
-
}
|
|
31241
|
-
|
|
31242
|
-
.E_c1wk4q29 {
|
|
31243
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31244
|
-
}
|
|
31245
|
-
|
|
31246
|
-
.E_phljevk {
|
|
31247
|
-
display: flex;
|
|
31248
|
-
justify-content: space-between;
|
|
31249
|
-
align-items: center;
|
|
31250
|
-
padding: 10px 0;
|
|
31251
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31252
|
-
font-size: 12px;
|
|
31253
|
-
line-height: 24px;
|
|
31254
|
-
}
|
|
31255
|
-
|
|
31256
|
-
.E_phljevk .pagination-left {
|
|
31257
|
-
padding: 2px 8px;
|
|
31258
|
-
}
|
|
31259
|
-
|
|
31260
|
-
.E_phljevk .dropdown-trigger {
|
|
31151
|
+
.E_phljevk .dropdown-trigger {
|
|
31261
31152
|
display: flex;
|
|
31262
31153
|
align-items: center;
|
|
31263
31154
|
border-radius: 6px;
|
|
@@ -31310,183 +31201,171 @@ button.E_n7k2c6r {
|
|
|
31310
31201
|
line-height: 18px;
|
|
31311
31202
|
}
|
|
31312
31203
|
|
|
31313
|
-
.
|
|
31314
|
-
|
|
31315
|
-
|
|
31316
|
-
|
|
31204
|
+
.E_ivqqkzv {
|
|
31205
|
+
height: 24px;
|
|
31206
|
+
width: 56px !important;
|
|
31207
|
+
margin-right: 4px;
|
|
31317
31208
|
}
|
|
31318
31209
|
|
|
31319
|
-
.
|
|
31320
|
-
|
|
31321
|
-
top: 3px;
|
|
31210
|
+
.E_c1wk4q29 {
|
|
31211
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31322
31212
|
}
|
|
31323
31213
|
|
|
31324
|
-
.
|
|
31325
|
-
|
|
31214
|
+
.E_s1dizucg.ant-switch {
|
|
31215
|
+
min-width: 40px;
|
|
31216
|
+
height: 24px;
|
|
31217
|
+
background: rgba(172, 186, 211, 0.6);
|
|
31218
|
+
overflow: hidden;
|
|
31326
31219
|
}
|
|
31327
31220
|
|
|
31328
|
-
.
|
|
31329
|
-
|
|
31221
|
+
.E_s1dizucg.ant-switch:focus {
|
|
31222
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
31330
31223
|
}
|
|
31331
31224
|
|
|
31332
|
-
.
|
|
31333
|
-
|
|
31334
|
-
|
|
31225
|
+
.E_s1dizucg.ant-switch-small {
|
|
31226
|
+
min-width: 26px;
|
|
31227
|
+
height: 16px;
|
|
31335
31228
|
}
|
|
31336
31229
|
|
|
31337
|
-
.
|
|
31338
|
-
|
|
31339
|
-
|
|
31340
|
-
width: 6px;
|
|
31341
|
-
height: 6px;
|
|
31342
|
-
background: #fff;
|
|
31230
|
+
.E_s1dizucg.ant-switch-large {
|
|
31231
|
+
min-width: 52px;
|
|
31232
|
+
height: 32px;
|
|
31343
31233
|
}
|
|
31344
31234
|
|
|
31345
|
-
.
|
|
31346
|
-
|
|
31235
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
31236
|
+
height: 20px;
|
|
31237
|
+
width: 20px;
|
|
31347
31238
|
}
|
|
31348
31239
|
|
|
31349
|
-
.
|
|
31350
|
-
border-
|
|
31351
|
-
|
|
31240
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
31241
|
+
border-radius: 10px;
|
|
31242
|
+
transition-delay: 120ms;
|
|
31352
31243
|
}
|
|
31353
31244
|
|
|
31354
|
-
.
|
|
31355
|
-
|
|
31245
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
31246
|
+
height: 14px;
|
|
31247
|
+
width: 14px;
|
|
31248
|
+
top: 1px;
|
|
31249
|
+
left: 1px;
|
|
31356
31250
|
}
|
|
31357
31251
|
|
|
31358
|
-
.
|
|
31359
|
-
|
|
31360
|
-
|
|
31252
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
31253
|
+
height: 28px;
|
|
31254
|
+
width: 28px;
|
|
31361
31255
|
}
|
|
31362
31256
|
|
|
31363
|
-
.
|
|
31364
|
-
|
|
31257
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
31258
|
+
border-radius: 14px;
|
|
31365
31259
|
}
|
|
31366
31260
|
|
|
31367
|
-
.
|
|
31368
|
-
|
|
31369
|
-
padding: 0;
|
|
31370
|
-
padding-left: 12px;
|
|
31261
|
+
.E_s1dizucg.ant-switch-checked {
|
|
31262
|
+
background-color: #00ba5d;
|
|
31371
31263
|
}
|
|
31372
31264
|
|
|
31373
|
-
.
|
|
31374
|
-
|
|
31375
|
-
white-space: pre-wrap;
|
|
31376
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31265
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
31266
|
+
left: calc(100% - 20px - 2px);
|
|
31377
31267
|
}
|
|
31378
31268
|
|
|
31379
|
-
.
|
|
31380
|
-
|
|
31269
|
+
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
31270
|
+
left: calc(100% - 14px - 1px);
|
|
31381
31271
|
}
|
|
31382
31272
|
|
|
31383
|
-
.
|
|
31384
|
-
|
|
31273
|
+
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
31274
|
+
left: calc(100% - 28px - 2px);
|
|
31385
31275
|
}
|
|
31386
31276
|
|
|
31387
|
-
.
|
|
31388
|
-
|
|
31277
|
+
.E_c1up6e3y {
|
|
31278
|
+
margin-left: 5px;
|
|
31389
31279
|
}
|
|
31390
31280
|
|
|
31391
|
-
.
|
|
31392
|
-
|
|
31393
|
-
border-color: #ccd4e3;
|
|
31281
|
+
.E_s1dni7lo {
|
|
31282
|
+
width: 430px !important;
|
|
31394
31283
|
}
|
|
31395
31284
|
|
|
31396
|
-
.
|
|
31397
|
-
|
|
31285
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
31286
|
+
padding: 8px 16px;
|
|
31287
|
+
line-height: 18px;
|
|
31288
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31289
|
+
height: 34px;
|
|
31290
|
+
min-height: 34px;
|
|
31291
|
+
box-sizing: border-box;
|
|
31292
|
+
margin-top: 8px;
|
|
31398
31293
|
}
|
|
31399
31294
|
|
|
31400
|
-
.
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31295
|
+
.E_o1ugr09p {
|
|
31296
|
+
display: flex;
|
|
31297
|
+
flex-direction: column;
|
|
31298
|
+
margin: 1px 8px;
|
|
31299
|
+
padding: 8px;
|
|
31300
|
+
border-radius: 4px;
|
|
31404
31301
|
}
|
|
31405
31302
|
|
|
31406
|
-
.
|
|
31407
|
-
|
|
31303
|
+
.E_o1ugr09p .selected-icon {
|
|
31304
|
+
display: none;
|
|
31408
31305
|
}
|
|
31409
31306
|
|
|
31410
|
-
.ant-
|
|
31411
|
-
|
|
31412
|
-
padding: 0 7px;
|
|
31413
|
-
line-height: 20px;
|
|
31307
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
31308
|
+
padding-left: 8px;
|
|
31414
31309
|
}
|
|
31415
31310
|
|
|
31416
|
-
.
|
|
31417
|
-
background:
|
|
31311
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
31312
|
+
background-color: white;
|
|
31418
31313
|
}
|
|
31419
31314
|
|
|
31420
|
-
.
|
|
31421
|
-
|
|
31315
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
31316
|
+
color: #0080ff;
|
|
31422
31317
|
}
|
|
31423
31318
|
|
|
31424
|
-
.
|
|
31425
|
-
|
|
31426
|
-
opacity: 0.5;
|
|
31319
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
31320
|
+
display: block;
|
|
31427
31321
|
}
|
|
31428
31322
|
|
|
31429
|
-
.
|
|
31430
|
-
|
|
31323
|
+
.E_o1ugr09p.ant-select-item-option-active {
|
|
31324
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31431
31325
|
}
|
|
31432
31326
|
|
|
31433
|
-
.
|
|
31434
|
-
|
|
31327
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
31328
|
+
color: #0080ff;
|
|
31435
31329
|
}
|
|
31436
31330
|
|
|
31437
|
-
.
|
|
31331
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
31438
31332
|
background: rgba(0, 136, 255, 0.1);
|
|
31333
|
+
color: #0080ff;
|
|
31439
31334
|
}
|
|
31440
31335
|
|
|
31441
|
-
.
|
|
31442
|
-
|
|
31443
|
-
|
|
31444
|
-
|
|
31336
|
+
.E_o1ifxsq4 {
|
|
31337
|
+
display: flex;
|
|
31338
|
+
justify-content: space-between;
|
|
31339
|
+
height: 20px;
|
|
31340
|
+
line-height: 20px;
|
|
31445
31341
|
}
|
|
31446
31342
|
|
|
31447
|
-
.
|
|
31448
|
-
color: #
|
|
31449
|
-
|
|
31343
|
+
.E_o1ifxsq4 .timezone-title {
|
|
31344
|
+
color: #2d3a56;
|
|
31345
|
+
overflow: hidden;
|
|
31346
|
+
text-overflow: ellipsis;
|
|
31450
31347
|
}
|
|
31451
31348
|
|
|
31452
|
-
.
|
|
31453
|
-
|
|
31454
|
-
|
|
31455
|
-
|
|
31349
|
+
.E_o1zue7 {
|
|
31350
|
+
display: flex;
|
|
31351
|
+
justify-content: space-between;
|
|
31352
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31353
|
+
height: 18px;
|
|
31354
|
+
line-height: 18px;
|
|
31355
|
+
margin-top: 2px;
|
|
31456
31356
|
}
|
|
31457
31357
|
|
|
31458
|
-
.
|
|
31459
|
-
margin-right: 8px;
|
|
31460
|
-
display: inline;
|
|
31358
|
+
.E_tyfmlxg {
|
|
31461
31359
|
border: none;
|
|
31462
|
-
padding: 0;
|
|
31463
|
-
width: 36px;
|
|
31464
|
-
background: transparent;
|
|
31465
|
-
}
|
|
31466
|
-
|
|
31467
|
-
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
31468
|
-
box-shadow: none;
|
|
31469
|
-
}
|
|
31470
|
-
|
|
31471
|
-
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
31472
31360
|
margin-right: 0;
|
|
31473
|
-
|
|
31474
|
-
box-shadow: none;
|
|
31475
|
-
}
|
|
31476
|
-
|
|
31477
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
31478
|
-
display: none;
|
|
31479
|
-
}
|
|
31480
|
-
|
|
31481
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
|
|
31482
|
-
display: inline;
|
|
31361
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31483
31362
|
}
|
|
31484
31363
|
|
|
31485
|
-
.
|
|
31486
|
-
|
|
31487
|
-
|
|
31488
|
-
|
|
31489
|
-
|
|
31364
|
+
.E_o18uybox {
|
|
31365
|
+
pointer-events: none;
|
|
31366
|
+
height: 32px;
|
|
31367
|
+
width: 100%;
|
|
31368
|
+
opacity: 0;
|
|
31490
31369
|
}
|
|
31491
31370
|
|
|
31492
31371
|
.E_c1bus5hc {
|
|
@@ -31532,173 +31411,373 @@ button.E_n7k2c6r {
|
|
|
31532
31411
|
transform: rotate(0deg);
|
|
31533
31412
|
}
|
|
31534
31413
|
|
|
31535
|
-
.
|
|
31536
|
-
|
|
31537
|
-
|
|
31538
|
-
background: rgba(172, 186, 211, 0.6);
|
|
31539
|
-
overflow: hidden;
|
|
31414
|
+
.E_s1sck0th {
|
|
31415
|
+
padding: 0 8px;
|
|
31416
|
+
border-radius: 4px;
|
|
31540
31417
|
}
|
|
31541
31418
|
|
|
31542
|
-
.
|
|
31543
|
-
|
|
31419
|
+
.E_m855nr1 {
|
|
31420
|
+
padding: 2px 8px;
|
|
31421
|
+
border-radius: 3px;
|
|
31544
31422
|
}
|
|
31545
31423
|
|
|
31546
|
-
.
|
|
31547
|
-
|
|
31548
|
-
|
|
31424
|
+
.E_l1270xpg {
|
|
31425
|
+
padding: 3px 8px;
|
|
31426
|
+
border-radius: 2px;
|
|
31549
31427
|
}
|
|
31550
31428
|
|
|
31551
|
-
.
|
|
31552
|
-
|
|
31553
|
-
height: 32px;
|
|
31429
|
+
.E_t14rextb.ant-tag:hover {
|
|
31430
|
+
opacity: unset;
|
|
31554
31431
|
}
|
|
31555
31432
|
|
|
31556
|
-
.
|
|
31557
|
-
|
|
31558
|
-
|
|
31433
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
31434
|
+
margin: 0;
|
|
31435
|
+
margin-right: 8px;
|
|
31436
|
+
display: inline-flex;
|
|
31437
|
+
align-items: center;
|
|
31438
|
+
border: none;
|
|
31559
31439
|
}
|
|
31560
31440
|
|
|
31561
|
-
.
|
|
31562
|
-
|
|
31563
|
-
|
|
31441
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
31442
|
+
width: 16px;
|
|
31443
|
+
height: 16px;
|
|
31444
|
+
color: inherit;
|
|
31445
|
+
margin-left: 4px;
|
|
31446
|
+
opacity: 0.6;
|
|
31447
|
+
display: inline-flex;
|
|
31564
31448
|
}
|
|
31565
31449
|
|
|
31566
|
-
.
|
|
31567
|
-
|
|
31568
|
-
width: 14px;
|
|
31569
|
-
top: 1px;
|
|
31570
|
-
left: 1px;
|
|
31450
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
31451
|
+
opacity: 1;
|
|
31571
31452
|
}
|
|
31572
31453
|
|
|
31573
|
-
.
|
|
31574
|
-
|
|
31575
|
-
|
|
31454
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
31455
|
+
color: #0080ff;
|
|
31456
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
31576
31457
|
}
|
|
31577
31458
|
|
|
31578
|
-
.
|
|
31579
|
-
|
|
31459
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
31460
|
+
color: #f0483e;
|
|
31461
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
31580
31462
|
}
|
|
31581
31463
|
|
|
31582
|
-
.
|
|
31583
|
-
|
|
31464
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
31465
|
+
color: #e07f00;
|
|
31466
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
31584
31467
|
}
|
|
31585
31468
|
|
|
31586
|
-
.
|
|
31587
|
-
|
|
31469
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
31470
|
+
color: #008f4c;
|
|
31471
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
31588
31472
|
}
|
|
31589
31473
|
|
|
31590
|
-
.
|
|
31591
|
-
|
|
31474
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
31475
|
+
color: #1d326c;
|
|
31476
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
31592
31477
|
}
|
|
31593
31478
|
|
|
31594
|
-
.
|
|
31595
|
-
|
|
31479
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
31480
|
+
color: #7E41FF;
|
|
31481
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
31596
31482
|
}
|
|
31597
31483
|
|
|
31598
|
-
.
|
|
31599
|
-
|
|
31484
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
31485
|
+
color: #fff;
|
|
31600
31486
|
}
|
|
31601
31487
|
|
|
31602
|
-
.
|
|
31603
|
-
|
|
31488
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
31489
|
+
background-color: #f0483e;
|
|
31604
31490
|
}
|
|
31605
31491
|
|
|
31606
|
-
.
|
|
31607
|
-
|
|
31492
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
31493
|
+
background-color: #fea008;
|
|
31608
31494
|
}
|
|
31609
31495
|
|
|
31610
|
-
.
|
|
31611
|
-
|
|
31496
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
31497
|
+
background-color: #00ba5d;
|
|
31612
31498
|
}
|
|
31613
31499
|
|
|
31614
|
-
.
|
|
31615
|
-
|
|
31500
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
31501
|
+
background-color: #0080ff;
|
|
31616
31502
|
}
|
|
31617
31503
|
|
|
31618
|
-
.
|
|
31619
|
-
|
|
31620
|
-
line-height: 18px;
|
|
31621
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31622
|
-
height: 34px;
|
|
31623
|
-
min-height: 34px;
|
|
31624
|
-
box-sizing: border-box;
|
|
31625
|
-
margin-top: 8px;
|
|
31504
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
31505
|
+
background-color: #6b7d99;
|
|
31626
31506
|
}
|
|
31627
31507
|
|
|
31628
|
-
.
|
|
31629
|
-
|
|
31630
|
-
flex-direction: column;
|
|
31631
|
-
margin: 1px 8px;
|
|
31632
|
-
padding: 8px;
|
|
31633
|
-
border-radius: 4px;
|
|
31508
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
31509
|
+
background-color: #7E41FF;
|
|
31634
31510
|
}
|
|
31635
31511
|
|
|
31636
|
-
.
|
|
31637
|
-
display:
|
|
31512
|
+
.E_rapgekc.ant-radio-wrapper {
|
|
31513
|
+
display: inline-flex;
|
|
31514
|
+
align-items: baseline;
|
|
31515
|
+
white-space: pre-wrap;
|
|
31638
31516
|
}
|
|
31639
31517
|
|
|
31640
|
-
.
|
|
31641
|
-
|
|
31518
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
31519
|
+
position: relative;
|
|
31520
|
+
top: 3px;
|
|
31642
31521
|
}
|
|
31643
31522
|
|
|
31644
|
-
.
|
|
31645
|
-
|
|
31523
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
31524
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31646
31525
|
}
|
|
31647
31526
|
|
|
31648
|
-
.
|
|
31649
|
-
color: #0080ff;
|
|
31527
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
31528
|
+
border-color: #0080ff;
|
|
31650
31529
|
}
|
|
31651
31530
|
|
|
31652
|
-
.
|
|
31653
|
-
|
|
31531
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
31532
|
+
border-color: #0080ff;
|
|
31533
|
+
background: #0080ff;
|
|
31654
31534
|
}
|
|
31655
31535
|
|
|
31656
|
-
.
|
|
31657
|
-
|
|
31536
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
31537
|
+
top: 4px;
|
|
31538
|
+
left: 4px;
|
|
31539
|
+
width: 6px;
|
|
31540
|
+
height: 6px;
|
|
31541
|
+
background: #fff;
|
|
31658
31542
|
}
|
|
31659
31543
|
|
|
31660
|
-
.
|
|
31661
|
-
|
|
31544
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
31545
|
+
opacity: 0.5;
|
|
31662
31546
|
}
|
|
31663
31547
|
|
|
31664
|
-
.
|
|
31665
|
-
|
|
31666
|
-
|
|
31548
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
31549
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31550
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31667
31551
|
}
|
|
31668
31552
|
|
|
31669
|
-
.
|
|
31670
|
-
|
|
31671
|
-
justify-content: space-between;
|
|
31672
|
-
height: 20px;
|
|
31673
|
-
line-height: 20px;
|
|
31553
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
31554
|
+
background: #00122e;
|
|
31674
31555
|
}
|
|
31675
31556
|
|
|
31676
|
-
.
|
|
31677
|
-
color: #
|
|
31678
|
-
|
|
31679
|
-
text-overflow: ellipsis;
|
|
31557
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
31558
|
+
color: #00122e;
|
|
31559
|
+
opacity: 0.5;
|
|
31680
31560
|
}
|
|
31681
31561
|
|
|
31682
|
-
.
|
|
31683
|
-
|
|
31684
|
-
justify-content: space-between;
|
|
31685
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31686
|
-
height: 18px;
|
|
31687
|
-
line-height: 18px;
|
|
31688
|
-
margin-top: 2px;
|
|
31562
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
31563
|
+
color: #00122e;
|
|
31689
31564
|
}
|
|
31690
31565
|
|
|
31691
|
-
.
|
|
31692
|
-
|
|
31693
|
-
|
|
31694
|
-
|
|
31566
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
31567
|
+
display: inline-block;
|
|
31568
|
+
padding: 0;
|
|
31569
|
+
padding-left: 12px;
|
|
31695
31570
|
}
|
|
31696
31571
|
|
|
31697
|
-
.
|
|
31698
|
-
|
|
31572
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
31573
|
+
margin-bottom: 0;
|
|
31574
|
+
white-space: pre-wrap;
|
|
31575
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31576
|
+
}
|
|
31577
|
+
|
|
31578
|
+
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31579
|
+
padding-left: 8px;
|
|
31580
|
+
}
|
|
31581
|
+
|
|
31582
|
+
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31583
|
+
border-radius: 5px 0 0 5px;
|
|
31584
|
+
}
|
|
31585
|
+
|
|
31586
|
+
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31587
|
+
border-radius: 0 5px 5px 0;
|
|
31588
|
+
}
|
|
31589
|
+
|
|
31590
|
+
.E_rcc63c8 {
|
|
31591
|
+
color: #00122e;
|
|
31592
|
+
border-color: #ccd4e3;
|
|
31593
|
+
}
|
|
31594
|
+
|
|
31595
|
+
.E_rcc63c8:first-child {
|
|
31596
|
+
border-color: #a3b4cc;
|
|
31597
|
+
}
|
|
31598
|
+
|
|
31599
|
+
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31600
|
+
padding: 0 12px;
|
|
31601
|
+
line-height: 32px;
|
|
31699
31602
|
height: 32px;
|
|
31603
|
+
}
|
|
31604
|
+
|
|
31605
|
+
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31606
|
+
white-space: nowrap;
|
|
31607
|
+
}
|
|
31608
|
+
|
|
31609
|
+
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31610
|
+
height: 22px;
|
|
31611
|
+
padding: 0 7px;
|
|
31612
|
+
line-height: 20px;
|
|
31613
|
+
}
|
|
31614
|
+
|
|
31615
|
+
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31616
|
+
background: #ccd4e3;
|
|
31617
|
+
}
|
|
31618
|
+
|
|
31619
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31620
|
+
background: #0080ff;
|
|
31621
|
+
}
|
|
31622
|
+
|
|
31623
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31624
|
+
background: #ccd4e3;
|
|
31625
|
+
opacity: 0.5;
|
|
31626
|
+
}
|
|
31627
|
+
|
|
31628
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31629
|
+
border-right-color: #0080ff;
|
|
31630
|
+
}
|
|
31631
|
+
|
|
31632
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31633
|
+
border-color: #0080ff;
|
|
31634
|
+
}
|
|
31635
|
+
|
|
31636
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
31637
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31638
|
+
}
|
|
31639
|
+
|
|
31640
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
31641
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31642
|
+
border-color: #ccd4e3;
|
|
31643
|
+
opacity: 0.5;
|
|
31644
|
+
}
|
|
31645
|
+
|
|
31646
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
|
|
31647
|
+
color: #00122e;
|
|
31648
|
+
border-color: #ccd4e3;
|
|
31649
|
+
}
|
|
31650
|
+
|
|
31651
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
31652
|
+
color: #00122e;
|
|
31653
|
+
border-color: #ccd4e3;
|
|
31654
|
+
background: rgba(172, 186, 211, 0.6);
|
|
31655
|
+
}
|
|
31656
|
+
|
|
31657
|
+
.E_rcc63c8 .ant-radio-button-input {
|
|
31658
|
+
margin-right: 8px;
|
|
31659
|
+
display: inline;
|
|
31660
|
+
border: none;
|
|
31661
|
+
padding: 0;
|
|
31662
|
+
width: 36px;
|
|
31663
|
+
background: transparent;
|
|
31664
|
+
}
|
|
31665
|
+
|
|
31666
|
+
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
31667
|
+
box-shadow: none;
|
|
31668
|
+
}
|
|
31669
|
+
|
|
31670
|
+
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
31671
|
+
margin-right: 0;
|
|
31672
|
+
width: initial;
|
|
31673
|
+
box-shadow: none;
|
|
31674
|
+
}
|
|
31675
|
+
|
|
31676
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
31677
|
+
display: none;
|
|
31678
|
+
}
|
|
31679
|
+
|
|
31680
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
|
|
31681
|
+
display: inline;
|
|
31682
|
+
}
|
|
31683
|
+
|
|
31684
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
31685
|
+
display: inline;
|
|
31686
|
+
margin-right: 8px;
|
|
31687
|
+
padding: 0;
|
|
31688
|
+
width: 36px;
|
|
31689
|
+
}
|
|
31690
|
+
|
|
31691
|
+
.E_tju3gfj .date {
|
|
31692
|
+
margin-right: 4px;
|
|
31693
|
+
}
|
|
31694
|
+
|
|
31695
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
31696
|
+
margin-right: 8px;
|
|
31697
|
+
}
|
|
31698
|
+
|
|
31699
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
31700
|
+
margin-left: 8px;
|
|
31701
|
+
}
|
|
31702
|
+
|
|
31703
|
+
.E_cc368xp {
|
|
31704
|
+
color: #00122e;
|
|
31705
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
31706
|
+
margin-right: 8px;
|
|
31707
|
+
padding-right: 8px;
|
|
31708
|
+
}
|
|
31709
|
+
|
|
31710
|
+
.E_i11o6xqj {
|
|
31711
|
+
display: flex;
|
|
31712
|
+
gap: 4px;
|
|
31713
|
+
}
|
|
31714
|
+
|
|
31715
|
+
.E_i11o6xqj .icon-wrapper {
|
|
31716
|
+
cursor: pointer;
|
|
31717
|
+
}
|
|
31718
|
+
|
|
31719
|
+
.E_d19ruhdj.icon-wrapper {
|
|
31720
|
+
cursor: not-allowed;
|
|
31721
|
+
}
|
|
31722
|
+
|
|
31723
|
+
.E_iq1gosr {
|
|
31724
|
+
display: inline-block;
|
|
31725
|
+
}
|
|
31726
|
+
|
|
31727
|
+
.E_fzh9mnb {
|
|
31700
31728
|
width: 100%;
|
|
31701
|
-
|
|
31729
|
+
height: 100%;
|
|
31730
|
+
min-height: 124px;
|
|
31731
|
+
display: flex;
|
|
31732
|
+
flex-direction: column;
|
|
31733
|
+
justify-content: center;
|
|
31734
|
+
align-items: center;
|
|
31735
|
+
}
|
|
31736
|
+
|
|
31737
|
+
.E_fzh9mnb .error-text {
|
|
31738
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31739
|
+
margin-bottom: 16px;
|
|
31740
|
+
font-size: 18px;
|
|
31741
|
+
}
|
|
31742
|
+
|
|
31743
|
+
.E_f7pxqmh {
|
|
31744
|
+
width: 100%;
|
|
31745
|
+
margin-bottom: 0 !important;
|
|
31746
|
+
flex-flow: nowrap !important;
|
|
31747
|
+
line-break: auto;
|
|
31748
|
+
}
|
|
31749
|
+
|
|
31750
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
31751
|
+
text-align: left !important;
|
|
31752
|
+
padding-bottom: 0 !important;
|
|
31753
|
+
}
|
|
31754
|
+
|
|
31755
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31756
|
+
min-height: 32px;
|
|
31757
|
+
height: auto;
|
|
31758
|
+
font-size: 13px;
|
|
31759
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31760
|
+
white-space: normal;
|
|
31761
|
+
}
|
|
31762
|
+
|
|
31763
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31764
|
+
border-color: #ff4d4f !important;
|
|
31765
|
+
}
|
|
31766
|
+
|
|
31767
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31768
|
+
border-color: #ff4d4f !important;
|
|
31769
|
+
}
|
|
31770
|
+
|
|
31771
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
31772
|
+
margin-top: 4px;
|
|
31773
|
+
font-size: 12px;
|
|
31774
|
+
min-height: 0px;
|
|
31775
|
+
}
|
|
31776
|
+
|
|
31777
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
31778
|
+
font-size: 12px;
|
|
31779
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31780
|
+
min-height: 0px;
|
|
31702
31781
|
}
|
|
31703
31782
|
|
|
31704
31783
|
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
@@ -31771,46 +31850,6 @@ button.E_n7k2c6r {
|
|
|
31771
31850
|
padding: 2px 8px;
|
|
31772
31851
|
}
|
|
31773
31852
|
|
|
31774
|
-
.E_f7pxqmh {
|
|
31775
|
-
width: 100%;
|
|
31776
|
-
margin-bottom: 0 !important;
|
|
31777
|
-
flex-flow: nowrap !important;
|
|
31778
|
-
line-break: auto;
|
|
31779
|
-
}
|
|
31780
|
-
|
|
31781
|
-
.E_f7pxqmh > .ant-form-item-label {
|
|
31782
|
-
text-align: left !important;
|
|
31783
|
-
padding-bottom: 0 !important;
|
|
31784
|
-
}
|
|
31785
|
-
|
|
31786
|
-
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31787
|
-
min-height: 32px;
|
|
31788
|
-
height: auto;
|
|
31789
|
-
font-size: 13px;
|
|
31790
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31791
|
-
white-space: normal;
|
|
31792
|
-
}
|
|
31793
|
-
|
|
31794
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31795
|
-
border-color: #ff4d4f !important;
|
|
31796
|
-
}
|
|
31797
|
-
|
|
31798
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31799
|
-
border-color: #ff4d4f !important;
|
|
31800
|
-
}
|
|
31801
|
-
|
|
31802
|
-
.E_f7pxqmh .ant-form-item-explain {
|
|
31803
|
-
margin-top: 4px;
|
|
31804
|
-
font-size: 12px;
|
|
31805
|
-
min-height: 0px;
|
|
31806
|
-
}
|
|
31807
|
-
|
|
31808
|
-
.E_f7pxqmh .ant-form-item-extra {
|
|
31809
|
-
font-size: 12px;
|
|
31810
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31811
|
-
min-height: 0px;
|
|
31812
|
-
}
|
|
31813
|
-
|
|
31814
31853
|
.E_iouxfgt {
|
|
31815
31854
|
display: inline-flex;
|
|
31816
31855
|
align-items: center;
|
|
@@ -31832,10 +31871,6 @@ button.E_n7k2c6r {
|
|
|
31832
31871
|
animation: rotate 680ms linear infinite;
|
|
31833
31872
|
}
|
|
31834
31873
|
|
|
31835
|
-
.E_iq1gosr {
|
|
31836
|
-
display: inline-block;
|
|
31837
|
-
}
|
|
31838
|
-
|
|
31839
31874
|
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
31840
31875
|
display: var(--a1wfy30z-0);
|
|
31841
31876
|
}
|
|
@@ -31871,120 +31906,6 @@ button.E_n7k2c6r {
|
|
|
31871
31906
|
font-size: inherit;
|
|
31872
31907
|
}
|
|
31873
31908
|
|
|
31874
|
-
.E_s1sck0th {
|
|
31875
|
-
padding: 0 8px;
|
|
31876
|
-
border-radius: 4px;
|
|
31877
|
-
}
|
|
31878
|
-
|
|
31879
|
-
.E_m855nr1 {
|
|
31880
|
-
padding: 2px 8px;
|
|
31881
|
-
border-radius: 3px;
|
|
31882
|
-
}
|
|
31883
|
-
|
|
31884
|
-
.E_l1270xpg {
|
|
31885
|
-
padding: 3px 8px;
|
|
31886
|
-
border-radius: 2px;
|
|
31887
|
-
}
|
|
31888
|
-
|
|
31889
|
-
.E_t14rextb.ant-tag:hover {
|
|
31890
|
-
opacity: unset;
|
|
31891
|
-
}
|
|
31892
|
-
|
|
31893
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
31894
|
-
margin: 0;
|
|
31895
|
-
margin-right: 8px;
|
|
31896
|
-
display: inline-flex;
|
|
31897
|
-
align-items: center;
|
|
31898
|
-
border: none;
|
|
31899
|
-
}
|
|
31900
|
-
|
|
31901
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
31902
|
-
width: 16px;
|
|
31903
|
-
height: 16px;
|
|
31904
|
-
color: inherit;
|
|
31905
|
-
margin-left: 4px;
|
|
31906
|
-
opacity: 0.6;
|
|
31907
|
-
display: inline-flex;
|
|
31908
|
-
}
|
|
31909
|
-
|
|
31910
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
31911
|
-
opacity: 1;
|
|
31912
|
-
}
|
|
31913
|
-
|
|
31914
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
31915
|
-
color: #0080ff;
|
|
31916
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
31917
|
-
}
|
|
31918
|
-
|
|
31919
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
31920
|
-
color: #f0483e;
|
|
31921
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
31922
|
-
}
|
|
31923
|
-
|
|
31924
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
31925
|
-
color: #e07f00;
|
|
31926
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
31927
|
-
}
|
|
31928
|
-
|
|
31929
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
31930
|
-
color: #008f4c;
|
|
31931
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
31932
|
-
}
|
|
31933
|
-
|
|
31934
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
31935
|
-
color: #1d326c;
|
|
31936
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
31937
|
-
}
|
|
31938
|
-
|
|
31939
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
31940
|
-
color: #7E41FF;
|
|
31941
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
31942
|
-
}
|
|
31943
|
-
|
|
31944
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
31945
|
-
color: #fff;
|
|
31946
|
-
}
|
|
31947
|
-
|
|
31948
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
31949
|
-
background-color: #f0483e;
|
|
31950
|
-
}
|
|
31951
|
-
|
|
31952
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
31953
|
-
background-color: #fea008;
|
|
31954
|
-
}
|
|
31955
|
-
|
|
31956
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
31957
|
-
background-color: #00ba5d;
|
|
31958
|
-
}
|
|
31959
|
-
|
|
31960
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
31961
|
-
background-color: #0080ff;
|
|
31962
|
-
}
|
|
31963
|
-
|
|
31964
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
31965
|
-
background-color: #6b7d99;
|
|
31966
|
-
}
|
|
31967
|
-
|
|
31968
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
31969
|
-
background-color: #7E41FF;
|
|
31970
|
-
}
|
|
31971
|
-
|
|
31972
|
-
.E_fzh9mnb {
|
|
31973
|
-
width: 100%;
|
|
31974
|
-
height: 100%;
|
|
31975
|
-
min-height: 124px;
|
|
31976
|
-
display: flex;
|
|
31977
|
-
flex-direction: column;
|
|
31978
|
-
justify-content: center;
|
|
31979
|
-
align-items: center;
|
|
31980
|
-
}
|
|
31981
|
-
|
|
31982
|
-
.E_fzh9mnb .error-text {
|
|
31983
|
-
color: rgba(10, 37, 85, 0.6);
|
|
31984
|
-
margin-bottom: 16px;
|
|
31985
|
-
font-size: 18px;
|
|
31986
|
-
}
|
|
31987
|
-
|
|
31988
31909
|
.E_i1inqkme {
|
|
31989
31910
|
height: 18px;
|
|
31990
31911
|
line-height: 18px;
|
|
@@ -32011,13 +31932,45 @@ button.E_n7k2c6r {
|
|
|
32011
31932
|
visibility: hidden;
|
|
32012
31933
|
}
|
|
32013
31934
|
|
|
32014
|
-
.
|
|
32015
|
-
|
|
31935
|
+
.E_atcz0kf .ant-input-suffix {
|
|
31936
|
+
margin-left: 8px;
|
|
32016
31937
|
}
|
|
32017
31938
|
|
|
32018
|
-
.
|
|
32019
|
-
|
|
32020
|
-
|
|
31939
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31940
|
+
padding: 2px 7px 2px 12px;
|
|
31941
|
+
}
|
|
31942
|
+
|
|
31943
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
31944
|
+
display: inline-flex;
|
|
31945
|
+
align-items: center;
|
|
31946
|
+
justify-content: center;
|
|
31947
|
+
color: #fff;
|
|
31948
|
+
font-weight: bold;
|
|
31949
|
+
font-size: 12px;
|
|
31950
|
+
width: 24px;
|
|
31951
|
+
height: 24px;
|
|
31952
|
+
border-radius: 50%;
|
|
31953
|
+
background: var(--a1b5xrg3-0);
|
|
31954
|
+
}
|
|
31955
|
+
|
|
31956
|
+
.E_a1b5xrg3.btn-item {
|
|
31957
|
+
transition: all 160ms ease;
|
|
31958
|
+
cursor: pointer;
|
|
31959
|
+
width: 56px;
|
|
31960
|
+
height: 40px;
|
|
31961
|
+
display: inline-flex;
|
|
31962
|
+
align-items: center;
|
|
31963
|
+
justify-content: center;
|
|
31964
|
+
border-radius: 6px;
|
|
31965
|
+
}
|
|
31966
|
+
|
|
31967
|
+
.E_a1b5xrg3.btn-item:hover {
|
|
31968
|
+
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
31969
|
+
}
|
|
31970
|
+
|
|
31971
|
+
.E_a1b5xrg3.btn-item:active {
|
|
31972
|
+
transform: translateY(2px);
|
|
31973
|
+
transition: all 320ms ease;
|
|
32021
31974
|
}
|
|
32022
31975
|
|
|
32023
31976
|
.E_dsnbhzf {
|
|
@@ -32495,37 +32448,13 @@ button.E_n7k2c6r {
|
|
|
32495
32448
|
line-height: 12px;
|
|
32496
32449
|
}
|
|
32497
32450
|
|
|
32498
|
-
.
|
|
32499
|
-
display: inline-
|
|
32500
|
-
align-items: center;
|
|
32501
|
-
justify-content: center;
|
|
32502
|
-
color: #fff;
|
|
32503
|
-
font-weight: bold;
|
|
32504
|
-
font-size: 12px;
|
|
32505
|
-
width: 24px;
|
|
32506
|
-
height: 24px;
|
|
32507
|
-
border-radius: 50%;
|
|
32508
|
-
background: var(--a1b5xrg3-0);
|
|
32509
|
-
}
|
|
32510
|
-
|
|
32511
|
-
.E_a1b5xrg3.btn-item {
|
|
32512
|
-
transition: all 160ms ease;
|
|
32513
|
-
cursor: pointer;
|
|
32514
|
-
width: 56px;
|
|
32515
|
-
height: 40px;
|
|
32516
|
-
display: inline-flex;
|
|
32517
|
-
align-items: center;
|
|
32518
|
-
justify-content: center;
|
|
32519
|
-
border-radius: 6px;
|
|
32520
|
-
}
|
|
32521
|
-
|
|
32522
|
-
.E_a1b5xrg3.btn-item:hover {
|
|
32523
|
-
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
32451
|
+
.E_owd0kml {
|
|
32452
|
+
display: inline-block;
|
|
32524
32453
|
}
|
|
32525
32454
|
|
|
32526
|
-
.
|
|
32527
|
-
|
|
32528
|
-
|
|
32455
|
+
.E_h1jsgezc {
|
|
32456
|
+
visibility: hidden;
|
|
32457
|
+
position: absolute;
|
|
32529
32458
|
}
|
|
32530
32459
|
|
|
32531
32460
|
.E_m196gn1d {
|
|
@@ -33224,12 +33153,12 @@ input.E_rf8rlle.ant-input {
|
|
|
33224
33153
|
border-bottom-left-radius: 0;
|
|
33225
33154
|
}
|
|
33226
33155
|
|
|
33227
|
-
.E_llt2k48.ant-select, .E_llt2k48.ant-select .ant-select-selector {
|
|
33156
|
+
.E_llt2k48.ant-select.select, .E_llt2k48.ant-select.select .ant-select-selector {
|
|
33228
33157
|
border-top-right-radius: 0;
|
|
33229
33158
|
border-bottom-right-radius: 0;
|
|
33230
33159
|
}
|
|
33231
33160
|
|
|
33232
|
-
.E_rdwz7eh.ant-select, .E_rdwz7eh.ant-select .ant-select-selector {
|
|
33161
|
+
.E_rdwz7eh.ant-select.select, .E_rdwz7eh.ant-select.select .ant-select-selector {
|
|
33233
33162
|
border-top-left-radius: 0;
|
|
33234
33163
|
border-bottom-left-radius: 0;
|
|
33235
33164
|
}
|
|
@@ -33326,72 +33255,343 @@ input.E_rf8rlle.ant-input {
|
|
|
33326
33255
|
padding: unset;
|
|
33327
33256
|
}
|
|
33328
33257
|
|
|
33329
|
-
.
|
|
33330
|
-
height: 24px;
|
|
33331
|
-
width: 24px;
|
|
33258
|
+
.E_s17wv897.ant-select, .E_s17wv897.ant-select .ant-select-selector {
|
|
33332
33259
|
border-radius: 6px;
|
|
33333
|
-
padding: 4px;
|
|
33334
33260
|
}
|
|
33335
33261
|
|
|
33336
|
-
.
|
|
33337
|
-
|
|
33262
|
+
.E_s17wv897.ant-select.ant-select-single {
|
|
33263
|
+
width: 100%;
|
|
33264
|
+
color: #2d3a56;
|
|
33265
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
33266
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
33267
|
+
font-size: 13px;
|
|
33338
33268
|
}
|
|
33339
33269
|
|
|
33340
|
-
.
|
|
33341
|
-
|
|
33270
|
+
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
33271
|
+
height: 30px;
|
|
33342
33272
|
}
|
|
33343
33273
|
|
|
33344
|
-
.
|
|
33345
|
-
|
|
33346
|
-
|
|
33274
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
33275
|
+
height: 38px;
|
|
33276
|
+
font-size: 13px;
|
|
33347
33277
|
}
|
|
33348
33278
|
|
|
33349
|
-
.
|
|
33350
|
-
|
|
33351
|
-
|
|
33352
|
-
|
|
33279
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
33280
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
33281
|
+
transition: 160ms ease;
|
|
33282
|
+
}
|
|
33283
|
+
|
|
33284
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
33353
33285
|
color: #0080ff;
|
|
33354
|
-
background: rgba(0, 136, 255, 0.1);
|
|
33355
|
-
display: flex;
|
|
33356
|
-
align-items: center;
|
|
33357
|
-
justify-content: center;
|
|
33358
|
-
margin-right: 6px;
|
|
33359
33286
|
}
|
|
33360
33287
|
|
|
33361
|
-
.
|
|
33362
|
-
|
|
33288
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
33289
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
33290
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
33363
33291
|
}
|
|
33364
33292
|
|
|
33365
|
-
.
|
|
33366
|
-
color:
|
|
33293
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
33294
|
+
color: #0080ff;
|
|
33367
33295
|
}
|
|
33368
33296
|
|
|
33369
|
-
.
|
|
33370
|
-
|
|
33297
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
33298
|
+
border-color: #0080ff;
|
|
33299
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
33371
33300
|
}
|
|
33372
33301
|
|
|
33373
|
-
.
|
|
33374
|
-
|
|
33375
|
-
flex-direction: row;
|
|
33376
|
-
justify-content: space-between;
|
|
33302
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33303
|
+
transform: rotate(180deg);
|
|
33377
33304
|
}
|
|
33378
33305
|
|
|
33379
|
-
.
|
|
33380
|
-
|
|
33381
|
-
|
|
33306
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
33307
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33308
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
33309
|
+
cursor: "not-allowed";
|
|
33382
33310
|
}
|
|
33383
33311
|
|
|
33384
|
-
.
|
|
33385
|
-
|
|
33386
|
-
flex-direction: column;
|
|
33387
|
-
justify-content: center;
|
|
33388
|
-
align-items: center;
|
|
33389
|
-
height: 240px;
|
|
33390
|
-
width: 432px;
|
|
33312
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
33313
|
+
border-color: #f0483e !important;
|
|
33391
33314
|
}
|
|
33392
33315
|
|
|
33393
|
-
.
|
|
33394
|
-
|
|
33316
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
33317
|
+
color: #1d326c;
|
|
33318
|
+
}
|
|
33319
|
+
|
|
33320
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
33321
|
+
border-color: #0080ff;
|
|
33322
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
33323
|
+
}
|
|
33324
|
+
|
|
33325
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33326
|
+
transform: rotate(180deg);
|
|
33327
|
+
}
|
|
33328
|
+
|
|
33329
|
+
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
33330
|
+
opacity: 1;
|
|
33331
|
+
}
|
|
33332
|
+
|
|
33333
|
+
.E_s4ivdfu.ant-select.select-loading-value {
|
|
33334
|
+
pointer-events: none;
|
|
33335
|
+
}
|
|
33336
|
+
|
|
33337
|
+
.E_sks9xr8.ant-select .select-hover-suffix,
|
|
33338
|
+
.E_sks9xr8.ant-select .select-active-suffix,
|
|
33339
|
+
.E_sks9xr8.ant-select .select-expanded-suffix,
|
|
33340
|
+
.E_sks9xr8.ant-select .select-expanded-search-suffix,
|
|
33341
|
+
.E_sks9xr8.ant-select .select-focus-suffix,
|
|
33342
|
+
.E_sks9xr8.ant-select .select-error-suffix,
|
|
33343
|
+
.E_sks9xr8.ant-select .select-error-hover-suffix,
|
|
33344
|
+
.E_sks9xr8.ant-select .select-error-active-suffix,
|
|
33345
|
+
.E_sks9xr8.ant-select .select-error-expanded-suffix,
|
|
33346
|
+
.E_sks9xr8.ant-select .select-error-expanded-search-suffix,
|
|
33347
|
+
.E_sks9xr8.ant-select .select-error-focus-suffix {
|
|
33348
|
+
display: none;
|
|
33349
|
+
width: 16px;
|
|
33350
|
+
height: 16px;
|
|
33351
|
+
}
|
|
33352
|
+
|
|
33353
|
+
.E_sks9xr8.ant-select.ant-select-disabled .select-suffix {
|
|
33354
|
+
opacity: 0.5;
|
|
33355
|
+
}
|
|
33356
|
+
|
|
33357
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-suffix {
|
|
33358
|
+
display: none;
|
|
33359
|
+
}
|
|
33360
|
+
|
|
33361
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-expanded-search-suffix {
|
|
33362
|
+
display: inline;
|
|
33363
|
+
}
|
|
33364
|
+
|
|
33365
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-suffix {
|
|
33366
|
+
display: none;
|
|
33367
|
+
}
|
|
33368
|
+
|
|
33369
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-expanded-suffix {
|
|
33370
|
+
display: inline;
|
|
33371
|
+
}
|
|
33372
|
+
|
|
33373
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-suffix {
|
|
33374
|
+
display: none;
|
|
33375
|
+
}
|
|
33376
|
+
|
|
33377
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-hover-suffix {
|
|
33378
|
+
display: inline;
|
|
33379
|
+
}
|
|
33380
|
+
|
|
33381
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-suffix {
|
|
33382
|
+
display: none;
|
|
33383
|
+
}
|
|
33384
|
+
|
|
33385
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-active-suffix {
|
|
33386
|
+
display: inline;
|
|
33387
|
+
}
|
|
33388
|
+
|
|
33389
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-suffix {
|
|
33390
|
+
display: none;
|
|
33391
|
+
}
|
|
33392
|
+
|
|
33393
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-focus-suffix {
|
|
33394
|
+
display: inline;
|
|
33395
|
+
}
|
|
33396
|
+
|
|
33397
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-suffix {
|
|
33398
|
+
display: none;
|
|
33399
|
+
}
|
|
33400
|
+
|
|
33401
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-error-expanded-search-suffix {
|
|
33402
|
+
display: inline;
|
|
33403
|
+
}
|
|
33404
|
+
|
|
33405
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-suffix {
|
|
33406
|
+
display: none;
|
|
33407
|
+
}
|
|
33408
|
+
|
|
33409
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-error-expanded-suffix {
|
|
33410
|
+
display: inline;
|
|
33411
|
+
}
|
|
33412
|
+
|
|
33413
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-suffix {
|
|
33414
|
+
display: none;
|
|
33415
|
+
}
|
|
33416
|
+
|
|
33417
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-error-suffix {
|
|
33418
|
+
display: inline;
|
|
33419
|
+
}
|
|
33420
|
+
|
|
33421
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-suffix,
|
|
33422
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-suffix {
|
|
33423
|
+
display: none;
|
|
33424
|
+
}
|
|
33425
|
+
|
|
33426
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-hover-suffix {
|
|
33427
|
+
display: inline;
|
|
33428
|
+
}
|
|
33429
|
+
|
|
33430
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-suffix,
|
|
33431
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-suffix {
|
|
33432
|
+
display: none;
|
|
33433
|
+
}
|
|
33434
|
+
|
|
33435
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-active-suffix {
|
|
33436
|
+
display: inline;
|
|
33437
|
+
}
|
|
33438
|
+
|
|
33439
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-suffix,
|
|
33440
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
33441
|
+
display: none;
|
|
33442
|
+
}
|
|
33443
|
+
|
|
33444
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
33445
|
+
display: inline;
|
|
33446
|
+
}
|
|
33447
|
+
|
|
33448
|
+
.E_swwhohx.ant-select .ant-select-selector {
|
|
33449
|
+
padding: 0 7px 0 12px;
|
|
33450
|
+
}
|
|
33451
|
+
|
|
33452
|
+
.E_swwhohx.ant-select .ant-select-arrow {
|
|
33453
|
+
right: 8px;
|
|
33454
|
+
top: 50%;
|
|
33455
|
+
margin-top: -8px;
|
|
33456
|
+
width: 16px;
|
|
33457
|
+
height: 16px;
|
|
33458
|
+
display: flex;
|
|
33459
|
+
align-items: center;
|
|
33460
|
+
}
|
|
33461
|
+
|
|
33462
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
33463
|
+
padding: 0 11px 0 16px;
|
|
33464
|
+
}
|
|
33465
|
+
|
|
33466
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
33467
|
+
right: 12px;
|
|
33468
|
+
}
|
|
33469
|
+
|
|
33470
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
33471
|
+
padding: 0 3px 0 8px;
|
|
33472
|
+
}
|
|
33473
|
+
|
|
33474
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
33475
|
+
right: 4px;
|
|
33476
|
+
}
|
|
33477
|
+
|
|
33478
|
+
.E_swwhohx.ant-select .ant-select-selection-item {
|
|
33479
|
+
padding-right: 24px;
|
|
33480
|
+
}
|
|
33481
|
+
|
|
33482
|
+
.E_p2sxmsl {
|
|
33483
|
+
color: rgba(0, 21, 64, 0.3);
|
|
33484
|
+
}
|
|
33485
|
+
|
|
33486
|
+
.E_oa99sl3 {
|
|
33487
|
+
display: flex;
|
|
33488
|
+
justify-content: space-between;
|
|
33489
|
+
align-items: center;
|
|
33490
|
+
gap: 8px;
|
|
33491
|
+
}
|
|
33492
|
+
|
|
33493
|
+
.E_oa99sl3,
|
|
33494
|
+
.E_oa99sl3 :first-child {
|
|
33495
|
+
line-height: inherit !important;
|
|
33496
|
+
}
|
|
33497
|
+
|
|
33498
|
+
.E_lvp5pj7 {
|
|
33499
|
+
display: flex;
|
|
33500
|
+
justify-content: space-between;
|
|
33501
|
+
align-items: center;
|
|
33502
|
+
gap: 8px;
|
|
33503
|
+
min-width: 0;
|
|
33504
|
+
}
|
|
33505
|
+
|
|
33506
|
+
.E_s1io1lws {
|
|
33507
|
+
display: flex;
|
|
33508
|
+
align-items: center;
|
|
33509
|
+
flex-shrink: 0;
|
|
33510
|
+
}
|
|
33511
|
+
|
|
33512
|
+
.E_suhck3k {
|
|
33513
|
+
height: 24px;
|
|
33514
|
+
width: 24px;
|
|
33515
|
+
border-radius: 6px;
|
|
33516
|
+
padding: 4px;
|
|
33517
|
+
}
|
|
33518
|
+
|
|
33519
|
+
.E_suhck3k:hover {
|
|
33520
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
33521
|
+
}
|
|
33522
|
+
|
|
33523
|
+
.E_suhck3k:hover svg path {
|
|
33524
|
+
fill: blue;
|
|
33525
|
+
}
|
|
33526
|
+
|
|
33527
|
+
.E_ryby9ds {
|
|
33528
|
+
display: flex;
|
|
33529
|
+
align-items: center;
|
|
33530
|
+
}
|
|
33531
|
+
|
|
33532
|
+
.E_ryby9ds .order {
|
|
33533
|
+
height: 24px;
|
|
33534
|
+
width: 24px;
|
|
33535
|
+
border-radius: 20px;
|
|
33536
|
+
color: #0080ff;
|
|
33537
|
+
background: rgba(0, 136, 255, 0.1);
|
|
33538
|
+
display: flex;
|
|
33539
|
+
align-items: center;
|
|
33540
|
+
justify-content: center;
|
|
33541
|
+
margin-right: 6px;
|
|
33542
|
+
}
|
|
33543
|
+
|
|
33544
|
+
.E_w1dxz879 {
|
|
33545
|
+
display: flex;
|
|
33546
|
+
flex-direction: column;
|
|
33547
|
+
gap: 6px;
|
|
33548
|
+
}
|
|
33549
|
+
|
|
33550
|
+
.E_w1dxz879 .ellipsis-tooltip {
|
|
33551
|
+
max-height: var(--w1dxz879-0);
|
|
33552
|
+
text-overflow: clip;
|
|
33553
|
+
overflow: hidden;
|
|
33554
|
+
}
|
|
33555
|
+
|
|
33556
|
+
.E_w1dxz879 .tips {
|
|
33557
|
+
color: #fff;
|
|
33558
|
+
opacity: 0.8;
|
|
33559
|
+
}
|
|
33560
|
+
|
|
33561
|
+
.E_hrhfj7c {
|
|
33562
|
+
display: none;
|
|
33563
|
+
}
|
|
33564
|
+
|
|
33565
|
+
.E_dt9qoak .bottom {
|
|
33566
|
+
color: rgba(44, 56, 82, 0.75);
|
|
33567
|
+
}
|
|
33568
|
+
|
|
33569
|
+
.E_dt9qoak .left {
|
|
33570
|
+
min-width: 0;
|
|
33571
|
+
}
|
|
33572
|
+
|
|
33573
|
+
.E_crhnxq5 {
|
|
33574
|
+
display: flex;
|
|
33575
|
+
flex-direction: row;
|
|
33576
|
+
justify-content: space-between;
|
|
33577
|
+
}
|
|
33578
|
+
|
|
33579
|
+
.E_crhnxq5 .label {
|
|
33580
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33581
|
+
font-weight: 400;
|
|
33582
|
+
}
|
|
33583
|
+
|
|
33584
|
+
.E_c1iq43vd {
|
|
33585
|
+
display: flex;
|
|
33586
|
+
flex-direction: column;
|
|
33587
|
+
justify-content: center;
|
|
33588
|
+
align-items: center;
|
|
33589
|
+
height: 240px;
|
|
33590
|
+
width: 432px;
|
|
33591
|
+
}
|
|
33592
|
+
|
|
33593
|
+
.E_c1h2v0a8.ant-input-affix-wrapper {
|
|
33594
|
+
border-radius: 0px;
|
|
33395
33595
|
box-shadow: unset;
|
|
33396
33596
|
border: 0;
|
|
33397
33597
|
border-bottom: 1px solid #e4e9f2;
|
|
@@ -33620,23 +33820,6 @@ input.E_rf8rlle.ant-input {
|
|
|
33620
33820
|
font-size: 14px;
|
|
33621
33821
|
}
|
|
33622
33822
|
|
|
33623
|
-
.E_w1dxz879 {
|
|
33624
|
-
display: flex;
|
|
33625
|
-
flex-direction: column;
|
|
33626
|
-
gap: 6px;
|
|
33627
|
-
}
|
|
33628
|
-
|
|
33629
|
-
.E_w1dxz879 .ellipsis-tooltip {
|
|
33630
|
-
max-height: var(--w1dxz879-0);
|
|
33631
|
-
text-overflow: clip;
|
|
33632
|
-
overflow: hidden;
|
|
33633
|
-
}
|
|
33634
|
-
|
|
33635
|
-
.E_w1dxz879 .tips {
|
|
33636
|
-
color: #fff;
|
|
33637
|
-
opacity: 0.8;
|
|
33638
|
-
}
|
|
33639
|
-
|
|
33640
33823
|
.E_h12yihis {
|
|
33641
33824
|
height: 50px;
|
|
33642
33825
|
border-bottom: 2px solid #edf0f7;
|
|
@@ -34459,182 +34642,113 @@ input.E_rf8rlle.ant-input {
|
|
|
34459
34642
|
padding: 0;
|
|
34460
34643
|
}
|
|
34461
34644
|
|
|
34462
|
-
.
|
|
34463
|
-
|
|
34645
|
+
.E_c1yd35n {
|
|
34646
|
+
padding: 0 12px 14px 12px;
|
|
34464
34647
|
}
|
|
34465
34648
|
|
|
34466
|
-
.
|
|
34467
|
-
|
|
34468
|
-
padding
|
|
34649
|
+
.E_c1kghdax {
|
|
34650
|
+
color: #2d3a56;
|
|
34651
|
+
padding: 7px 12px;
|
|
34652
|
+
display: flex;
|
|
34653
|
+
justify-content: space-between;
|
|
34654
|
+
align-items: center;
|
|
34469
34655
|
}
|
|
34470
34656
|
|
|
34471
|
-
.
|
|
34472
|
-
|
|
34657
|
+
.E_c1kghdax.has-arrow {
|
|
34658
|
+
padding-left: 10px;
|
|
34473
34659
|
}
|
|
34474
34660
|
|
|
34475
|
-
.
|
|
34476
|
-
|
|
34477
|
-
|
|
34478
|
-
|
|
34479
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
34480
|
-
padding-left: 12px;
|
|
34481
|
-
padding-right: 12px;
|
|
34482
|
-
}
|
|
34483
|
-
|
|
34484
|
-
.E_ckld275 {
|
|
34485
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
34661
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
34662
|
+
cursor: pointer;
|
|
34663
|
+
color: #00122e;
|
|
34486
34664
|
}
|
|
34487
34665
|
|
|
34488
|
-
.
|
|
34489
|
-
|
|
34490
|
-
|
|
34666
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
34667
|
+
color: #2d3a56;
|
|
34668
|
+
font-weight: 600;
|
|
34491
34669
|
}
|
|
34492
34670
|
|
|
34493
|
-
.
|
|
34494
|
-
|
|
34671
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
34672
|
+
transform: rotate(90deg);
|
|
34495
34673
|
}
|
|
34496
34674
|
|
|
34497
|
-
.
|
|
34498
|
-
|
|
34675
|
+
.E_c1kghdax .sub-info {
|
|
34676
|
+
font-size: 12px;
|
|
34677
|
+
line-height: 18px;
|
|
34499
34678
|
}
|
|
34500
34679
|
|
|
34501
|
-
.
|
|
34502
|
-
width: 64px;
|
|
34503
|
-
height: 64px;
|
|
34504
|
-
max-width: 64px;
|
|
34505
|
-
max-height: 64px;
|
|
34506
|
-
overflow: hidden;
|
|
34680
|
+
.E_c1kghdax .title-wrapper {
|
|
34507
34681
|
display: flex;
|
|
34508
34682
|
align-items: center;
|
|
34509
|
-
|
|
34510
|
-
|
|
34511
|
-
opacity: 0.6;
|
|
34512
|
-
}
|
|
34513
|
-
|
|
34514
|
-
.E_l12xdkhl .icon-wrapper {
|
|
34515
|
-
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
34516
|
-
}
|
|
34517
|
-
|
|
34518
|
-
@keyframes rotate {
|
|
34519
|
-
from {
|
|
34520
|
-
transform: rotate(0deg);
|
|
34521
|
-
}
|
|
34522
|
-
to {
|
|
34523
|
-
transform: rotate(360deg);
|
|
34524
|
-
}
|
|
34525
|
-
}
|
|
34526
|
-
button.E_l48ei06.ant-btn {
|
|
34683
|
+
user-select: none;
|
|
34684
|
+
flex-grow: 1;
|
|
34527
34685
|
font-size: 12px;
|
|
34528
34686
|
line-height: 18px;
|
|
34529
|
-
|
|
34530
|
-
|
|
34531
|
-
|
|
34532
|
-
button.E_l48ei06 {
|
|
34533
|
-
color: #0080FF;
|
|
34534
|
-
height: unset;
|
|
34535
|
-
}
|
|
34536
|
-
|
|
34537
|
-
button.E_l48ei06 .button-prefix-icon {
|
|
34538
|
-
margin-right: 4px;
|
|
34539
|
-
}
|
|
34540
|
-
|
|
34541
|
-
button.E_l48ei06 .button-suffix-icon {
|
|
34542
|
-
margin-left: 4px;
|
|
34543
|
-
}
|
|
34544
|
-
|
|
34545
|
-
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
34546
|
-
color: #009DFF;
|
|
34547
|
-
}
|
|
34548
|
-
|
|
34549
|
-
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
34550
|
-
color: #005ED1;
|
|
34551
|
-
}
|
|
34552
|
-
|
|
34553
|
-
button.E_l48ei06.ui-kit-link-disabled {
|
|
34554
|
-
color: #0080FF;
|
|
34555
|
-
}
|
|
34556
|
-
|
|
34557
|
-
button.E_l48ei06.ui-kit-link-primary {
|
|
34558
|
-
color: #00122E;
|
|
34559
|
-
}
|
|
34560
|
-
|
|
34561
|
-
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
34562
|
-
color: #0080FF;
|
|
34563
|
-
}
|
|
34564
|
-
|
|
34565
|
-
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
34566
|
-
color: #005ED1;
|
|
34687
|
+
color: #2d3a56;
|
|
34688
|
+
font-weight: 700;
|
|
34567
34689
|
}
|
|
34568
34690
|
|
|
34569
|
-
|
|
34570
|
-
|
|
34691
|
+
.E_c1kghdax .collapse-arrow {
|
|
34692
|
+
transition: all 50ms ease-out 0ms;
|
|
34693
|
+
margin-right: 2px;
|
|
34571
34694
|
}
|
|
34572
34695
|
|
|
34573
|
-
|
|
34574
|
-
|
|
34696
|
+
.E_b14q2gmw {
|
|
34697
|
+
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
34575
34698
|
}
|
|
34576
34699
|
|
|
34577
|
-
|
|
34578
|
-
|
|
34700
|
+
.E_c1eym6el {
|
|
34701
|
+
border-radius: 8px;
|
|
34702
|
+
background-color: white;
|
|
34579
34703
|
}
|
|
34580
34704
|
|
|
34581
|
-
|
|
34582
|
-
|
|
34705
|
+
.E_c1eym6el.hoverable {
|
|
34706
|
+
cursor: pointer;
|
|
34583
34707
|
}
|
|
34584
34708
|
|
|
34585
|
-
|
|
34586
|
-
|
|
34709
|
+
.E_c1eym6el.hoverable:hover {
|
|
34710
|
+
transition: all 200ms ease;
|
|
34711
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34712
|
+
transform: translateY(-4px);
|
|
34587
34713
|
}
|
|
34588
34714
|
|
|
34589
|
-
.
|
|
34590
|
-
|
|
34715
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
34716
|
+
margin-right: 2px;
|
|
34591
34717
|
}
|
|
34592
34718
|
|
|
34593
|
-
.
|
|
34594
|
-
|
|
34595
|
-
padding:
|
|
34596
|
-
display: flex;
|
|
34597
|
-
justify-content: space-between;
|
|
34598
|
-
align-items: center;
|
|
34719
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
34720
|
+
padding-left: 8px;
|
|
34721
|
+
padding-right: 8px;
|
|
34599
34722
|
}
|
|
34600
34723
|
|
|
34601
|
-
.
|
|
34602
|
-
|
|
34724
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
34725
|
+
border-radius: 4px;
|
|
34603
34726
|
}
|
|
34604
34727
|
|
|
34605
|
-
.
|
|
34606
|
-
|
|
34607
|
-
color: #00122e;
|
|
34728
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34729
|
+
border-radius: 4px;
|
|
34608
34730
|
}
|
|
34609
34731
|
|
|
34610
|
-
.
|
|
34611
|
-
|
|
34612
|
-
|
|
34732
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
34733
|
+
padding-left: 12px;
|
|
34734
|
+
padding-right: 12px;
|
|
34613
34735
|
}
|
|
34614
34736
|
|
|
34615
|
-
.
|
|
34616
|
-
|
|
34737
|
+
.E_ckld275 {
|
|
34738
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34617
34739
|
}
|
|
34618
34740
|
|
|
34619
|
-
.
|
|
34620
|
-
|
|
34621
|
-
|
|
34741
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34742
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
34743
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34622
34744
|
}
|
|
34623
34745
|
|
|
34624
|
-
.
|
|
34625
|
-
|
|
34626
|
-
align-items: center;
|
|
34627
|
-
user-select: none;
|
|
34628
|
-
flex-grow: 1;
|
|
34629
|
-
font-size: 12px;
|
|
34630
|
-
line-height: 18px;
|
|
34631
|
-
color: #2d3a56;
|
|
34632
|
-
font-weight: 700;
|
|
34746
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34747
|
+
background-color: transparent;
|
|
34633
34748
|
}
|
|
34634
34749
|
|
|
34635
|
-
.
|
|
34636
|
-
|
|
34637
|
-
margin-right: 2px;
|
|
34750
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
34751
|
+
background-color: transparent;
|
|
34638
34752
|
}
|
|
34639
34753
|
|
|
34640
34754
|
.E_ckui4s7 {
|
|
@@ -34766,79 +34880,148 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34766
34880
|
animation: loading-indicator3 1100ms ease-out infinite;
|
|
34767
34881
|
}
|
|
34768
34882
|
|
|
34769
|
-
.
|
|
34770
|
-
|
|
34883
|
+
button.E_l48ei06.ant-btn {
|
|
34884
|
+
font-size: 12px;
|
|
34885
|
+
line-height: 18px;
|
|
34886
|
+
height: 18px;
|
|
34771
34887
|
}
|
|
34772
34888
|
|
|
34773
|
-
.
|
|
34774
|
-
|
|
34775
|
-
|
|
34889
|
+
button.E_l48ei06 {
|
|
34890
|
+
color: #0080FF;
|
|
34891
|
+
height: unset;
|
|
34776
34892
|
}
|
|
34777
34893
|
|
|
34778
|
-
.
|
|
34779
|
-
|
|
34894
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
34895
|
+
margin-right: 4px;
|
|
34780
34896
|
}
|
|
34781
34897
|
|
|
34782
|
-
.
|
|
34783
|
-
|
|
34784
|
-
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34785
|
-
transform: translateY(-4px);
|
|
34898
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
34899
|
+
margin-left: 4px;
|
|
34786
34900
|
}
|
|
34787
34901
|
|
|
34788
|
-
.
|
|
34789
|
-
|
|
34902
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
34903
|
+
color: #009DFF;
|
|
34790
34904
|
}
|
|
34791
34905
|
|
|
34792
|
-
.
|
|
34793
|
-
|
|
34794
|
-
height: 100%;
|
|
34906
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
34907
|
+
color: #005ED1;
|
|
34795
34908
|
}
|
|
34796
34909
|
|
|
34797
|
-
.
|
|
34798
|
-
|
|
34910
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
34911
|
+
color: #0080FF;
|
|
34799
34912
|
}
|
|
34800
34913
|
|
|
34801
|
-
.
|
|
34802
|
-
|
|
34803
|
-
height: 100%;
|
|
34914
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
34915
|
+
color: #00122E;
|
|
34804
34916
|
}
|
|
34805
34917
|
|
|
34806
|
-
.
|
|
34807
|
-
|
|
34918
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
34919
|
+
color: #0080FF;
|
|
34808
34920
|
}
|
|
34809
34921
|
|
|
34810
|
-
.
|
|
34811
|
-
|
|
34922
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
34923
|
+
color: #005ED1;
|
|
34812
34924
|
}
|
|
34813
34925
|
|
|
34814
|
-
.
|
|
34815
|
-
|
|
34926
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
34927
|
+
color: #00122E;
|
|
34816
34928
|
}
|
|
34817
34929
|
|
|
34818
|
-
.
|
|
34819
|
-
|
|
34820
|
-
padding-bottom: 6px;
|
|
34930
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
34931
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
34821
34932
|
}
|
|
34822
34933
|
|
|
34823
|
-
.
|
|
34824
|
-
|
|
34934
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
34935
|
+
color: #0080FF;
|
|
34825
34936
|
}
|
|
34826
34937
|
|
|
34827
|
-
.
|
|
34828
|
-
|
|
34938
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
34939
|
+
color: #005ED1;
|
|
34829
34940
|
}
|
|
34830
34941
|
|
|
34831
|
-
.
|
|
34832
|
-
|
|
34942
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
34943
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
34833
34944
|
}
|
|
34834
34945
|
|
|
34835
|
-
.
|
|
34836
|
-
|
|
34837
|
-
|
|
34946
|
+
.E_l12xdkhl {
|
|
34947
|
+
width: 64px;
|
|
34948
|
+
height: 64px;
|
|
34949
|
+
max-width: 64px;
|
|
34950
|
+
max-height: 64px;
|
|
34951
|
+
overflow: hidden;
|
|
34952
|
+
display: flex;
|
|
34953
|
+
align-items: center;
|
|
34954
|
+
justify-content: center;
|
|
34955
|
+
position: relative;
|
|
34956
|
+
opacity: 0.6;
|
|
34838
34957
|
}
|
|
34839
34958
|
|
|
34840
|
-
.
|
|
34841
|
-
|
|
34959
|
+
.E_l12xdkhl .icon-wrapper {
|
|
34960
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
34961
|
+
}
|
|
34962
|
+
|
|
34963
|
+
@keyframes rotate {
|
|
34964
|
+
from {
|
|
34965
|
+
transform: rotate(0deg);
|
|
34966
|
+
}
|
|
34967
|
+
to {
|
|
34968
|
+
transform: rotate(360deg);
|
|
34969
|
+
}
|
|
34970
|
+
}
|
|
34971
|
+
.E_tc97u5y {
|
|
34972
|
+
height: 100%;
|
|
34973
|
+
}
|
|
34974
|
+
|
|
34975
|
+
.E_efzf37v .ant-table-content {
|
|
34976
|
+
overflow: visible !important;
|
|
34977
|
+
height: 100%;
|
|
34978
|
+
}
|
|
34979
|
+
|
|
34980
|
+
.E_efzf37v .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
34981
|
+
height: 100%;
|
|
34982
|
+
}
|
|
34983
|
+
|
|
34984
|
+
.E_efzf37v .ant-table-content table {
|
|
34985
|
+
width: 100% !important;
|
|
34986
|
+
height: 100%;
|
|
34987
|
+
}
|
|
34988
|
+
|
|
34989
|
+
.E_efzf37v .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
34990
|
+
padding: 15px 0;
|
|
34991
|
+
}
|
|
34992
|
+
|
|
34993
|
+
.E_efzf37v .ant-table-content table thead.ant-table-thead {
|
|
34994
|
+
display: none;
|
|
34995
|
+
}
|
|
34996
|
+
|
|
34997
|
+
.E_t1fisho6 {
|
|
34998
|
+
height: 100%;
|
|
34999
|
+
}
|
|
35000
|
+
|
|
35001
|
+
.E_t1fisho6 .ant-table.ant-table-small .ant-table-tbody > tr > td {
|
|
35002
|
+
padding-top: 6px;
|
|
35003
|
+
padding-bottom: 6px;
|
|
35004
|
+
}
|
|
35005
|
+
|
|
35006
|
+
.E_t1fisho6 .active-row td:nth-child(1) {
|
|
35007
|
+
font-weight: 700;
|
|
35008
|
+
}
|
|
35009
|
+
|
|
35010
|
+
.E_t1fisho6.has-selection .active-row td:nth-child(2) {
|
|
35011
|
+
font-weight: 700;
|
|
35012
|
+
}
|
|
35013
|
+
|
|
35014
|
+
.E_t1fisho6 .ant-spin-nested-loading {
|
|
35015
|
+
height: 100%;
|
|
35016
|
+
}
|
|
35017
|
+
|
|
35018
|
+
.E_t1fisho6 .ant-spin-nested-loading .ant-spin-container {
|
|
35019
|
+
height: 100%;
|
|
35020
|
+
overflow: visible;
|
|
35021
|
+
}
|
|
35022
|
+
|
|
35023
|
+
.E_t1fisho6 .ant-spin-nested-loading .ant-spin {
|
|
35024
|
+
max-height: none;
|
|
34842
35025
|
}
|
|
34843
35026
|
|
|
34844
35027
|
.E_t1fisho6 td.ant-table-column-sort {
|
|
@@ -35331,16 +35514,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35331
35514
|
display: inline-block;
|
|
35332
35515
|
}
|
|
35333
35516
|
|
|
35334
|
-
.E_w7ob4th.outside-tag {
|
|
35335
|
-
padding-left: 0;
|
|
35336
|
-
}
|
|
35337
|
-
|
|
35338
|
-
.E_w7ob4th.outside-tag .inside-tag {
|
|
35339
|
-
border-radius: 4px 0 0 4px;
|
|
35340
|
-
padding-right: 4px;
|
|
35341
|
-
margin-right: 4px;
|
|
35342
|
-
}
|
|
35343
|
-
|
|
35344
35517
|
.E_r77hffu {
|
|
35345
35518
|
display: flex;
|
|
35346
35519
|
align-items: center;
|
|
@@ -35359,6 +35532,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35359
35532
|
font-size: 0;
|
|
35360
35533
|
}
|
|
35361
35534
|
|
|
35535
|
+
.E_w7ob4th.outside-tag {
|
|
35536
|
+
padding-left: 0;
|
|
35537
|
+
}
|
|
35538
|
+
|
|
35539
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
35540
|
+
border-radius: 4px 0 0 4px;
|
|
35541
|
+
padding-right: 4px;
|
|
35542
|
+
margin-right: 4px;
|
|
35543
|
+
}
|
|
35544
|
+
|
|
35362
35545
|
.E_slr2ynn {
|
|
35363
35546
|
padding: 0 8px;
|
|
35364
35547
|
height: 18px;
|
|
@@ -35373,19 +35556,257 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35373
35556
|
margin: 0;
|
|
35374
35557
|
}
|
|
35375
35558
|
|
|
35376
|
-
.E_i1vxv4ln {
|
|
35377
|
-
margin-right: 4px;
|
|
35378
|
-
height: 16px;
|
|
35559
|
+
.E_i1vxv4ln {
|
|
35560
|
+
margin-right: 4px;
|
|
35561
|
+
height: 16px;
|
|
35562
|
+
}
|
|
35563
|
+
|
|
35564
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
35565
|
+
font-weight: 700;
|
|
35566
|
+
color: #00122e;
|
|
35567
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35568
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
35569
|
+
word-break: break-all;
|
|
35570
|
+
display: inline;
|
|
35571
|
+
white-space: normal;
|
|
35572
|
+
}
|
|
35573
|
+
|
|
35574
|
+
.E_i1g85yz3 {
|
|
35575
|
+
margin-right: 4px;
|
|
35576
|
+
height: 16px;
|
|
35577
|
+
}
|
|
35578
|
+
|
|
35579
|
+
.E_t1dtlqs1 {
|
|
35580
|
+
margin-bottom: 4px;
|
|
35581
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35582
|
+
}
|
|
35583
|
+
|
|
35584
|
+
.E_s1ese5oy {
|
|
35585
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35586
|
+
line-height: 32px;
|
|
35587
|
+
height: 32px;
|
|
35588
|
+
margin-bottom: 0;
|
|
35589
|
+
}
|
|
35590
|
+
|
|
35591
|
+
.E_s1ese5oy.primary, .E_s1ese5oy.info {
|
|
35592
|
+
color: #0080ff;
|
|
35593
|
+
}
|
|
35594
|
+
|
|
35595
|
+
.E_s1ese5oy.warning {
|
|
35596
|
+
color: #ffa500;
|
|
35597
|
+
}
|
|
35598
|
+
|
|
35599
|
+
.E_s1ese5oy.success {
|
|
35600
|
+
color: #00ba5d;
|
|
35601
|
+
}
|
|
35602
|
+
|
|
35603
|
+
.E_s1ese5oy.danger, .E_s1ese5oy.error {
|
|
35604
|
+
color: #f0483e;
|
|
35605
|
+
}
|
|
35606
|
+
|
|
35607
|
+
.E_s1ese5oy.normal {
|
|
35608
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35609
|
+
}
|
|
35610
|
+
|
|
35611
|
+
.E_b1ibis43 {
|
|
35612
|
+
margin-bottom: 0;
|
|
35613
|
+
color: #00122e;
|
|
35614
|
+
}
|
|
35615
|
+
|
|
35616
|
+
.E_b11xxjd2 {
|
|
35617
|
+
line-height: 32px;
|
|
35618
|
+
margin-right: 6px;
|
|
35619
|
+
}
|
|
35620
|
+
|
|
35621
|
+
.E_bsub5bw.with-description {
|
|
35622
|
+
height: 24px;
|
|
35623
|
+
flex: 1;
|
|
35624
|
+
position: relative;
|
|
35625
|
+
top: -7px;
|
|
35626
|
+
}
|
|
35627
|
+
|
|
35628
|
+
.E_bsub5bw p {
|
|
35629
|
+
width: 100%;
|
|
35630
|
+
overflow: hidden;
|
|
35631
|
+
text-overflow: ellipsis;
|
|
35632
|
+
white-space: nowrap;
|
|
35633
|
+
}
|
|
35634
|
+
|
|
35635
|
+
.E_tmoyoag {
|
|
35636
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
35637
|
+
border-radius: 8px;
|
|
35638
|
+
overflow: auto;
|
|
35639
|
+
}
|
|
35640
|
+
|
|
35641
|
+
.E_tmoyoag .ant-list {
|
|
35642
|
+
position: relative;
|
|
35643
|
+
}
|
|
35644
|
+
|
|
35645
|
+
.E_tmoyoag .ant-list .ant-list-item:last-child {
|
|
35646
|
+
border-bottom: none;
|
|
35647
|
+
}
|
|
35648
|
+
|
|
35649
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
35650
|
+
position: sticky;
|
|
35651
|
+
top: 0;
|
|
35652
|
+
z-index: 2;
|
|
35653
|
+
display: flex;
|
|
35654
|
+
padding: 8px;
|
|
35655
|
+
flex-wrap: nowrap;
|
|
35656
|
+
justify-content: flex-start;
|
|
35657
|
+
background: #f2f5fa;
|
|
35658
|
+
font-size: 14px;
|
|
35659
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35660
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35661
|
+
}
|
|
35662
|
+
|
|
35663
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
35664
|
+
align-items: inherit;
|
|
35665
|
+
}
|
|
35666
|
+
|
|
35667
|
+
.E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
|
|
35668
|
+
margin-bottom: 0;
|
|
35669
|
+
}
|
|
35670
|
+
|
|
35671
|
+
.E_tmoyoag .ant-list .eagle-table-form-row {
|
|
35672
|
+
display: flex;
|
|
35673
|
+
justify-content: flex-start;
|
|
35674
|
+
align-items: flex-start;
|
|
35675
|
+
flex-wrap: wrap;
|
|
35676
|
+
padding: 8px;
|
|
35677
|
+
border: none;
|
|
35678
|
+
}
|
|
35679
|
+
|
|
35680
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-description {
|
|
35681
|
+
flex-basis: 100%;
|
|
35682
|
+
margin: 12px 0 0;
|
|
35683
|
+
order: 99;
|
|
35684
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35685
|
+
}
|
|
35686
|
+
|
|
35687
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
|
|
35688
|
+
color: #f0483e;
|
|
35689
|
+
flex-basis: 100%;
|
|
35690
|
+
order: 98;
|
|
35691
|
+
margin: 12px 0 0;
|
|
35692
|
+
}
|
|
35693
|
+
|
|
35694
|
+
.E_tmoyoag .ant-list .eagle-table-form-row:hover {
|
|
35695
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35696
|
+
}
|
|
35697
|
+
|
|
35698
|
+
.E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
|
|
35699
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
35700
|
+
}
|
|
35701
|
+
|
|
35702
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell {
|
|
35703
|
+
flex: 1 0 0;
|
|
35704
|
+
overflow: hidden;
|
|
35705
|
+
}
|
|
35706
|
+
|
|
35707
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
|
|
35708
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35709
|
+
margin: 0;
|
|
35710
|
+
}
|
|
35711
|
+
|
|
35712
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
|
|
35713
|
+
text-align: center;
|
|
35714
|
+
}
|
|
35715
|
+
|
|
35716
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
35717
|
+
text-align: center;
|
|
35718
|
+
}
|
|
35719
|
+
|
|
35720
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
|
|
35721
|
+
text-align: left;
|
|
35722
|
+
}
|
|
35723
|
+
|
|
35724
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
|
|
35725
|
+
text-align: left;
|
|
35726
|
+
}
|
|
35727
|
+
|
|
35728
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
|
|
35729
|
+
text-align: right;
|
|
35730
|
+
}
|
|
35731
|
+
|
|
35732
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
|
|
35733
|
+
text-align: right;
|
|
35734
|
+
}
|
|
35735
|
+
|
|
35736
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
35737
|
+
margin-right: 8px;
|
|
35738
|
+
}
|
|
35739
|
+
|
|
35740
|
+
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
35741
|
+
padding: 4px;
|
|
35742
|
+
width: 24px;
|
|
35743
|
+
height: 24px;
|
|
35744
|
+
overflow: hidden;
|
|
35745
|
+
}
|
|
35746
|
+
|
|
35747
|
+
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
35748
|
+
padding: 0;
|
|
35749
|
+
}
|
|
35750
|
+
|
|
35751
|
+
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
35752
|
+
cursor: not-allowed;
|
|
35753
|
+
opacity: 0.5;
|
|
35754
|
+
}
|
|
35755
|
+
|
|
35756
|
+
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
35757
|
+
margin: 0;
|
|
35758
|
+
}
|
|
35759
|
+
|
|
35760
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
35761
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
35762
|
+
border-radius: 5px;
|
|
35763
|
+
font-size: 12px;
|
|
35764
|
+
}
|
|
35765
|
+
|
|
35766
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
35767
|
+
font-size: inherit;
|
|
35768
|
+
}
|
|
35769
|
+
|
|
35770
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
35771
|
+
min-height: 24px;
|
|
35772
|
+
font-size: 12px;
|
|
35773
|
+
position: relative;
|
|
35774
|
+
}
|
|
35775
|
+
|
|
35776
|
+
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
35777
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35778
|
+
}
|
|
35779
|
+
|
|
35780
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
35781
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35782
|
+
}
|
|
35783
|
+
|
|
35784
|
+
.E_a138syjm {
|
|
35785
|
+
display: flex;
|
|
35786
|
+
align-items: center;
|
|
35787
|
+
margin-top: 8px;
|
|
35788
|
+
}
|
|
35789
|
+
|
|
35790
|
+
.E_a138syjm button.ant-btn {
|
|
35791
|
+
padding: 2px 8px;
|
|
35792
|
+
height: 24px;
|
|
35793
|
+
}
|
|
35794
|
+
|
|
35795
|
+
.E_a138syjm > span.maximum-desc {
|
|
35796
|
+
display: none;
|
|
35797
|
+
margin-left: 8px;
|
|
35798
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35799
|
+
}
|
|
35800
|
+
|
|
35801
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
35802
|
+
display: inline;
|
|
35379
35803
|
}
|
|
35380
35804
|
|
|
35381
|
-
.
|
|
35382
|
-
|
|
35383
|
-
|
|
35384
|
-
|
|
35385
|
-
|
|
35386
|
-
word-break: break-all;
|
|
35387
|
-
display: inline;
|
|
35388
|
-
white-space: normal;
|
|
35805
|
+
.E_d77i8u0 {
|
|
35806
|
+
width: 24px;
|
|
35807
|
+
height: 24px;
|
|
35808
|
+
padding: 4px;
|
|
35809
|
+
margin-right: 8px;
|
|
35389
35810
|
}
|
|
35390
35811
|
|
|
35391
35812
|
.E_sjob3jg {
|
|
@@ -35620,239 +36041,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35620
36041
|
justify-content: center;
|
|
35621
36042
|
}
|
|
35622
36043
|
|
|
35623
|
-
.E_t1dtlqs1 {
|
|
35624
|
-
margin-bottom: 4px;
|
|
35625
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35626
|
-
}
|
|
35627
|
-
|
|
35628
|
-
.E_s1ese5oy {
|
|
35629
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35630
|
-
line-height: 32px;
|
|
35631
|
-
height: 32px;
|
|
35632
|
-
margin-bottom: 0;
|
|
35633
|
-
}
|
|
35634
|
-
|
|
35635
|
-
.E_s1ese5oy.primary, .E_s1ese5oy.info {
|
|
35636
|
-
color: #0080ff;
|
|
35637
|
-
}
|
|
35638
|
-
|
|
35639
|
-
.E_s1ese5oy.warning {
|
|
35640
|
-
color: #ffa500;
|
|
35641
|
-
}
|
|
35642
|
-
|
|
35643
|
-
.E_s1ese5oy.success {
|
|
35644
|
-
color: #00ba5d;
|
|
35645
|
-
}
|
|
35646
|
-
|
|
35647
|
-
.E_s1ese5oy.danger, .E_s1ese5oy.error {
|
|
35648
|
-
color: #f0483e;
|
|
35649
|
-
}
|
|
35650
|
-
|
|
35651
|
-
.E_s1ese5oy.normal {
|
|
35652
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35653
|
-
}
|
|
35654
|
-
|
|
35655
|
-
.E_b1ibis43 {
|
|
35656
|
-
margin-bottom: 0;
|
|
35657
|
-
color: #00122e;
|
|
35658
|
-
}
|
|
35659
|
-
|
|
35660
|
-
.E_b11xxjd2 {
|
|
35661
|
-
line-height: 32px;
|
|
35662
|
-
margin-right: 6px;
|
|
35663
|
-
}
|
|
35664
|
-
|
|
35665
|
-
.E_bsub5bw.with-description {
|
|
35666
|
-
height: 24px;
|
|
35667
|
-
flex: 1;
|
|
35668
|
-
position: relative;
|
|
35669
|
-
top: -7px;
|
|
35670
|
-
}
|
|
35671
|
-
|
|
35672
|
-
.E_bsub5bw p {
|
|
35673
|
-
width: 100%;
|
|
35674
|
-
overflow: hidden;
|
|
35675
|
-
text-overflow: ellipsis;
|
|
35676
|
-
white-space: nowrap;
|
|
35677
|
-
}
|
|
35678
|
-
|
|
35679
|
-
.E_tmoyoag {
|
|
35680
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
35681
|
-
border-radius: 8px;
|
|
35682
|
-
overflow: auto;
|
|
35683
|
-
}
|
|
35684
|
-
|
|
35685
|
-
.E_tmoyoag .ant-list {
|
|
35686
|
-
position: relative;
|
|
35687
|
-
}
|
|
35688
|
-
|
|
35689
|
-
.E_tmoyoag .ant-list .ant-list-item:last-child {
|
|
35690
|
-
border-bottom: none;
|
|
35691
|
-
}
|
|
35692
|
-
|
|
35693
|
-
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
35694
|
-
position: sticky;
|
|
35695
|
-
top: 0;
|
|
35696
|
-
z-index: 2;
|
|
35697
|
-
display: flex;
|
|
35698
|
-
padding: 8px;
|
|
35699
|
-
flex-wrap: nowrap;
|
|
35700
|
-
justify-content: flex-start;
|
|
35701
|
-
background: #f2f5fa;
|
|
35702
|
-
font-size: 14px;
|
|
35703
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35704
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35705
|
-
}
|
|
35706
|
-
|
|
35707
|
-
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
35708
|
-
align-items: inherit;
|
|
35709
|
-
}
|
|
35710
|
-
|
|
35711
|
-
.E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
|
|
35712
|
-
margin-bottom: 0;
|
|
35713
|
-
}
|
|
35714
|
-
|
|
35715
|
-
.E_tmoyoag .ant-list .eagle-table-form-row {
|
|
35716
|
-
display: flex;
|
|
35717
|
-
justify-content: flex-start;
|
|
35718
|
-
align-items: flex-start;
|
|
35719
|
-
flex-wrap: wrap;
|
|
35720
|
-
padding: 8px;
|
|
35721
|
-
border: none;
|
|
35722
|
-
}
|
|
35723
|
-
|
|
35724
|
-
.E_tmoyoag .ant-list .eagle-table-form-row .row-description {
|
|
35725
|
-
flex-basis: 100%;
|
|
35726
|
-
margin: 12px 0 0;
|
|
35727
|
-
order: 99;
|
|
35728
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35729
|
-
}
|
|
35730
|
-
|
|
35731
|
-
.E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
|
|
35732
|
-
color: #f0483e;
|
|
35733
|
-
flex-basis: 100%;
|
|
35734
|
-
order: 98;
|
|
35735
|
-
margin: 12px 0 0;
|
|
35736
|
-
}
|
|
35737
|
-
|
|
35738
|
-
.E_tmoyoag .ant-list .eagle-table-form-row:hover {
|
|
35739
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
35740
|
-
}
|
|
35741
|
-
|
|
35742
|
-
.E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
|
|
35743
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
35744
|
-
}
|
|
35745
|
-
|
|
35746
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell {
|
|
35747
|
-
flex: 1 0 0;
|
|
35748
|
-
overflow: hidden;
|
|
35749
|
-
}
|
|
35750
|
-
|
|
35751
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
|
|
35752
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35753
|
-
margin: 0;
|
|
35754
|
-
}
|
|
35755
|
-
|
|
35756
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
|
|
35757
|
-
text-align: center;
|
|
35758
|
-
}
|
|
35759
|
-
|
|
35760
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
35761
|
-
text-align: center;
|
|
35762
|
-
}
|
|
35763
|
-
|
|
35764
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
|
|
35765
|
-
text-align: left;
|
|
35766
|
-
}
|
|
35767
|
-
|
|
35768
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
|
|
35769
|
-
text-align: left;
|
|
35770
|
-
}
|
|
35771
|
-
|
|
35772
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
|
|
35773
|
-
text-align: right;
|
|
35774
|
-
}
|
|
35775
|
-
|
|
35776
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
|
|
35777
|
-
text-align: right;
|
|
35778
|
-
}
|
|
35779
|
-
|
|
35780
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
35781
|
-
margin-right: 8px;
|
|
35782
|
-
}
|
|
35783
|
-
|
|
35784
|
-
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
35785
|
-
padding: 4px;
|
|
35786
|
-
width: 24px;
|
|
35787
|
-
height: 24px;
|
|
35788
|
-
overflow: hidden;
|
|
35789
|
-
}
|
|
35790
|
-
|
|
35791
|
-
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
35792
|
-
padding: 0;
|
|
35793
|
-
}
|
|
35794
|
-
|
|
35795
|
-
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
35796
|
-
cursor: not-allowed;
|
|
35797
|
-
opacity: 0.5;
|
|
35798
|
-
}
|
|
35799
|
-
|
|
35800
|
-
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
35801
|
-
margin: 0;
|
|
35802
|
-
}
|
|
35803
|
-
|
|
35804
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
35805
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
35806
|
-
border-radius: 5px;
|
|
35807
|
-
font-size: 12px;
|
|
35808
|
-
}
|
|
35809
|
-
|
|
35810
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
35811
|
-
font-size: inherit;
|
|
35812
|
-
}
|
|
35813
|
-
|
|
35814
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
35815
|
-
min-height: 24px;
|
|
35816
|
-
font-size: 12px;
|
|
35817
|
-
position: relative;
|
|
35818
|
-
}
|
|
35819
|
-
|
|
35820
|
-
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
35821
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35822
|
-
}
|
|
35823
|
-
|
|
35824
|
-
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
35825
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
35826
|
-
}
|
|
35827
|
-
|
|
35828
|
-
.E_a138syjm {
|
|
35829
|
-
display: flex;
|
|
35830
|
-
align-items: center;
|
|
35831
|
-
margin-top: 8px;
|
|
35832
|
-
}
|
|
35833
|
-
|
|
35834
|
-
.E_a138syjm button.ant-btn {
|
|
35835
|
-
padding: 2px 8px;
|
|
35836
|
-
height: 24px;
|
|
35837
|
-
}
|
|
35838
|
-
|
|
35839
|
-
.E_a138syjm > span.maximum-desc {
|
|
35840
|
-
display: none;
|
|
35841
|
-
margin-left: 8px;
|
|
35842
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35843
|
-
}
|
|
35844
|
-
|
|
35845
|
-
.E_a138syjm > span.maximum-desc.disabled {
|
|
35846
|
-
display: inline;
|
|
35847
|
-
}
|
|
35848
|
-
|
|
35849
|
-
.E_d77i8u0 {
|
|
35850
|
-
width: 24px;
|
|
35851
|
-
height: 24px;
|
|
35852
|
-
padding: 4px;
|
|
35853
|
-
margin-right: 8px;
|
|
35854
|
-
}
|
|
35855
|
-
|
|
35856
36044
|
.E_t13ef470 {
|
|
35857
36045
|
height: 100%;
|
|
35858
36046
|
}
|
|
@@ -35890,11 +36078,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35890
36078
|
background: rgba(163, 180, 204, 0.18);
|
|
35891
36079
|
}
|
|
35892
36080
|
|
|
35893
|
-
.E_i1g85yz3 {
|
|
35894
|
-
margin-right: 4px;
|
|
35895
|
-
height: 16px;
|
|
35896
|
-
}
|
|
35897
|
-
|
|
35898
36081
|
.E_t1gvlxt5 {
|
|
35899
36082
|
min-width: 0;
|
|
35900
36083
|
flex: 1;
|