@cloudtower/eagle 0.33.1 → 0.33.2

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.
Files changed (78) hide show
  1. package/dist/cjs/antd.js +6 -6
  2. package/dist/cjs/core/BitPerSecond/index.js +3 -3
  3. package/dist/cjs/core/KitStoreProvider/index.js +10 -0
  4. package/dist/cjs/core/Modal/index.js +53 -42
  5. package/dist/cjs/core/ModalStack/index.js +6 -0
  6. package/dist/cjs/core/Progress/progress.widgets.js +2 -5
  7. package/dist/cjs/core/SearchInput/index.js +21 -11
  8. package/dist/cjs/core/Timeline/Timeline.style.js +13 -0
  9. package/dist/cjs/core/Timeline/Timeline.widget.js +114 -0
  10. package/dist/cjs/core/Timeline/index.js +122 -0
  11. package/dist/cjs/coreX/CheckPointList/checkpointlist.style.js +9 -0
  12. package/dist/cjs/coreX/CheckPointList/index.js +90 -0
  13. package/dist/cjs/coreX/DateRangePicker/common.js +7 -5
  14. package/dist/cjs/coreX/DateRangePicker/index.js +10 -5
  15. package/dist/cjs/coreX/InfoRowList/InfoRow.js +31 -0
  16. package/dist/cjs/coreX/InfoRowList/InfoRowList.js +60 -0
  17. package/dist/cjs/coreX/Show/index.js +20 -0
  18. package/dist/cjs/index.js +122 -112
  19. package/dist/cjs/stats1.html +1 -1
  20. package/dist/cjs/store/modal.js +3 -0
  21. package/dist/cjs/utils/constants.js +11 -0
  22. package/dist/components.css +1800 -1552
  23. package/dist/esm/antd.js +3 -3
  24. package/dist/esm/core/BitPerSecond/index.js +3 -3
  25. package/dist/esm/core/KitStoreProvider/index.js +10 -1
  26. package/dist/esm/core/Modal/index.js +53 -42
  27. package/dist/esm/core/ModalStack/index.js +7 -1
  28. package/dist/esm/core/Progress/progress.widgets.js +1 -4
  29. package/dist/esm/core/SearchInput/index.js +21 -11
  30. package/dist/esm/core/Timeline/Timeline.style.js +7 -0
  31. package/dist/esm/core/Timeline/Timeline.widget.js +107 -0
  32. package/dist/esm/core/Timeline/index.js +115 -0
  33. package/dist/esm/coreX/CheckPointList/checkpointlist.style.js +5 -0
  34. package/dist/esm/coreX/CheckPointList/index.js +83 -0
  35. package/dist/esm/coreX/DateRangePicker/common.js +7 -5
  36. package/dist/esm/coreX/DateRangePicker/index.js +10 -5
  37. package/dist/esm/coreX/InfoRowList/InfoRow.js +25 -0
  38. package/dist/esm/coreX/InfoRowList/InfoRowList.js +54 -0
  39. package/dist/esm/coreX/Show/index.js +14 -0
  40. package/dist/esm/index.js +8 -4
  41. package/dist/esm/stats1.html +1 -1
  42. package/dist/esm/store/modal.js +3 -0
  43. package/dist/esm/utils/constants.js +7 -1
  44. package/dist/src/antd.d.ts +2 -2
  45. package/dist/src/core/Alert/alert.type.d.ts +5 -4
  46. package/dist/src/core/BitPerSecond/index.d.ts +2 -2
  47. package/dist/src/core/KitStoreProvider/index.d.ts +1 -0
  48. package/dist/src/core/Modal/modal.type.d.ts +25 -2
  49. package/dist/src/core/SearchInput/searchInput.type.d.ts +33 -0
  50. package/dist/src/core/Timeline/Timeline.style.d.ts +5 -0
  51. package/dist/src/core/Timeline/Timeline.type.d.ts +209 -0
  52. package/dist/src/core/Timeline/Timeline.widget.d.ts +5 -0
  53. package/dist/src/core/Timeline/index.d.ts +10 -0
  54. package/dist/src/core/index.d.ts +1 -0
  55. package/dist/src/coreX/CheckPointList/checkpointlist.style.d.ts +3 -0
  56. package/dist/src/coreX/CheckPointList/checkpointlist.type.d.ts +93 -0
  57. package/dist/src/coreX/CheckPointList/index.d.ts +8 -0
  58. package/dist/src/coreX/DateRangePicker/dateRangePicker.type.d.ts +6 -1
  59. package/dist/src/coreX/InfoRowList/InfoRow.d.ts +7 -0
  60. package/dist/src/coreX/InfoRowList/InfoRowList.d.ts +3 -0
  61. package/dist/src/coreX/InfoRowList/InfoRowList.type.d.ts +63 -0
  62. package/dist/src/coreX/InfoRowList/index.d.ts +1 -0
  63. package/dist/src/coreX/Show/index.d.ts +3 -0
  64. package/dist/src/coreX/Show/show.type.d.ts +13 -0
  65. package/dist/src/coreX/index.d.ts +5 -2
  66. package/dist/src/store/modal.d.ts +8 -2
  67. package/dist/src/utils/constants.d.ts +2 -0
  68. package/dist/stories/docs/core/Button.stories.d.ts +11 -0
  69. package/dist/stories/docs/core/KitStoreProvider.stories.d.ts +1 -1
  70. package/dist/stories/docs/core/Modal.stories.d.ts +4 -0
  71. package/dist/stories/docs/core/Timeline.stories.d.ts +38 -0
  72. package/dist/stories/docs/coreX/CheckPointList.stories.d.ts +67 -0
  73. package/dist/stories/docs/coreX/DateRangePicker.stories.d.ts +1 -0
  74. package/dist/stories/docs/coreX/I18nNameTag.stories.d.ts +8 -0
  75. package/dist/stories/docs/coreX/InfoRowList.stories.d.ts +36 -0
  76. package/dist/stories/docs/coreX/Show.stories.d.ts +31 -0
  77. package/dist/style.css +1294 -1075
  78. package/package.json +4 -4
package/dist/style.css CHANGED
@@ -28619,7 +28619,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28619
28619
  font-size: 14px;
28620
28620
  font-weight: bold;
28621
28621
  padding: 0 16px;
28622
- border: none;
28623
28622
  }
28624
28623
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost {
28625
28624
  background: transparent;
@@ -28628,6 +28627,9 @@ div.ant-typography-edit-content.ant-typography-rtl {
28628
28627
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button:hover, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost:hover {
28629
28628
  background: rgba(223, 228, 235, 0.6);
28630
28629
  }
28630
+ .ant-modal .ant-modal-footer .footer-content.no-button-border button {
28631
+ border: none;
28632
+ }
28631
28633
  .ant-modal .ant-modal-footer .footer-content button + button {
28632
28634
  margin-left: 8px;
28633
28635
  }
@@ -29240,6 +29242,29 @@ td .ant-btn-link {
29240
29242
  background-color: rgba(211, 218, 235, 0.6);
29241
29243
  }
29242
29244
 
29245
+ .ant-message > div > .ant-message-notice {
29246
+ padding: 4px;
29247
+ }
29248
+ .ant-message > div > .ant-message-notice:first-child {
29249
+ margin-top: -4px;
29250
+ }
29251
+ .ant-message > div > .ant-message-notice.move-up-leave.move-up-leave-active {
29252
+ animation-name: MessageMoveOut;
29253
+ animation-duration: 0.3s;
29254
+ }
29255
+ @keyframes MessageMoveOut {
29256
+ 0% {
29257
+ max-height: 150px;
29258
+ padding: 4px;
29259
+ opacity: 1;
29260
+ }
29261
+ 100% {
29262
+ max-height: 0;
29263
+ padding: 0;
29264
+ opacity: 0;
29265
+ }
29266
+ }
29267
+
29243
29268
  @media screen and (min-width: 1280px) {
29244
29269
  .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
29245
29270
  .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
@@ -29660,131 +29685,75 @@ html body {
29660
29685
  margin-left: 1px;
29661
29686
  }
29662
29687
 
29663
- span.E_tqjc4ui {
29664
- margin: 0 2px;
29665
- }
29666
-
29667
- .E_gmyahx3 {
29668
- cursor: pointer;
29669
- }
29670
- .E_gmyahx3 .link-text {
29671
- color: rgba(0, 21, 64, 0.3);
29672
- }
29673
- .E_gmyahx3:hover .link-text {
29674
- color: #0080ff;
29675
- }
29676
-
29677
- .E_s1at6qmn.ant-layout-sider {
29678
- background: #edf0f7;
29679
- padding: 32px 8px;
29680
- overflow: auto;
29681
- }
29682
- .E_s1at6qmn .ant-layout-sider-children {
29688
+ .E_s1ebs0ra {
29683
29689
  display: flex;
29684
- flex-direction: column;
29690
+ align-items: center;
29685
29691
  justify-content: space-between;
29686
- }
29687
- .E_s1at6qmn footer {
29688
- display: flex;
29689
- }
29690
- .E_s1at6qmn .ant-menu {
29691
29692
  background: #edf0f7;
29693
+ padding: 8px 12px;
29694
+ position: sticky;
29695
+ top: 0;
29696
+ z-index: 1;
29697
+ margin-bottom: -52px;
29692
29698
  }
29693
- .E_s1at6qmn .ant-menu a {
29694
- color: #00122e;
29695
- width: 180px;
29696
- overflow: hidden;
29697
- text-overflow: ellipsis;
29698
- }
29699
- .E_s1at6qmn .ant-menu-vertical {
29700
- margin-bottom: 24px;
29701
- }
29702
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
29703
- margin: 0;
29704
- }
29705
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
29706
- font-size: 12px;
29707
- padding: 0 8px 4px;
29708
- line-height: 18px;
29709
- }
29710
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
29711
- padding: 0;
29712
- }
29713
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
29714
- padding-bottom: 24px;
29715
- }
29716
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
29717
- margin-bottom: 24px;
29718
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
29719
- }
29720
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
29721
- transition: none;
29699
+ .E_s1ebs0ra .select-total {
29722
29700
  display: flex;
29723
29701
  align-items: center;
29724
- height: 32px;
29725
- line-height: 22px;
29726
- padding: 0 8px;
29702
+ font-weight: 700;
29703
+ flex-shrink: 0;
29727
29704
  }
29728
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
29729
- margin-right: 12px;
29705
+ .E_s1ebs0ra .select-total .icon-wrapper {
29706
+ cursor: pointer;
29707
+ margin-left: 8px;
29708
+ width: 32px;
29709
+ height: 32px;
29710
+ border-radius: 50%;
29711
+ justify-content: center;
29730
29712
  }
29731
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
29732
- margin: 0;
29733
- margin-bottom: 2px;
29713
+ .E_s1ebs0ra .select-total .icon-wrapper:hover {
29714
+ background: rgba(225, 230, 241, 0.6);
29734
29715
  }
29735
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
29736
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
29737
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
29738
- border-radius: 6px;
29739
- color: #fff;
29716
+ .E_s1ebs0ra .action-group {
29717
+ flex: 1;
29718
+ margin-left: 88px;
29719
+ white-space: nowrap;
29720
+ text-align: right;
29721
+ position: relative;
29722
+ padding: 4px 0;
29723
+ margin-top: -4px;
29724
+ overflow: hidden;
29740
29725
  }
29741
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
29742
- color: #fff;
29726
+ .E_s1ebs0ra .action-group .sub-menu-delete {
29727
+ transform: translateY(-4px);
29743
29728
  }
29744
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item:hover, .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item-active {
29745
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
29746
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
29747
- border-radius: 6px;
29729
+ .E_s1ebs0ra .action-group button {
29730
+ border: none;
29748
29731
  }
29749
-
29750
- .E_s1wu0lms .ant-menu-item-group-title {
29751
- white-space: nowrap;
29752
- transition: all 0s;
29732
+ .E_s1ebs0ra .action-group > *:not(:last-child) {
29733
+ margin-right: 8px;
29753
29734
  }
29754
- .E_s1wu0lms.shrink {
29755
- transition: all 0s;
29756
- overflow: hidden;
29735
+ .E_s1ebs0ra .action-group > button:last-child {
29736
+ margin-right: 4px;
29757
29737
  }
29758
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
29759
- visibility: hidden;
29738
+ .E_s1ebs0ra .action-group .more-btn {
29739
+ cursor: pointer;
29740
+ width: 32px;
29741
+ height: 32px;
29742
+ justify-content: center;
29743
+ border-radius: 50%;
29760
29744
  }
29761
- .E_s1wu0lms.shrink .ant-menu-item {
29762
- width: 36px;
29763
- padding: 0 6px;
29745
+ .E_s1ebs0ra .action-group .more-btn:hover {
29746
+ background: #fff;
29764
29747
  }
29765
29748
 
29766
- .E_n1ugzfva {
29767
- display: flex;
29768
- place-items: center;
29769
- width: 100% !important;
29770
- }
29771
- .E_n1ugzfva[disabled] {
29772
- color: rgba(0, 0, 0, 0.25) !important;
29773
- opacity: 1 !important;
29774
- }
29775
- .E_n1ugzfva.ant-btn {
29776
- width: 100%;
29777
- color: #00122e;
29749
+ .E_gmyahx3 {
29750
+ cursor: pointer;
29778
29751
  }
29779
- .E_n1ugzfva .icon-wrapper {
29780
- margin-right: 12px;
29752
+ .E_gmyahx3 .link-text {
29753
+ color: rgba(0, 21, 64, 0.3);
29781
29754
  }
29782
- .E_n1ugzfva .link-title {
29783
- flex: 1;
29784
- overflow: hidden;
29785
- white-space: nowrap;
29786
- text-overflow: ellipsis;
29787
- text-align: left;
29755
+ .E_gmyahx3:hover .link-text {
29756
+ color: #0080ff;
29788
29757
  }
29789
29758
 
29790
29759
  .E_clm1wy1 {
@@ -29880,6 +29849,53 @@ span.E_tqjc4ui {
29880
29849
  border-radius: 2px;
29881
29850
  }
29882
29851
 
29852
+ .E_c18bcrac {
29853
+ display: inline-block;
29854
+ width: 100%;
29855
+ }
29856
+ .E_c18bcrac .recharts-wrapper {
29857
+ margin-left: 4px;
29858
+ }
29859
+
29860
+ .E_cro7kg2 {
29861
+ padding: 4px;
29862
+ }
29863
+
29864
+ .E_c14wcxf0 {
29865
+ display: flex;
29866
+ justify-content: space-between;
29867
+ align-items: center;
29868
+ font-size: 13px;
29869
+ line-height: 24px;
29870
+ color: #cccccc;
29871
+ white-space: nowrap;
29872
+ }
29873
+ .E_c14wcxf0 label {
29874
+ margin-right: 32px;
29875
+ }
29876
+
29877
+ .E_coy29mj.E_c14wcxf0 {
29878
+ font-weight: bold;
29879
+ color: white;
29880
+ }
29881
+
29882
+ .E_s11212zy {
29883
+ width: 8px;
29884
+ height: 8px;
29885
+ border-radius: 2px;
29886
+ display: inline-block;
29887
+ background: var(--s11212zy-0);
29888
+ border: 1px solid #fff;
29889
+ box-sizing: content-box;
29890
+ margin-right: 6px;
29891
+ }
29892
+
29893
+ .E_p1lyky6c > :first-child {
29894
+ font-weight: bold;
29895
+ color: white;
29896
+ margin-right: 4px;
29897
+ }
29898
+
29883
29899
  .E_c1up1pdz {
29884
29900
  width: 648px;
29885
29901
  }
@@ -30020,65 +30036,35 @@ span.E_tqjc4ui {
30020
30036
  color: #fff;
30021
30037
  }
30022
30038
 
30023
- .E_s1ebs0ra {
30024
- display: flex;
30025
- align-items: center;
30026
- justify-content: space-between;
30027
- background: #edf0f7;
30028
- padding: 8px 12px;
30029
- position: sticky;
30030
- top: 0;
30031
- z-index: 1;
30032
- margin-bottom: -52px;
30033
- }
30034
- .E_s1ebs0ra .select-total {
30035
- display: flex;
30036
- align-items: center;
30037
- font-weight: 700;
30038
- flex-shrink: 0;
30039
+ .E_ou7iq30 {
30040
+ overflow: hidden;
30041
+ text-overflow: ellipsis;
30039
30042
  }
30040
- .E_s1ebs0ra .select-total .icon-wrapper {
30041
- cursor: pointer;
30042
- margin-left: 8px;
30043
- width: 32px;
30044
- height: 32px;
30045
- border-radius: 50%;
30046
- justify-content: center;
30043
+
30044
+ .E_s1tui002 {
30045
+ white-space: nowrap;
30047
30046
  }
30048
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
30049
- background: rgba(225, 230, 241, 0.6);
30050
- }
30051
- .E_s1ebs0ra .action-group {
30052
- flex: 1;
30053
- margin-left: 88px;
30054
- white-space: nowrap;
30055
- text-align: right;
30056
- position: relative;
30057
- padding: 4px 0;
30058
- margin-top: -4px;
30059
- overflow: hidden;
30060
- }
30061
- .E_s1ebs0ra .action-group .sub-menu-delete {
30062
- transform: translateY(-4px);
30063
- }
30064
- .E_s1ebs0ra .action-group button {
30065
- border: none;
30047
+
30048
+ .E_mxrc2zg {
30049
+ display: -webkit-box;
30050
+ -webkit-line-clamp: var(--mxrc2zg-0);
30051
+ -webkit-box-orient: vertical;
30052
+ word-break: break-all;
30066
30053
  }
30067
- .E_s1ebs0ra .action-group > *:not(:last-child) {
30068
- margin-right: 8px;
30054
+
30055
+ .E_t1vv6d68 .ant-tooltip-arrow {
30056
+ display: none;
30069
30057
  }
30070
- .E_s1ebs0ra .action-group > button:last-child {
30071
- margin-right: 4px;
30058
+ .E_t1vv6d68 .ant-tooltip-inner {
30059
+ background: rgba(23, 38, 64, 0.8);
30060
+ border-radius: 4px;
30072
30061
  }
30073
- .E_s1ebs0ra .action-group .more-btn {
30074
- cursor: pointer;
30075
- width: 32px;
30076
- height: 32px;
30077
- justify-content: center;
30078
- border-radius: 50%;
30062
+ .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30063
+ visibility: hidden;
30079
30064
  }
30080
- .E_s1ebs0ra .action-group .more-btn:hover {
30081
- background: #fff;
30065
+
30066
+ span.E_tqjc4ui {
30067
+ margin: 0 2px;
30082
30068
  }
30083
30069
 
30084
30070
  .E_n12mqh7z {
@@ -30100,262 +30086,153 @@ span.E_tqjc4ui {
30100
30086
  overflow: auto;
30101
30087
  }
30102
30088
 
30103
- .E_t160l1cm {
30104
- display: flex;
30105
- flex-direction: column;
30106
- flex: 1;
30107
- /* FIXME:(yanzhen) do this better */
30108
- }
30109
- .E_t160l1cm .tab-bar {
30110
- flex-shrink: 0;
30111
- display: flex;
30112
- border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30089
+ .E_c18gxmrl {
30090
+ border: 1px solid #d8deeb;
30091
+ border-radius: 4px;
30113
30092
  }
30114
- .E_t160l1cm .tab-content {
30115
- height: 100%;
30093
+ .E_c18gxmrl + .E_c18gxmrl {
30094
+ margin-top: 8px;
30116
30095
  }
30117
- .E_t160l1cm .tab-menu-item {
30118
- margin-right: 2px;
30119
- padding: 1px 12px;
30120
- line-height: 24px;
30121
- height: 24px;
30122
- color: rgba(44, 56, 82, 0.6);
30123
- border-radius: 4px 4px 0 0;
30124
- cursor: pointer;
30125
- transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30096
+ .E_c18gxmrl:hover {
30097
+ border-color: #0080ff;
30126
30098
  }
30127
- .E_t160l1cm .tab-menu-item:first-child {
30128
- padding-left: 0;
30099
+ .E_c18gxmrl:hover > header {
30100
+ background: rgba(0, 128, 255, 0.1);
30129
30101
  }
30130
- .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30131
- padding-left: 12px;
30102
+ .E_c18gxmrl.active header {
30103
+ border-bottom: 1px solid #d8deeb;
30132
30104
  }
30133
- .E_t160l1cm .tab-menu-item:hover {
30134
- color: #0080ff;
30135
- background: rgba(211, 218, 235, 0.6);
30105
+ .E_c18gxmrl > header {
30106
+ padding: 8px 12px;
30136
30107
  }
30137
- .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30138
- fill: #0080ff;
30108
+
30109
+ .E_berrcjl {
30110
+ color: rgba(10, 37, 85, 0.6);
30111
+ margin-bottom: 4px;
30139
30112
  }
30140
- .E_t160l1cm .tab-menu-item:active {
30141
- background: rgba(192, 203, 224, 0.6);
30113
+ .E_berrcjl .breadcrumb-link {
30114
+ color: rgba(10, 37, 85, 0.6);
30115
+ cursor: pointer;
30116
+ transition: color 160ms ease;
30142
30117
  }
30143
- .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30118
+ .E_berrcjl .breadcrumb-link:hover {
30144
30119
  color: #0080ff;
30145
- background: rgba(211, 218, 235, 0.6);
30146
30120
  }
30147
- .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30148
- background: rgba(192, 203, 224, 0.6);
30121
+ .E_berrcjl .breadcrumb-link:active {
30122
+ color: #005ed1;
30149
30123
  }
30150
- .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30151
- background: rgba(0, 128, 255, 0.16);
30124
+
30125
+ .E_s1at6qmn.ant-layout-sider {
30126
+ background: #edf0f7;
30127
+ padding: 32px 8px;
30128
+ overflow: auto;
30152
30129
  }
30153
- .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30154
- fill: #0080ff;
30130
+ .E_s1at6qmn .ant-layout-sider-children {
30131
+ display: flex;
30132
+ flex-direction: column;
30133
+ justify-content: space-between;
30155
30134
  }
30156
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30157
- color: #0080ff;
30158
- background: rgba(0, 128, 255, 0.1);
30135
+ .E_s1at6qmn footer {
30136
+ display: flex;
30159
30137
  }
30160
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30161
- background: rgba(0, 128, 255, 0.16);
30138
+ .E_s1at6qmn .ant-menu {
30139
+ background: #edf0f7;
30162
30140
  }
30163
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30164
- fill: #1d326c;
30141
+ .E_s1at6qmn .ant-menu a {
30142
+ color: #00122e;
30143
+ width: 180px;
30144
+ overflow: hidden;
30145
+ text-overflow: ellipsis;
30165
30146
  }
30166
- .E_t160l1cm .tab-menu-item .expand-arrow {
30167
- margin-left: 8px;
30168
- height: 22px;
30147
+ .E_s1at6qmn .ant-menu-vertical {
30148
+ margin-bottom: 24px;
30169
30149
  }
30170
- .E_t160l1cm .tab-menu-item .expand-arrow path {
30171
- fill: rgba(44, 56, 82, 0.6);
30150
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
30151
+ margin: 0;
30172
30152
  }
30173
- .E_t160l1cm .tab-menu-item-group {
30153
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
30154
+ font-size: 12px;
30155
+ padding: 0 8px 4px;
30156
+ line-height: 18px;
30157
+ }
30158
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
30174
30159
  padding: 0;
30175
- display: flex;
30176
- align-items: center;
30177
- overflow: hidden;
30178
30160
  }
30179
- .E_t160l1cm .tab-menu-item-group .main-title {
30180
- opacity: 0;
30181
- max-width: 0;
30182
- transition: max-width 320ms ease, opacity 240ms ease;
30161
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
30162
+ padding-bottom: 24px;
30183
30163
  }
30184
- .E_t160l1cm .tab-menu-item-group .sub-title {
30185
- padding: 1px 12px;
30186
- position: relative;
30187
- display: flex;
30164
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
30165
+ margin-bottom: 24px;
30166
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
30188
30167
  }
30189
- .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30190
- opacity: 0;
30191
- position: absolute;
30192
- top: 50%;
30193
- left: 0;
30194
- transform: translate(-50%, -50%);
30195
- transition: opacity 100ms linear;
30196
- fill: rgba(0, 128, 255, 0.2);
30168
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
30169
+ transition: none;
30170
+ display: flex;
30171
+ align-items: center;
30172
+ height: 32px;
30173
+ line-height: 22px;
30174
+ padding: 0 8px;
30197
30175
  }
30198
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30199
- color: #0080ff;
30176
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
30177
+ margin-right: 12px;
30200
30178
  }
30201
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30202
- padding: 1px 12px;
30203
- display: inline-block;
30204
- opacity: 1;
30205
- max-width: 160px;
30179
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
30180
+ margin: 0;
30181
+ margin-bottom: 2px;
30206
30182
  }
30207
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30208
- padding: 1px 12px;
30209
- color: #005ed1;
30183
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
30184
+ background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
30185
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
30186
+ border-radius: 6px;
30187
+ color: #fff;
30210
30188
  }
30211
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30212
- opacity: 1;
30189
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
30190
+ color: #fff;
30213
30191
  }
30214
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
30215
- background: rgba(0, 128, 255, 0.16);
30192
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item:hover, .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item-active {
30193
+ background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
30194
+ box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
30195
+ border-radius: 6px;
30216
30196
  }
30217
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
30218
- opacity: 0;
30197
+
30198
+ .E_s1wu0lms .ant-menu-item-group-title {
30199
+ white-space: nowrap;
30200
+ transition: all 0s;
30219
30201
  }
30220
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30221
- padding: 4px 16px;
30222
- height: 32px;
30223
- border-radius: 6px 6px 0 0;
30202
+ .E_s1wu0lms.shrink {
30203
+ transition: all 0s;
30204
+ overflow: hidden;
30224
30205
  }
30225
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30226
- padding-left: 0;
30206
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
30207
+ visibility: hidden;
30227
30208
  }
30228
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
30229
- padding-left: 16px;
30209
+ .E_s1wu0lms.shrink .ant-menu-item {
30210
+ width: 36px;
30211
+ padding: 0 6px;
30230
30212
  }
30231
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30232
- margin-left: 11px;
30233
- height: 24px;
30213
+
30214
+ .E_n1ugzfva {
30215
+ display: flex;
30216
+ place-items: center;
30217
+ width: 100% !important;
30234
30218
  }
30235
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30236
- padding: 0;
30219
+ .E_n1ugzfva[disabled] {
30220
+ color: rgba(0, 0, 0, 0.25) !important;
30221
+ opacity: 1 !important;
30237
30222
  }
30238
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30239
- padding: 4px 16px;
30223
+ .E_n1ugzfva.ant-btn {
30224
+ width: 100%;
30225
+ color: #00122e;
30240
30226
  }
30241
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
30242
- padding: 4px 16px;
30227
+ .E_n1ugzfva .icon-wrapper {
30228
+ margin-right: 12px;
30243
30229
  }
30244
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30245
- background: #fff;
30246
- }
30247
- .E_t160l1cm .tab-menu-item-light:active {
30248
- color: #005ed1;
30249
- }
30250
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30251
- background: #fff;
30252
- color: #1d326c;
30253
- }
30254
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30255
- color: rgba(45, 58, 86, 0.6);
30256
- }
30257
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30258
- color: #1d326c;
30259
- }
30260
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30261
- fill: #d8deeb;
30262
- }
30263
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30264
- fill: #1d326c;
30265
- }
30266
- .E_t160l1cm .tab-content {
30230
+ .E_n1ugzfva .link-title {
30267
30231
  flex: 1;
30268
- display: flex;
30269
- flex-direction: column;
30270
- }
30271
- .E_t160l1cm.is-overview .tab-content {
30272
- overflow: visible;
30273
- }
30274
-
30275
- .E_t14npdqr {
30276
- max-width: 240px;
30277
- animation: none;
30278
- }
30279
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30280
- border: 1px solid #0080ff;
30281
- padding: 0;
30282
- }
30283
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30284
- margin: 0;
30285
- height: 32px;
30286
- line-height: 32px;
30287
- font-size: 13px;
30288
- padding: 0 10px;
30289
- display: block;
30290
30232
  overflow: hidden;
30291
- text-overflow: ellipsis;
30292
- white-space: nowrap;
30293
- }
30294
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30295
- content: " ";
30296
- height: 1px;
30297
- width: calc(100% + 10px);
30298
- background: rgba(172, 186, 211, 0.6);
30299
- display: block;
30300
- }
30301
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30302
- color: #0080ff;
30303
- background: transparent;
30304
- }
30305
-
30306
- .E_c18bcrac {
30307
- display: inline-block;
30308
- width: 100%;
30309
- }
30310
- .E_c18bcrac .recharts-wrapper {
30311
- margin-left: 4px;
30312
- }
30313
-
30314
- .E_cro7kg2 {
30315
- padding: 4px;
30316
- }
30317
-
30318
- .E_c14wcxf0 {
30319
- display: flex;
30320
- justify-content: space-between;
30321
- align-items: center;
30322
- font-size: 13px;
30323
- line-height: 24px;
30324
- color: #cccccc;
30325
30233
  white-space: nowrap;
30326
- }
30327
- .E_c14wcxf0 label {
30328
- margin-right: 32px;
30329
- }
30330
-
30331
- .E_coy29mj.E_c14wcxf0 {
30332
- font-weight: bold;
30333
- color: white;
30334
- }
30335
-
30336
- .E_s11212zy {
30337
- width: 8px;
30338
- height: 8px;
30339
- border-radius: 2px;
30340
- display: inline-block;
30341
- background: var(--s11212zy-0);
30342
- border: 1px solid #fff;
30343
- box-sizing: content-box;
30344
- margin-right: 6px;
30345
- }
30346
-
30347
- .E_p1lyky6c > :first-child {
30348
- font-weight: bold;
30349
- color: white;
30350
- margin-right: 4px;
30351
- }
30352
-
30353
- .E_s1iv0tp1 .enabled-switch {
30354
- display: flex;
30355
- align-items: center;
30356
- }
30357
- .E_s1iv0tp1 .enabled-text {
30358
- margin-right: 8px;
30234
+ text-overflow: ellipsis;
30235
+ text-align: left;
30359
30236
  }
30360
30237
 
30361
30238
  .E_t1sqg15u {
@@ -30448,105 +30325,6 @@ span.E_tqjc4ui {
30448
30325
  padding-right: 12px;
30449
30326
  }
30450
30327
 
30451
- .E_ou7iq30 {
30452
- overflow: hidden;
30453
- text-overflow: ellipsis;
30454
- }
30455
-
30456
- .E_s1tui002 {
30457
- white-space: nowrap;
30458
- }
30459
-
30460
- .E_mxrc2zg {
30461
- display: -webkit-box;
30462
- -webkit-line-clamp: var(--mxrc2zg-0);
30463
- -webkit-box-orient: vertical;
30464
- word-break: break-all;
30465
- }
30466
-
30467
- .E_t1vv6d68 .ant-tooltip-arrow {
30468
- display: none;
30469
- }
30470
- .E_t1vv6d68 .ant-tooltip-inner {
30471
- background: rgba(23, 38, 64, 0.8);
30472
- border-radius: 4px;
30473
- }
30474
- .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30475
- visibility: hidden;
30476
- }
30477
-
30478
- .E_wg1tsps {
30479
- display: flex;
30480
- align-items: center;
30481
- justify-content: flex-end;
30482
- }
30483
-
30484
- .E_b1ctd5xy {
30485
- display: flex;
30486
- align-items: center;
30487
- width: calc(100% - 40px);
30488
- }
30489
- .E_b1ctd5xy .chart {
30490
- display: inline-block;
30491
- width: 100%;
30492
- }
30493
-
30494
- .E_u1p8acpn {
30495
- min-width: 40px;
30496
- }
30497
- .E_u1p8acpn .unit {
30498
- color: #00122e !important;
30499
- }
30500
-
30501
- .E_c18gxmrl {
30502
- border: 1px solid #d8deeb;
30503
- border-radius: 4px;
30504
- }
30505
- .E_c18gxmrl + .E_c18gxmrl {
30506
- margin-top: 8px;
30507
- }
30508
- .E_c18gxmrl:hover {
30509
- border-color: #0080ff;
30510
- }
30511
- .E_c18gxmrl:hover > header {
30512
- background: rgba(0, 128, 255, 0.1);
30513
- }
30514
- .E_c18gxmrl.active header {
30515
- border-bottom: 1px solid #d8deeb;
30516
- }
30517
- .E_c18gxmrl > header {
30518
- padding: 8px 12px;
30519
- }
30520
-
30521
- .E_b1nip9bk {
30522
- padding: 4px 11px;
30523
- }
30524
-
30525
- .E_bqamoqe {
30526
- white-space: nowrap;
30527
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30528
- }
30529
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30530
- --color: #0080ff;
30531
- }
30532
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
30533
- --color: #0080ff;
30534
- }
30535
- .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30536
- margin-left: 1px;
30537
- }
30538
- .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30539
- border-top-right-radius: 0;
30540
- border-bottom-right-radius: 0;
30541
- }
30542
- .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30543
- border-top-left-radius: 0;
30544
- border-bottom-left-radius: 0;
30545
- }
30546
- .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30547
- border-radius: unset;
30548
- }
30549
-
30550
30328
  .E_m74vjol {
30551
30329
  display: flex;
30552
30330
  justify-content: space-between;
@@ -30567,20 +30345,12 @@ span.E_tqjc4ui {
30567
30345
  flex: 1;
30568
30346
  }
30569
30347
 
30570
- .E_berrcjl {
30571
- color: rgba(10, 37, 85, 0.6);
30572
- margin-bottom: 4px;
30573
- }
30574
- .E_berrcjl .breadcrumb-link {
30575
- color: rgba(10, 37, 85, 0.6);
30576
- cursor: pointer;
30577
- transition: color 160ms ease;
30578
- }
30579
- .E_berrcjl .breadcrumb-link:hover {
30580
- color: #0080ff;
30348
+ .E_s1iv0tp1 .enabled-switch {
30349
+ display: flex;
30350
+ align-items: center;
30581
30351
  }
30582
- .E_berrcjl .breadcrumb-link:active {
30583
- color: #005ed1;
30352
+ .E_s1iv0tp1 .enabled-text {
30353
+ margin-right: 8px;
30584
30354
  }
30585
30355
 
30586
30356
  .E_b1wx3t3t.ant-btn-icon-only {
@@ -30595,14 +30365,17 @@ span.E_tqjc4ui {
30595
30365
  line-height: 22px;
30596
30366
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
30597
30367
  transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
30368
+ padding: 5px 12px;
30598
30369
  }
30599
30370
  .E_b1wx3t3t.ant-btn.ant-btn-lg {
30600
30371
  height: 40px;
30601
30372
  line-height: 24px;
30373
+ padding: 8px 16px;
30602
30374
  }
30603
30375
  .E_b1wx3t3t.ant-btn.ant-btn-sm {
30604
30376
  height: 24px;
30605
30377
  line-height: 20px;
30378
+ padding: 2px 8px;
30606
30379
  }
30607
30380
  .E_b1wx3t3t.ant-btn.ant-btn-circle, .E_b1wx3t3t.ant-btn.ant-btn-circle-outline {
30608
30381
  border-radius: 50%;
@@ -30644,6 +30417,7 @@ span.E_tqjc4ui {
30644
30417
  background: var(--background-color-disabled, var(--background-color));
30645
30418
  border-color: var(--border-color-disabled, var(--border-color, transparent));
30646
30419
  opacity: 0.5;
30420
+ --transY: 0;
30647
30421
  }
30648
30422
  .E_b1wx3t3t.ant-btn-link[disabled] {
30649
30423
  color: #0080ff;
@@ -30837,26 +30611,266 @@ button.E_n7k2c6r {
30837
30611
  padding: 0;
30838
30612
  }
30839
30613
 
30840
- .E_c1uzzomf {
30841
- margin-bottom: 16px;
30614
+ .E_b1nip9bk {
30615
+ padding: 4px 11px;
30842
30616
  }
30843
- .E_c1uzzomf .card-title {
30844
- font-size: 16px;
30845
- color: rgba(44, 56, 82, 0.6);
30846
- font-weight: 700;
30847
- line-height: 32px;
30617
+
30618
+ .E_bqamoqe {
30619
+ white-space: nowrap;
30620
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30848
30621
  }
30849
- .E_c1uzzomf .card-body {
30850
- padding: 24px;
30851
- border-radius: 8px;
30852
- background: #fff;
30622
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30623
+ --color: #0080ff;
30853
30624
  }
30854
- .E_c1uzzomf .empty {
30855
- font-weight: 700;
30856
- font-size: 14px;
30857
- line-height: 22px;
30858
- color: rgba(0, 21, 64, 0.3);
30859
- text-align: center;
30625
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
30626
+ --color: #0080ff;
30627
+ }
30628
+ .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30629
+ margin-left: 1px;
30630
+ }
30631
+ .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30632
+ border-top-right-radius: 0;
30633
+ border-bottom-right-radius: 0;
30634
+ }
30635
+ .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30636
+ border-top-left-radius: 0;
30637
+ border-bottom-left-radius: 0;
30638
+ }
30639
+ .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30640
+ border-radius: unset;
30641
+ }
30642
+
30643
+ .E_wg1tsps {
30644
+ display: flex;
30645
+ align-items: center;
30646
+ justify-content: flex-end;
30647
+ }
30648
+
30649
+ .E_b1ctd5xy {
30650
+ display: flex;
30651
+ align-items: center;
30652
+ width: calc(100% - 40px);
30653
+ }
30654
+ .E_b1ctd5xy .chart {
30655
+ display: inline-block;
30656
+ width: 100%;
30657
+ }
30658
+
30659
+ .E_u1p8acpn {
30660
+ min-width: 40px;
30661
+ }
30662
+ .E_u1p8acpn .unit {
30663
+ color: #00122e !important;
30664
+ }
30665
+
30666
+ .E_t160l1cm {
30667
+ display: flex;
30668
+ flex-direction: column;
30669
+ flex: 1;
30670
+ /* FIXME:(yanzhen) do this better */
30671
+ }
30672
+ .E_t160l1cm .tab-bar {
30673
+ flex-shrink: 0;
30674
+ display: flex;
30675
+ border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30676
+ }
30677
+ .E_t160l1cm .tab-content {
30678
+ height: 100%;
30679
+ }
30680
+ .E_t160l1cm .tab-menu-item {
30681
+ margin-right: 2px;
30682
+ padding: 1px 12px;
30683
+ line-height: 24px;
30684
+ height: 24px;
30685
+ color: rgba(44, 56, 82, 0.6);
30686
+ border-radius: 4px 4px 0 0;
30687
+ cursor: pointer;
30688
+ transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30689
+ }
30690
+ .E_t160l1cm .tab-menu-item:first-child {
30691
+ padding-left: 0;
30692
+ }
30693
+ .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30694
+ padding-left: 12px;
30695
+ }
30696
+ .E_t160l1cm .tab-menu-item:hover {
30697
+ color: #0080ff;
30698
+ background: rgba(211, 218, 235, 0.6);
30699
+ }
30700
+ .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30701
+ fill: #0080ff;
30702
+ }
30703
+ .E_t160l1cm .tab-menu-item:active {
30704
+ background: rgba(192, 203, 224, 0.6);
30705
+ }
30706
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30707
+ color: #0080ff;
30708
+ background: rgba(211, 218, 235, 0.6);
30709
+ }
30710
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30711
+ background: rgba(192, 203, 224, 0.6);
30712
+ }
30713
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30714
+ background: rgba(0, 128, 255, 0.16);
30715
+ }
30716
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30717
+ fill: #0080ff;
30718
+ }
30719
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30720
+ color: #0080ff;
30721
+ background: rgba(0, 128, 255, 0.1);
30722
+ }
30723
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30724
+ background: rgba(0, 128, 255, 0.16);
30725
+ }
30726
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30727
+ fill: #1d326c;
30728
+ }
30729
+ .E_t160l1cm .tab-menu-item .expand-arrow {
30730
+ margin-left: 8px;
30731
+ height: 22px;
30732
+ }
30733
+ .E_t160l1cm .tab-menu-item .expand-arrow path {
30734
+ fill: rgba(44, 56, 82, 0.6);
30735
+ }
30736
+ .E_t160l1cm .tab-menu-item-group {
30737
+ padding: 0;
30738
+ display: flex;
30739
+ align-items: center;
30740
+ overflow: hidden;
30741
+ }
30742
+ .E_t160l1cm .tab-menu-item-group .main-title {
30743
+ opacity: 0;
30744
+ max-width: 0;
30745
+ transition: max-width 320ms ease, opacity 240ms ease;
30746
+ }
30747
+ .E_t160l1cm .tab-menu-item-group .sub-title {
30748
+ padding: 1px 12px;
30749
+ position: relative;
30750
+ display: flex;
30751
+ }
30752
+ .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30753
+ opacity: 0;
30754
+ position: absolute;
30755
+ top: 50%;
30756
+ left: 0;
30757
+ transform: translate(-50%, -50%);
30758
+ transition: opacity 100ms linear;
30759
+ fill: rgba(0, 128, 255, 0.2);
30760
+ }
30761
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30762
+ color: #0080ff;
30763
+ }
30764
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30765
+ padding: 1px 12px;
30766
+ display: inline-block;
30767
+ opacity: 1;
30768
+ max-width: 160px;
30769
+ }
30770
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30771
+ padding: 1px 12px;
30772
+ color: #005ed1;
30773
+ }
30774
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30775
+ opacity: 1;
30776
+ }
30777
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
30778
+ background: rgba(0, 128, 255, 0.16);
30779
+ }
30780
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
30781
+ opacity: 0;
30782
+ }
30783
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30784
+ padding: 4px 16px;
30785
+ height: 32px;
30786
+ border-radius: 6px 6px 0 0;
30787
+ }
30788
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30789
+ padding-left: 0;
30790
+ }
30791
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
30792
+ padding-left: 16px;
30793
+ }
30794
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30795
+ margin-left: 11px;
30796
+ height: 24px;
30797
+ }
30798
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30799
+ padding: 0;
30800
+ }
30801
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30802
+ padding: 4px 16px;
30803
+ }
30804
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
30805
+ padding: 4px 16px;
30806
+ }
30807
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30808
+ background: #fff;
30809
+ }
30810
+ .E_t160l1cm .tab-menu-item-light:active {
30811
+ color: #005ed1;
30812
+ }
30813
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30814
+ background: #fff;
30815
+ color: #1d326c;
30816
+ }
30817
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30818
+ color: rgba(45, 58, 86, 0.6);
30819
+ }
30820
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30821
+ color: #1d326c;
30822
+ }
30823
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30824
+ fill: #d8deeb;
30825
+ }
30826
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30827
+ fill: #1d326c;
30828
+ }
30829
+ .E_t160l1cm .tab-content {
30830
+ flex: 1;
30831
+ display: flex;
30832
+ flex-direction: column;
30833
+ }
30834
+ .E_t160l1cm.is-overview .tab-content {
30835
+ overflow: visible;
30836
+ }
30837
+
30838
+ .E_t14npdqr {
30839
+ max-width: 240px;
30840
+ animation: none;
30841
+ }
30842
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30843
+ border: 1px solid #0080ff;
30844
+ padding: 0;
30845
+ }
30846
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30847
+ margin: 0;
30848
+ height: 32px;
30849
+ line-height: 32px;
30850
+ font-size: 13px;
30851
+ padding: 0 10px;
30852
+ display: block;
30853
+ overflow: hidden;
30854
+ text-overflow: ellipsis;
30855
+ white-space: nowrap;
30856
+ }
30857
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30858
+ content: " ";
30859
+ height: 1px;
30860
+ width: calc(100% + 10px);
30861
+ background: rgba(172, 186, 211, 0.6);
30862
+ display: block;
30863
+ }
30864
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30865
+ color: #0080ff;
30866
+ background: transparent;
30867
+ }
30868
+
30869
+ .E_c1yyuluq {
30870
+ border-radius: 8px;
30871
+ }
30872
+ .E_c1yyuluq .ant-card-body {
30873
+ padding: 20px 24px 24px 24px;
30860
30874
  }
30861
30875
 
30862
30876
  .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
@@ -30872,6 +30886,66 @@ button.E_n7k2c6r {
30872
30886
  border-top: 1px solid rgba(211, 218, 235, 0.6);
30873
30887
  }
30874
30888
 
30889
+ .E_sx1bpnu .ant-input-sm {
30890
+ line-height: 18px;
30891
+ }
30892
+
30893
+ .E_ccrbeuz .ant-collapse-item {
30894
+ border: 0px;
30895
+ background-color: #fff;
30896
+ }
30897
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
30898
+ padding-top: 0px;
30899
+ padding-bottom: 0px;
30900
+ padding-left: 0px !important;
30901
+ padding-right: 24px;
30902
+ }
30903
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
30904
+ right: 0px;
30905
+ }
30906
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
30907
+ padding: 0px;
30908
+ }
30909
+
30910
+ .E_c1fljvag .ant-collapse-item .ant-collapse-header {
30911
+ padding-right: 0px;
30912
+ cursor: default;
30913
+ }
30914
+
30915
+ .E_itxley7.ant-input-group.ant-input-group-compact {
30916
+ display: flex;
30917
+ }
30918
+ .E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
30919
+ border-bottom-left-radius: 5px;
30920
+ border-top-left-radius: 5px;
30921
+ }
30922
+ .E_itxley7.ant-input-group.ant-input-group-compact > *:last-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
30923
+ border-bottom-right-radius: 5px;
30924
+ border-top-right-radius: 5px;
30925
+ }
30926
+
30927
+ .E_c1uzzomf {
30928
+ margin-bottom: 16px;
30929
+ }
30930
+ .E_c1uzzomf .card-title {
30931
+ font-size: 16px;
30932
+ color: rgba(44, 56, 82, 0.6);
30933
+ font-weight: 700;
30934
+ line-height: 32px;
30935
+ }
30936
+ .E_c1uzzomf .card-body {
30937
+ padding: 24px;
30938
+ border-radius: 8px;
30939
+ background: #fff;
30940
+ }
30941
+ .E_c1uzzomf .empty {
30942
+ font-weight: 700;
30943
+ font-size: 14px;
30944
+ line-height: 22px;
30945
+ color: rgba(0, 21, 64, 0.3);
30946
+ text-align: center;
30947
+ }
30948
+
30875
30949
  .E_d1bw7c5z {
30876
30950
  position: relative;
30877
30951
  max-width: 388px;
@@ -30955,51 +31029,6 @@ button.E_n7k2c6r {
30955
31029
  width: 102px;
30956
31030
  }
30957
31031
 
30958
- .E_itxley7.ant-input-group.ant-input-group-compact {
30959
- display: flex;
30960
- }
30961
- .E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
30962
- border-bottom-left-radius: 5px;
30963
- border-top-left-radius: 5px;
30964
- }
30965
- .E_itxley7.ant-input-group.ant-input-group-compact > *:last-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
30966
- border-bottom-right-radius: 5px;
30967
- border-top-right-radius: 5px;
30968
- }
30969
-
30970
- .E_sx1bpnu .ant-input-sm {
30971
- line-height: 18px;
30972
- }
30973
-
30974
- .E_c1yyuluq {
30975
- border-radius: 8px;
30976
- }
30977
- .E_c1yyuluq .ant-card-body {
30978
- padding: 20px 24px 24px 24px;
30979
- }
30980
-
30981
- .E_ccrbeuz .ant-collapse-item {
30982
- border: 0px;
30983
- background-color: #fff;
30984
- }
30985
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
30986
- padding-top: 0px;
30987
- padding-bottom: 0px;
30988
- padding-left: 0px !important;
30989
- padding-right: 24px;
30990
- }
30991
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
30992
- right: 0px;
30993
- }
30994
- .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
30995
- padding: 0px;
30996
- }
30997
-
30998
- .E_c1fljvag .ant-collapse-item .ant-collapse-header {
30999
- padding-right: 0px;
31000
- cursor: default;
31001
- }
31002
-
31003
31032
  .E_phljevk {
31004
31033
  display: flex;
31005
31034
  justify-content: space-between;
@@ -31057,6 +31086,56 @@ button.E_n7k2c6r {
31057
31086
  line-height: 18px;
31058
31087
  }
31059
31088
 
31089
+ .E_c1bus5hc {
31090
+ --color: white;
31091
+ height: 14px;
31092
+ width: 14px;
31093
+ border-radius: 50%;
31094
+ flex-shrink: 0;
31095
+ display: flex;
31096
+ align-items: center;
31097
+ justify-content: center;
31098
+ border: 1px solid var(--color);
31099
+ }
31100
+ .E_c1bus5hc .circle-inner {
31101
+ position: relative;
31102
+ height: 10px;
31103
+ width: 10px;
31104
+ border-radius: 50%;
31105
+ overflow: hidden;
31106
+ }
31107
+ .E_c1bus5hc .circle-content {
31108
+ position: absolute;
31109
+ height: 100%;
31110
+ width: 100%;
31111
+ left: 0;
31112
+ top: 0;
31113
+ border-radius: 50%;
31114
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
31115
+ transform: rotate(180deg);
31116
+ }
31117
+ .E_c1bus5hc .circle-child {
31118
+ position: absolute;
31119
+ height: 100%;
31120
+ width: 100%;
31121
+ left: 0;
31122
+ top: 0;
31123
+ margin-left: 50%;
31124
+ transform-origin: left;
31125
+ background: white;
31126
+ transform: rotate(0deg);
31127
+ }
31128
+
31129
+ .E_ivqqkzv {
31130
+ height: 24px;
31131
+ width: 56px !important;
31132
+ margin-right: 4px;
31133
+ }
31134
+
31135
+ .E_c1wk4q29 {
31136
+ color: rgba(44, 56, 82, 0.6);
31137
+ }
31138
+
31060
31139
  .E_rapgekc.ant-radio-wrapper {
31061
31140
  display: inline-flex;
31062
31141
  align-items: baseline;
@@ -31203,71 +31282,6 @@ button.E_n7k2c6r {
31203
31282
  width: 36px;
31204
31283
  }
31205
31284
 
31206
- .E_ivqqkzv {
31207
- height: 24px;
31208
- width: 56px !important;
31209
- margin-right: 4px;
31210
- }
31211
-
31212
- .E_c1wk4q29 {
31213
- color: rgba(44, 56, 82, 0.6);
31214
- }
31215
-
31216
- .E_s1dizucg.ant-switch {
31217
- min-width: 40px;
31218
- height: 24px;
31219
- background: rgba(172, 186, 211, 0.6);
31220
- overflow: hidden;
31221
- }
31222
- .E_s1dizucg.ant-switch:focus {
31223
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31224
- }
31225
- .E_s1dizucg.ant-switch-small {
31226
- min-width: 26px;
31227
- height: 16px;
31228
- }
31229
- .E_s1dizucg.ant-switch-large {
31230
- min-width: 52px;
31231
- height: 32px;
31232
- }
31233
- .E_s1dizucg.ant-switch .ant-switch-handle {
31234
- height: 20px;
31235
- width: 20px;
31236
- }
31237
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
31238
- border-radius: 10px;
31239
- transition-delay: 120ms;
31240
- }
31241
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
31242
- height: 14px;
31243
- width: 14px;
31244
- top: 1px;
31245
- left: 1px;
31246
- }
31247
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
31248
- height: 28px;
31249
- width: 28px;
31250
- }
31251
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31252
- border-radius: 14px;
31253
- }
31254
- .E_s1dizucg.ant-switch-checked {
31255
- background-color: #00ba5d;
31256
- }
31257
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31258
- left: calc(100% - 20px - 2px);
31259
- }
31260
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31261
- left: calc(100% - 14px - 1px);
31262
- }
31263
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31264
- left: calc(100% - 28px - 2px);
31265
- }
31266
-
31267
- .E_c1up6e3y {
31268
- margin-left: 5px;
31269
- }
31270
-
31271
31285
  .E_i11gg7mj .ant-input-prefix {
31272
31286
  margin-right: 8px;
31273
31287
  }
@@ -31294,103 +31308,63 @@ button.E_n7k2c6r {
31294
31308
  cursor: not-allowed;
31295
31309
  }
31296
31310
 
31297
- .E_c1bus5hc {
31298
- --color: white;
31299
- height: 14px;
31300
- width: 14px;
31301
- border-radius: 50%;
31302
- flex-shrink: 0;
31303
- display: flex;
31304
- align-items: center;
31305
- justify-content: center;
31306
- border: 1px solid var(--color);
31307
- }
31308
- .E_c1bus5hc .circle-inner {
31309
- position: relative;
31310
- height: 10px;
31311
- width: 10px;
31312
- border-radius: 50%;
31311
+ .E_s1dizucg.ant-switch {
31312
+ min-width: 40px;
31313
+ height: 24px;
31314
+ background: rgba(172, 186, 211, 0.6);
31313
31315
  overflow: hidden;
31314
31316
  }
31315
- .E_c1bus5hc .circle-content {
31316
- position: absolute;
31317
- height: 100%;
31318
- width: 100%;
31319
- left: 0;
31320
- top: 0;
31321
- border-radius: 50%;
31322
- background: linear-gradient(to right, var(--color) 50%, white 50%);
31323
- transform: rotate(180deg);
31317
+ .E_s1dizucg.ant-switch:focus {
31318
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31319
+ }
31320
+ .E_s1dizucg.ant-switch-small {
31321
+ min-width: 26px;
31322
+ height: 16px;
31323
+ }
31324
+ .E_s1dizucg.ant-switch-large {
31325
+ min-width: 52px;
31326
+ height: 32px;
31327
+ }
31328
+ .E_s1dizucg.ant-switch .ant-switch-handle {
31329
+ height: 20px;
31330
+ width: 20px;
31324
31331
  }
31325
- .E_c1bus5hc .circle-child {
31326
- position: absolute;
31327
- height: 100%;
31328
- width: 100%;
31329
- left: 0;
31330
- top: 0;
31331
- margin-left: 50%;
31332
- transform-origin: left;
31333
- background: white;
31334
- transform: rotate(0deg);
31332
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
31333
+ border-radius: 10px;
31334
+ transition-delay: 120ms;
31335
31335
  }
31336
-
31337
- .E_tju3gfj .date {
31338
- margin-right: 4px;
31336
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
31337
+ height: 14px;
31338
+ width: 14px;
31339
+ top: 1px;
31340
+ left: 1px;
31339
31341
  }
31340
-
31341
- .E_iq1gosr {
31342
- display: inline-block;
31342
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
31343
+ height: 28px;
31344
+ width: 28px;
31343
31345
  }
31344
-
31345
- .E_atcz0kf .ant-input-suffix {
31346
- margin-left: 8px;
31346
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31347
+ border-radius: 14px;
31347
31348
  }
31348
- .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
31349
- padding: 2px 7px 2px 12px;
31349
+ .E_s1dizucg.ant-switch-checked {
31350
+ background-color: #00ba5d;
31350
31351
  }
31351
-
31352
- .E_i1inqkme {
31353
- height: 18px;
31354
- line-height: 18px;
31355
- padding: 0 4px;
31356
- border-radius: 4px;
31357
- background: rgba(235, 239, 245, 0.6);
31358
- border: 1px solid rgba(223, 228, 235, 0.6);
31359
- display: flex;
31360
- align-items: center;
31361
- white-space: nowrap;
31362
- margin-right: 4px;
31352
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31353
+ left: calc(100% - 20px - 2px);
31363
31354
  }
31364
-
31365
- .E_a1wfy30z .ant-input-number-handler-wrap {
31366
- display: var(--a1wfy30z-0);
31355
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31356
+ left: calc(100% - 14px - 1px);
31367
31357
  }
31368
- .E_a1wfy30z .ant-input-number-input-wrap {
31369
- padding: 4px 11px;
31370
- display: inline-flex;
31371
- line-height: 1.5715;
31372
- height: inherit;
31358
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31359
+ left: calc(100% - 28px - 2px);
31373
31360
  }
31374
- .E_a1wfy30z .ant-input-number-input-wrap::after {
31375
- content: var(--a1wfy30z-1);
31376
- display: var(--a1wfy30z-2);
31377
- flex: none;
31378
- align-items: center;
31379
- margin-left: 4px;
31361
+
31362
+ .E_c1up6e3y {
31363
+ margin-left: 5px;
31380
31364
  }
31381
- .E_a1wfy30z .ant-input-number-input-wrap::before {
31382
- content: var(--a1wfy30z-3);
31383
- display: var(--a1wfy30z-4);
31384
- flex: none;
31385
- align-items: center;
31365
+
31366
+ .E_tju3gfj .date {
31386
31367
  margin-right: 4px;
31387
- cursor: auto;
31388
- }
31389
- .E_a1wfy30z .ant-input-number-input {
31390
- padding: 0;
31391
- margin: 0;
31392
- height: auto;
31393
- font-size: inherit;
31394
31368
  }
31395
31369
 
31396
31370
  .E_s1sck0th {
@@ -31475,15 +31449,23 @@ button.E_n7k2c6r {
31475
31449
  background-color: #7E41FF;
31476
31450
  }
31477
31451
 
31478
- .E_t1m2x205 .ant-tooltip-arrow {
31479
- display: none;
31452
+ .E_fzh9mnb {
31453
+ width: 100%;
31454
+ height: 100%;
31455
+ min-height: 124px;
31456
+ display: flex;
31457
+ flex-direction: column;
31458
+ justify-content: center;
31459
+ align-items: center;
31480
31460
  }
31481
- .E_t1m2x205 .ant-tooltip-inner {
31482
- background: rgba(23, 38, 64, 0.8);
31483
- border-radius: 4px;
31461
+ .E_fzh9mnb .error-text {
31462
+ color: rgba(10, 37, 85, 0.6);
31463
+ margin-bottom: 16px;
31464
+ font-size: 18px;
31484
31465
  }
31485
- .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31486
- visibility: hidden;
31466
+
31467
+ .E_iq1gosr {
31468
+ display: inline-block;
31487
31469
  }
31488
31470
 
31489
31471
  .E_s1dni7lo {
@@ -31601,21 +31583,6 @@ button.E_n7k2c6r {
31601
31583
  min-height: 0px;
31602
31584
  }
31603
31585
 
31604
- .E_fzh9mnb {
31605
- width: 100%;
31606
- height: 100%;
31607
- min-height: 124px;
31608
- display: flex;
31609
- flex-direction: column;
31610
- justify-content: center;
31611
- align-items: center;
31612
- }
31613
- .E_fzh9mnb .error-text {
31614
- color: rgba(10, 37, 85, 0.6);
31615
- margin-bottom: 16px;
31616
- font-size: 18px;
31617
- }
31618
-
31619
31586
  .E_ai7qkf2 .ant-input-number-handler-wrap {
31620
31587
  display: var(--ai7qkf2-0);
31621
31588
  }
@@ -31676,6 +31643,57 @@ button.E_n7k2c6r {
31676
31643
  padding: 2px 8px;
31677
31644
  }
31678
31645
 
31646
+ .E_atcz0kf .ant-input-suffix {
31647
+ margin-left: 8px;
31648
+ }
31649
+ .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
31650
+ padding: 2px 7px 2px 12px;
31651
+ }
31652
+
31653
+ .E_i1inqkme {
31654
+ height: 18px;
31655
+ line-height: 18px;
31656
+ padding: 0 4px;
31657
+ border-radius: 4px;
31658
+ background: rgba(235, 239, 245, 0.6);
31659
+ border: 1px solid rgba(223, 228, 235, 0.6);
31660
+ display: flex;
31661
+ align-items: center;
31662
+ white-space: nowrap;
31663
+ margin-right: 4px;
31664
+ }
31665
+
31666
+ .E_a1wfy30z .ant-input-number-handler-wrap {
31667
+ display: var(--a1wfy30z-0);
31668
+ }
31669
+ .E_a1wfy30z .ant-input-number-input-wrap {
31670
+ padding: 4px 11px;
31671
+ display: inline-flex;
31672
+ line-height: 1.5715;
31673
+ height: inherit;
31674
+ }
31675
+ .E_a1wfy30z .ant-input-number-input-wrap::after {
31676
+ content: var(--a1wfy30z-1);
31677
+ display: var(--a1wfy30z-2);
31678
+ flex: none;
31679
+ align-items: center;
31680
+ margin-left: 4px;
31681
+ }
31682
+ .E_a1wfy30z .ant-input-number-input-wrap::before {
31683
+ content: var(--a1wfy30z-3);
31684
+ display: var(--a1wfy30z-4);
31685
+ flex: none;
31686
+ align-items: center;
31687
+ margin-right: 4px;
31688
+ cursor: auto;
31689
+ }
31690
+ .E_a1wfy30z .ant-input-number-input {
31691
+ padding: 0;
31692
+ margin: 0;
31693
+ height: auto;
31694
+ font-size: inherit;
31695
+ }
31696
+
31679
31697
  .E_iouxfgt {
31680
31698
  display: inline-flex;
31681
31699
  align-items: center;
@@ -31694,6 +31712,17 @@ button.E_n7k2c6r {
31694
31712
  animation: rotate 680ms linear infinite;
31695
31713
  }
31696
31714
 
31715
+ .E_t1m2x205 .ant-tooltip-arrow {
31716
+ display: none;
31717
+ }
31718
+ .E_t1m2x205 .ant-tooltip-inner {
31719
+ background: rgba(23, 38, 64, 0.8);
31720
+ border-radius: 4px;
31721
+ }
31722
+ .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31723
+ visibility: hidden;
31724
+ }
31725
+
31697
31726
  .E_owd0kml {
31698
31727
  display: inline-block;
31699
31728
  }
@@ -31703,6 +31732,36 @@ button.E_n7k2c6r {
31703
31732
  position: absolute;
31704
31733
  }
31705
31734
 
31735
+ .E_a1b5xrg3 .user-icon-inner {
31736
+ display: inline-flex;
31737
+ align-items: center;
31738
+ justify-content: center;
31739
+ color: #fff;
31740
+ font-weight: bold;
31741
+ font-size: 12px;
31742
+ width: 24px;
31743
+ height: 24px;
31744
+ border-radius: 50%;
31745
+ background: var(--a1b5xrg3-0);
31746
+ }
31747
+ .E_a1b5xrg3.btn-item {
31748
+ transition: all 160ms ease;
31749
+ cursor: pointer;
31750
+ width: 56px;
31751
+ height: 40px;
31752
+ display: inline-flex;
31753
+ align-items: center;
31754
+ justify-content: center;
31755
+ border-radius: 6px;
31756
+ }
31757
+ .E_a1b5xrg3.btn-item:hover {
31758
+ box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
31759
+ }
31760
+ .E_a1b5xrg3.btn-item:active {
31761
+ transform: translateY(2px);
31762
+ transition: all 320ms ease;
31763
+ }
31764
+
31706
31765
  .E_dsnbhzf {
31707
31766
  font-family: Inter;
31708
31767
  font-style: normal;
@@ -32171,45 +32230,11 @@ button.E_n7k2c6r {
32171
32230
  }
32172
32231
 
32173
32232
  .E_u18llj45 {
32174
- font-family: Inter;
32175
- font-style: normal;
32176
- font-weight: normal;
32177
- font-size: 10px;
32178
- line-height: 12px;
32179
- }
32180
-
32181
- .E_a1b5xrg3 .user-icon-inner {
32182
- display: inline-flex;
32183
- align-items: center;
32184
- justify-content: center;
32185
- color: #fff;
32186
- font-weight: bold;
32187
- font-size: 12px;
32188
- width: 24px;
32189
- height: 24px;
32190
- border-radius: 50%;
32191
- background: var(--a1b5xrg3-0);
32192
- }
32193
- .E_a1b5xrg3.btn-item {
32194
- transition: all 160ms ease;
32195
- cursor: pointer;
32196
- width: 56px;
32197
- height: 40px;
32198
- display: inline-flex;
32199
- align-items: center;
32200
- justify-content: center;
32201
- border-radius: 6px;
32202
- }
32203
- .E_a1b5xrg3.btn-item:hover {
32204
- box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32205
- }
32206
- .E_a1b5xrg3.btn-item:active {
32207
- transform: translateY(2px);
32208
- transition: all 320ms ease;
32209
- }
32210
-
32211
- .E_m196gn1d {
32212
- min-width: 1280px;
32233
+ font-family: Inter;
32234
+ font-style: normal;
32235
+ font-weight: normal;
32236
+ font-size: 10px;
32237
+ line-height: 12px;
32213
32238
  }
32214
32239
 
32215
32240
  .E_cnujxq2 {
@@ -32901,12 +32926,110 @@ input.E_rf8rlle.ant-input {
32901
32926
  color: rgba(44, 56, 82, 0.7490196078);
32902
32927
  }
32903
32928
 
32929
+ .E_m196gn1d {
32930
+ min-width: 1280px;
32931
+ }
32932
+
32933
+ .E_i5w779o {
32934
+ padding: 8px 0;
32935
+ }
32936
+ .E_i5w779o .col-label {
32937
+ flex-shrink: unset;
32938
+ }
32939
+ .E_i5w779o .col-label * {
32940
+ line-height: 18px;
32941
+ }
32942
+ .E_i5w779o .col-content {
32943
+ flex: 1 1 0;
32944
+ display: flex;
32945
+ align-items: center;
32946
+ }
32947
+ .E_i5w779o .col-content * {
32948
+ line-height: 18px;
32949
+ }
32950
+
32951
+ .E_l18dja44 {
32952
+ padding: 6px 0;
32953
+ }
32954
+ .E_l18dja44 .col-label * {
32955
+ font-size: 13px;
32956
+ line-height: 20px;
32957
+ }
32958
+ .E_l18dja44 .col-content * {
32959
+ font-size: 14px;
32960
+ line-height: 20px;
32961
+ }
32962
+
32963
+ .E_c8c2hys {
32964
+ display: flex;
32965
+ justify-content: space-between;
32966
+ flex: 1;
32967
+ min-width: 0;
32968
+ }
32969
+
32970
+ .E_n4m6c4d {
32971
+ color: rgba(0, 21, 64, 0.3);
32972
+ }
32973
+
32904
32974
  .E_h1ol2wl7 {
32905
32975
  font-weight: bold;
32906
32976
  background-color: unset;
32907
32977
  padding: unset;
32908
32978
  }
32909
32979
 
32980
+ .E_cyms3br {
32981
+ background: #fff;
32982
+ width: 100%;
32983
+ border-radius: 8px;
32984
+ border: 1px solid rgb(228, 233, 242);
32985
+ }
32986
+ .E_cyms3br .ant-list {
32987
+ padding: 12px;
32988
+ }
32989
+ .E_cyms3br .ant-list-item {
32990
+ padding: 4px 0;
32991
+ }
32992
+ .E_cyms3br .ant-alert {
32993
+ margin-left: 24px;
32994
+ }
32995
+ .E_cyms3br header {
32996
+ background: rgba(225, 230, 241, 0.6);
32997
+ font-size: 12px;
32998
+ color: rgb(29, 50, 108);
32999
+ font-weight: 700;
33000
+ padding: 6px 12px;
33001
+ display: flex;
33002
+ flex-direction: row;
33003
+ align-items: center;
33004
+ justify-content: space-between;
33005
+ }
33006
+ .E_cyms3br header .switch-text {
33007
+ display: flex;
33008
+ flex-direction: row;
33009
+ align-items: center;
33010
+ justify-content: space-between;
33011
+ gap: 6px;
33012
+ font-size: 12px;
33013
+ font-weight: 400;
33014
+ color: rgb(0, 18, 46);
33015
+ }
33016
+
33017
+ .E_c157gu4z .ant-list-item {
33018
+ display: flex;
33019
+ flex-direction: row;
33020
+ }
33021
+ .E_c157gu4z .description {
33022
+ flex-grow: 1;
33023
+ margin-left: 8px;
33024
+ }
33025
+
33026
+ .E_eu1sysj {
33027
+ display: flex;
33028
+ flex-direction: column;
33029
+ align-items: center;
33030
+ justify-content: center;
33031
+ }
33032
+
32910
33033
  .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
32911
33034
  border-radius: 6px;
32912
33035
  }
@@ -33145,6 +33268,21 @@ input.E_rf8rlle.ant-input {
33145
33268
  margin-right: 6px;
33146
33269
  }
33147
33270
 
33271
+ .E_w1dxz879 {
33272
+ display: flex;
33273
+ flex-direction: column;
33274
+ gap: 6px;
33275
+ }
33276
+ .E_w1dxz879 .ellipsis-tooltip {
33277
+ max-height: var(--w1dxz879-0);
33278
+ text-overflow: clip;
33279
+ overflow: hidden;
33280
+ }
33281
+ .E_w1dxz879 .tips {
33282
+ color: #fff;
33283
+ opacity: 0.8;
33284
+ }
33285
+
33148
33286
  .E_hrhfj7c {
33149
33287
  display: none;
33150
33288
  }
@@ -33364,21 +33502,6 @@ input.E_rf8rlle.ant-input {
33364
33502
  font-size: 14px;
33365
33503
  }
33366
33504
 
33367
- .E_w1dxz879 {
33368
- display: flex;
33369
- flex-direction: column;
33370
- gap: 6px;
33371
- }
33372
- .E_w1dxz879 .ellipsis-tooltip {
33373
- max-height: var(--w1dxz879-0);
33374
- text-overflow: clip;
33375
- overflow: hidden;
33376
- }
33377
- .E_w1dxz879 .tips {
33378
- color: #fff;
33379
- opacity: 0.8;
33380
- }
33381
-
33382
33505
  .E_h12yihis {
33383
33506
  height: 50px;
33384
33507
  border-bottom: 2px solid #edf0f7;
@@ -33599,6 +33722,50 @@ input.E_rf8rlle.ant-input {
33599
33722
  position: static;
33600
33723
  }
33601
33724
 
33725
+ .E_c14ouk5o {
33726
+ width: 100%;
33727
+ height: 100%;
33728
+ display: flex;
33729
+ font-size: 12px;
33730
+ line-height: 18px;
33731
+ padding: 8px 0;
33732
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
33733
+ }
33734
+ .E_c14ouk5o:last-of-type {
33735
+ box-shadow: none;
33736
+ padding-bottom: 0;
33737
+ }
33738
+ .E_c14ouk5o.collapsed {
33739
+ flex-direction: column;
33740
+ }
33741
+ .E_c14ouk5o.collapsed .collapsed-content {
33742
+ display: flex;
33743
+ }
33744
+ .E_c14ouk5o.collapsed .collapsed-content > span {
33745
+ flex: 1;
33746
+ display: flex;
33747
+ justify-content: space-between;
33748
+ }
33749
+ .E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
33750
+ height: auto;
33751
+ }
33752
+ .E_c14ouk5o.collapsed .extra-content {
33753
+ margin-left: 162px;
33754
+ }
33755
+ .E_c14ouk5o .col-label {
33756
+ width: 216px;
33757
+ color: rgba(44, 56, 82, 0.6);
33758
+ margin-right: 12px;
33759
+ flex-shrink: 0;
33760
+ }
33761
+ .E_c14ouk5o .col-content {
33762
+ color: #2d3a56;
33763
+ /* make btn link in info row have the same height as normal text */
33764
+ }
33765
+ .E_c14ouk5o .col-content .ant-btn-link {
33766
+ height: auto;
33767
+ }
33768
+
33602
33769
  .E_c1kchka8 {
33603
33770
  height: 100%;
33604
33771
  width: 100%;
@@ -33948,7 +34115,7 @@ input.E_rf8rlle.ant-input {
33948
34115
  gap: 8px;
33949
34116
  background: #fff;
33950
34117
  border-radius: 5px;
33951
- border: 1px solid #e4e9f2;
34118
+ border: 1px solid rgba(172, 186, 211, 0.6);
33952
34119
  transition: all 0.2s ease-in-out;
33953
34120
  }
33954
34121
  .E_dhqt3dw.date-range-picker .default-calendar-icon {
@@ -34076,6 +34243,30 @@ input.E_rf8rlle.ant-input {
34076
34243
  padding: 0;
34077
34244
  }
34078
34245
 
34246
+ .E_l12xdkhl {
34247
+ width: 64px;
34248
+ height: 64px;
34249
+ max-width: 64px;
34250
+ max-height: 64px;
34251
+ overflow: hidden;
34252
+ display: flex;
34253
+ align-items: center;
34254
+ justify-content: center;
34255
+ position: relative;
34256
+ opacity: 0.6;
34257
+ }
34258
+ .E_l12xdkhl .icon-wrapper {
34259
+ animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34260
+ }
34261
+ @keyframes rotate {
34262
+ from {
34263
+ transform: rotate(0deg);
34264
+ }
34265
+ to {
34266
+ transform: rotate(360deg);
34267
+ }
34268
+ }
34269
+
34079
34270
  .E_s11wux3h .antd5-segmented-item:not(:last-child) {
34080
34271
  margin-right: 2px;
34081
34272
  }
@@ -34110,31 +34301,9 @@ input.E_rf8rlle.ant-input {
34110
34301
  background-color: transparent;
34111
34302
  }
34112
34303
 
34113
- .E_l12xdkhl {
34114
- width: 64px;
34115
- height: 64px;
34116
- max-width: 64px;
34117
- max-height: 64px;
34118
- overflow: hidden;
34119
- display: flex;
34120
- align-items: center;
34121
- justify-content: center;
34122
- position: relative;
34123
- opacity: 0.6;
34124
- }
34125
- .E_l12xdkhl .icon-wrapper {
34126
- animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34127
- }
34128
- @keyframes rotate {
34129
- from {
34130
- transform: rotate(0deg);
34131
- }
34132
- to {
34133
- transform: rotate(360deg);
34134
- }
34135
- }
34136
-
34137
- button.E_l48ei06.ant-btn {
34304
+ button.E_l48ei06.ant-btn,
34305
+ button.E_l48ei06.ant-btn.ant-btn-sm,
34306
+ button.E_l48ei06.ant-btn.ant-btn-lg {
34138
34307
  font-size: 12px;
34139
34308
  line-height: 18px;
34140
34309
  height: 18px;
@@ -34693,59 +34862,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34693
34862
  margin-left: 24px;
34694
34863
  }
34695
34864
 
34696
- .E_lht19u8 {
34697
- width: 64px;
34698
- height: 64px;
34699
- display: flex;
34700
- align-items: center;
34701
- justify-content: center;
34702
- position: relative;
34703
- opacity: 0.2;
34704
- }
34705
-
34706
- .E_lk3gkp4 {
34707
- position: absolute;
34708
- width: 5px;
34709
- height: 48px;
34710
- left: 9.33px;
34711
- top: 40.5px;
34712
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34713
- border-radius: 5px;
34714
- transform: rotate(-128deg);
34715
- transform-origin: top left;
34716
- animation: loading-indicator1 1100ms ease-out infinite;
34717
- }
34718
-
34719
- .E_ll4n94n {
34720
- position: absolute;
34721
- width: 5px;
34722
- height: 48px;
34723
- left: 40.8px;
34724
- top: 8.4px;
34725
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34726
- border-radius: 5px;
34727
- transform: rotate(-8deg);
34728
- transform-origin: top left;
34729
- animation: loading-indicator2 1100ms ease-out infinite;
34730
- }
34731
-
34732
- .E_l17lbdo6 {
34733
- position: absolute;
34734
- width: 5px;
34735
- height: 48px;
34736
- left: 52.9px;
34737
- top: 51.8px;
34738
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34739
- border-radius: 5px;
34740
- transform: rotate(112deg);
34741
- transform-origin: top left;
34742
- animation: loading-indicator3 1100ms ease-out infinite;
34743
- }
34744
-
34745
- .E_c1yd35n {
34746
- padding: 0 12px 14px 12px;
34747
- }
34748
-
34749
34865
  .E_c1kghdax {
34750
34866
  color: #2d3a56;
34751
34867
  padding: 7px 12px;
@@ -34781,18 +34897,62 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34781
34897
  color: #2d3a56;
34782
34898
  font-weight: 700;
34783
34899
  }
34784
- .E_c1kghdax .collapse-arrow {
34785
- transition: all 50ms ease-out 0ms;
34786
- margin-right: 2px;
34900
+ .E_c1kghdax .collapse-arrow {
34901
+ transition: all 50ms ease-out 0ms;
34902
+ margin-right: 2px;
34903
+ }
34904
+
34905
+ .E_c1yd35n {
34906
+ padding: 0 12px 14px 12px;
34907
+ }
34908
+
34909
+ .E_lht19u8 {
34910
+ width: 64px;
34911
+ height: 64px;
34912
+ display: flex;
34913
+ align-items: center;
34914
+ justify-content: center;
34915
+ position: relative;
34916
+ opacity: 0.2;
34917
+ }
34918
+
34919
+ .E_lk3gkp4 {
34920
+ position: absolute;
34921
+ width: 5px;
34922
+ height: 48px;
34923
+ left: 9.33px;
34924
+ top: 40.5px;
34925
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34926
+ border-radius: 5px;
34927
+ transform: rotate(-128deg);
34928
+ transform-origin: top left;
34929
+ animation: loading-indicator1 1100ms ease-out infinite;
34787
34930
  }
34788
34931
 
34789
- .E_w7ob4th.outside-tag {
34790
- padding-left: 0;
34932
+ .E_ll4n94n {
34933
+ position: absolute;
34934
+ width: 5px;
34935
+ height: 48px;
34936
+ left: 40.8px;
34937
+ top: 8.4px;
34938
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34939
+ border-radius: 5px;
34940
+ transform: rotate(-8deg);
34941
+ transform-origin: top left;
34942
+ animation: loading-indicator2 1100ms ease-out infinite;
34791
34943
  }
34792
- .E_w7ob4th.outside-tag .inside-tag {
34793
- border-radius: 4px 0 0 4px;
34794
- padding-right: 4px;
34795
- margin-right: 4px;
34944
+
34945
+ .E_l17lbdo6 {
34946
+ position: absolute;
34947
+ width: 5px;
34948
+ height: 48px;
34949
+ left: 52.9px;
34950
+ top: 51.8px;
34951
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
34952
+ border-radius: 5px;
34953
+ transform: rotate(112deg);
34954
+ transform-origin: top left;
34955
+ animation: loading-indicator3 1100ms ease-out infinite;
34796
34956
  }
34797
34957
 
34798
34958
  .E_b14q2gmw {
@@ -34812,6 +34972,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34812
34972
  transform: translateY(-4px);
34813
34973
  }
34814
34974
 
34975
+ .E_w7ob4th.outside-tag {
34976
+ padding-left: 0;
34977
+ }
34978
+ .E_w7ob4th.outside-tag .inside-tag {
34979
+ border-radius: 4px 0 0 4px;
34980
+ padding-right: 4px;
34981
+ margin-right: 4px;
34982
+ }
34983
+
34815
34984
  .E_slr2ynn {
34816
34985
  padding: 0 8px;
34817
34986
  height: 18px;
@@ -34841,21 +35010,200 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34841
35010
  white-space: normal;
34842
35011
  }
34843
35012
 
34844
- .E_r77hffu {
35013
+ .E_t1dtlqs1 {
35014
+ margin-bottom: 4px;
35015
+ color: rgba(44, 56, 82, 0.6);
35016
+ }
35017
+
35018
+ .E_s1ese5oy {
35019
+ color: rgba(44, 56, 82, 0.6);
35020
+ line-height: 32px;
35021
+ height: 32px;
35022
+ margin-bottom: 0;
35023
+ }
35024
+ .E_s1ese5oy.primary, .E_s1ese5oy.info {
35025
+ color: #0080ff;
35026
+ }
35027
+ .E_s1ese5oy.warning {
35028
+ color: #ffa500;
35029
+ }
35030
+ .E_s1ese5oy.success {
35031
+ color: #00ba5d;
35032
+ }
35033
+ .E_s1ese5oy.danger, .E_s1ese5oy.error {
35034
+ color: #f0483e;
35035
+ }
35036
+ .E_s1ese5oy.normal {
35037
+ color: rgba(44, 56, 82, 0.6);
35038
+ }
35039
+
35040
+ .E_b1ibis43 {
35041
+ margin-bottom: 0;
35042
+ color: #00122e;
35043
+ }
35044
+
35045
+ .E_b11xxjd2 {
35046
+ line-height: 32px;
35047
+ margin-right: 6px;
35048
+ }
35049
+
35050
+ .E_bsub5bw.with-description {
35051
+ height: 24px;
35052
+ flex: 1;
35053
+ position: relative;
35054
+ top: -7px;
35055
+ }
35056
+ .E_bsub5bw p {
35057
+ width: 100%;
35058
+ overflow: hidden;
35059
+ text-overflow: ellipsis;
35060
+ white-space: nowrap;
35061
+ }
35062
+
35063
+ .E_tmoyoag {
35064
+ border: 1px solid rgba(211, 218, 235, 0.6);
35065
+ border-radius: 8px;
35066
+ overflow: auto;
35067
+ }
35068
+ .E_tmoyoag .ant-list {
35069
+ position: relative;
35070
+ }
35071
+ .E_tmoyoag .ant-list .ant-list-item:last-child {
35072
+ border-bottom: none;
35073
+ }
35074
+ .E_tmoyoag .ant-list .eagle-table-form-header {
35075
+ position: sticky;
35076
+ top: 0;
35077
+ z-index: 2;
34845
35078
  display: flex;
34846
- align-items: center;
34847
- justify-content: space-between;
34848
- column-gap: 6px;
35079
+ padding: 8px;
35080
+ flex-wrap: nowrap;
35081
+ justify-content: flex-start;
35082
+ background: #f2f5fa;
35083
+ font-size: 14px;
35084
+ color: rgba(44, 56, 82, 0.6);
35085
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35086
+ }
35087
+ .E_tmoyoag .ant-list .eagle-table-form-header {
35088
+ align-items: inherit;
35089
+ }
35090
+ .E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
35091
+ margin-bottom: 0;
35092
+ }
35093
+ .E_tmoyoag .ant-list .eagle-table-form-row {
35094
+ display: flex;
35095
+ justify-content: flex-start;
35096
+ align-items: flex-start;
35097
+ flex-wrap: wrap;
35098
+ padding: 8px;
35099
+ border: none;
35100
+ }
35101
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
35102
+ flex-basis: 100%;
35103
+ margin: 12px 0 0;
35104
+ order: 99;
35105
+ color: rgba(44, 56, 82, 0.6);
35106
+ }
35107
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
35108
+ color: #f0483e;
35109
+ flex-basis: 100%;
35110
+ order: 98;
35111
+ margin: 12px 0 0;
35112
+ }
35113
+ .E_tmoyoag .ant-list .eagle-table-form-row:hover {
35114
+ background-color: rgba(237, 241, 250, 0.6);
35115
+ }
35116
+ .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35117
+ background-color: rgba(0, 136, 255, 0.1);
35118
+ }
35119
+ .E_tmoyoag .ant-list .eagle-table-form-cell {
35120
+ flex: 1 0 0;
35121
+ overflow: hidden;
35122
+ }
35123
+ .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35124
+ color: rgba(44, 56, 82, 0.6);
35125
+ margin: 0;
35126
+ }
35127
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35128
+ text-align: center;
35129
+ }
35130
+ .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 > * {
35131
+ text-align: center;
35132
+ }
35133
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
35134
+ text-align: left;
35135
+ }
35136
+ .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 > * {
35137
+ text-align: left;
35138
+ }
35139
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
35140
+ text-align: right;
35141
+ }
35142
+ .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 > * {
35143
+ text-align: right;
35144
+ }
35145
+ .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
35146
+ margin-right: 8px;
35147
+ }
35148
+ .E_tmoyoag .ant-list .ant-list-item-action {
35149
+ padding: 4px;
35150
+ width: 24px;
35151
+ height: 24px;
35152
+ overflow: hidden;
35153
+ }
35154
+ .E_tmoyoag .ant-list .ant-list-item-action li {
35155
+ padding: 0;
35156
+ }
35157
+ .E_tmoyoag .ant-list .delete-row-icon.disabled {
35158
+ cursor: not-allowed;
35159
+ opacity: 0.5;
35160
+ }
35161
+ .E_tmoyoag .ant-list.size-default .ant-list-item-action {
35162
+ margin: 0;
35163
+ }
35164
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
35165
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
35166
+ border-radius: 5px;
35167
+ font-size: 12px;
35168
+ }
35169
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
35170
+ font-size: inherit;
35171
+ }
35172
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
35173
+ min-height: 24px;
35174
+ font-size: 12px;
35175
+ position: relative;
35176
+ }
35177
+ .E_tmoyoag.row-split-by-border .eagle-table-form-row {
35178
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35179
+ }
35180
+ .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
35181
+ background-color: rgba(237, 241, 250, 0.6);
34849
35182
  }
34850
35183
 
34851
- .E_p1cmxsf7 {
35184
+ .E_a138syjm {
34852
35185
  display: flex;
34853
- flex-direction: column;
34854
- justify-content: center;
34855
- row-gap: var(--p1cmxsf7-0);
35186
+ align-items: center;
35187
+ margin-top: 8px;
34856
35188
  }
34857
- .E_p1cmxsf7 .antd5-progress-line {
34858
- font-size: 0;
35189
+ .E_a138syjm button.ant-btn {
35190
+ padding: 2px 8px;
35191
+ height: 24px;
35192
+ }
35193
+ .E_a138syjm > span.maximum-desc {
35194
+ display: none;
35195
+ margin-left: 8px;
35196
+ color: rgba(44, 56, 82, 0.6);
35197
+ }
35198
+ .E_a138syjm > span.maximum-desc.disabled {
35199
+ display: inline;
35200
+ }
35201
+
35202
+ .E_d77i8u0 {
35203
+ width: 24px;
35204
+ height: 24px;
35205
+ padding: 4px;
35206
+ margin-right: 8px;
34859
35207
  }
34860
35208
 
34861
35209
  .E_sjob3jg {
@@ -35053,200 +35401,23 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35053
35401
  justify-content: center;
35054
35402
  }
35055
35403
 
35056
- .E_t1dtlqs1 {
35057
- margin-bottom: 4px;
35058
- color: rgba(44, 56, 82, 0.6);
35059
- }
35060
-
35061
- .E_s1ese5oy {
35062
- color: rgba(44, 56, 82, 0.6);
35063
- line-height: 32px;
35064
- height: 32px;
35065
- margin-bottom: 0;
35066
- }
35067
- .E_s1ese5oy.primary, .E_s1ese5oy.info {
35068
- color: #0080ff;
35069
- }
35070
- .E_s1ese5oy.warning {
35071
- color: #ffa500;
35072
- }
35073
- .E_s1ese5oy.success {
35074
- color: #00ba5d;
35075
- }
35076
- .E_s1ese5oy.danger, .E_s1ese5oy.error {
35077
- color: #f0483e;
35078
- }
35079
- .E_s1ese5oy.normal {
35080
- color: rgba(44, 56, 82, 0.6);
35081
- }
35082
-
35083
- .E_b1ibis43 {
35084
- margin-bottom: 0;
35085
- color: #00122e;
35086
- }
35087
-
35088
- .E_b11xxjd2 {
35089
- line-height: 32px;
35090
- margin-right: 6px;
35091
- }
35092
-
35093
- .E_bsub5bw.with-description {
35094
- height: 24px;
35095
- flex: 1;
35096
- position: relative;
35097
- top: -7px;
35098
- }
35099
- .E_bsub5bw p {
35100
- width: 100%;
35101
- overflow: hidden;
35102
- text-overflow: ellipsis;
35103
- white-space: nowrap;
35104
- }
35105
-
35106
- .E_tmoyoag {
35107
- border: 1px solid rgba(211, 218, 235, 0.6);
35108
- border-radius: 8px;
35109
- overflow: auto;
35110
- }
35111
- .E_tmoyoag .ant-list {
35112
- position: relative;
35113
- }
35114
- .E_tmoyoag .ant-list .ant-list-item:last-child {
35115
- border-bottom: none;
35116
- }
35117
- .E_tmoyoag .ant-list .eagle-table-form-header {
35118
- position: sticky;
35119
- top: 0;
35120
- z-index: 2;
35121
- display: flex;
35122
- padding: 8px;
35123
- flex-wrap: nowrap;
35124
- justify-content: flex-start;
35125
- background: #f2f5fa;
35126
- font-size: 14px;
35127
- color: rgba(44, 56, 82, 0.6);
35128
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35129
- }
35130
- .E_tmoyoag .ant-list .eagle-table-form-header {
35131
- align-items: inherit;
35132
- }
35133
- .E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
35134
- margin-bottom: 0;
35135
- }
35136
- .E_tmoyoag .ant-list .eagle-table-form-row {
35404
+ .E_r77hffu {
35137
35405
  display: flex;
35138
- justify-content: flex-start;
35139
- align-items: flex-start;
35140
- flex-wrap: wrap;
35141
- padding: 8px;
35142
- border: none;
35143
- }
35144
- .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
35145
- flex-basis: 100%;
35146
- margin: 12px 0 0;
35147
- order: 99;
35148
- color: rgba(44, 56, 82, 0.6);
35149
- }
35150
- .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
35151
- color: #f0483e;
35152
- flex-basis: 100%;
35153
- order: 98;
35154
- margin: 12px 0 0;
35155
- }
35156
- .E_tmoyoag .ant-list .eagle-table-form-row:hover {
35157
- background-color: rgba(237, 241, 250, 0.6);
35158
- }
35159
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35160
- background-color: rgba(0, 136, 255, 0.1);
35161
- }
35162
- .E_tmoyoag .ant-list .eagle-table-form-cell {
35163
- flex: 1 0 0;
35164
- overflow: hidden;
35165
- }
35166
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35167
- color: rgba(44, 56, 82, 0.6);
35168
- margin: 0;
35169
- }
35170
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35171
- text-align: center;
35172
- }
35173
- .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 > * {
35174
- text-align: center;
35175
- }
35176
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
35177
- text-align: left;
35178
- }
35179
- .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 > * {
35180
- text-align: left;
35181
- }
35182
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
35183
- text-align: right;
35184
- }
35185
- .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 > * {
35186
- text-align: right;
35187
- }
35188
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
35189
- margin-right: 8px;
35190
- }
35191
- .E_tmoyoag .ant-list .ant-list-item-action {
35192
- padding: 4px;
35193
- width: 24px;
35194
- height: 24px;
35195
- overflow: hidden;
35196
- }
35197
- .E_tmoyoag .ant-list .ant-list-item-action li {
35198
- padding: 0;
35199
- }
35200
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
35201
- cursor: not-allowed;
35202
- opacity: 0.5;
35203
- }
35204
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
35205
- margin: 0;
35206
- }
35207
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
35208
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
35209
- border-radius: 5px;
35210
- font-size: 12px;
35211
- }
35212
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
35213
- font-size: inherit;
35214
- }
35215
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
35216
- min-height: 24px;
35217
- font-size: 12px;
35218
- position: relative;
35219
- }
35220
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
35221
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35222
- }
35223
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
35224
- background-color: rgba(237, 241, 250, 0.6);
35406
+ align-items: center;
35407
+ justify-content: space-between;
35408
+ column-gap: 6px;
35225
35409
  }
35226
35410
 
35227
- .E_a138syjm {
35411
+ .E_p1cmxsf7 {
35228
35412
  display: flex;
35229
- align-items: center;
35230
- margin-top: 8px;
35231
- }
35232
- .E_a138syjm button.ant-btn {
35233
- padding: 2px 8px;
35234
- height: 24px;
35235
- }
35236
- .E_a138syjm > span.maximum-desc {
35237
- display: none;
35238
- margin-left: 8px;
35239
- color: rgba(44, 56, 82, 0.6);
35240
- }
35241
- .E_a138syjm > span.maximum-desc.disabled {
35242
- display: inline;
35413
+ flex-direction: column;
35414
+ justify-content: center;
35415
+ row-gap: var(--p1cmxsf7-0);
35243
35416
  }
35244
-
35245
- .E_d77i8u0 {
35246
- width: 24px;
35247
- height: 24px;
35248
- padding: 4px;
35249
- margin-right: 8px;
35417
+ .E_p1cmxsf7 .antd5-progress-line {
35418
+ font-size: 0;
35419
+ margin-bottom: unset;
35420
+ margin-inline-end: unset;
35250
35421
  }
35251
35422
 
35252
35423
  .E_t13ef470 {
@@ -35467,6 +35638,54 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35467
35638
  margin-left: 8px;
35468
35639
  }
35469
35640
 
35641
+ .E_t59qhqp {
35642
+ background: #FFFFFF;
35643
+ padding: 24px 32px;
35644
+ border-radius: 8px;
35645
+ }
35646
+ .E_t59qhqp .ant-timeline-item {
35647
+ margin-bottom: 16px;
35648
+ padding-bottom: 0px;
35649
+ }
35650
+ .E_t59qhqp .ant-timeline-item-last,
35651
+ .E_t59qhqp .compact.ant-timeline-item-last {
35652
+ margin-bottom: 0;
35653
+ }
35654
+ .E_t59qhqp .compact.ant-timeline-item {
35655
+ margin-bottom: 12px;
35656
+ }
35657
+ .E_t59qhqp .info-action {
35658
+ align-self: baseline;
35659
+ }
35660
+
35661
+ .E_t2e44lg .ant-timeline-item-content {
35662
+ margin-left: 18px;
35663
+ }
35664
+ .E_t2e44lg .item-time {
35665
+ display: flex;
35666
+ flex-direction: column;
35667
+ gap: 4px;
35668
+ margin-top: 4px;
35669
+ }
35670
+ .E_t2e44lg:last-child .ant-timeline-item-content {
35671
+ padding-bottom: 0;
35672
+ }
35673
+
35674
+ .E_e14ua30y {
35675
+ display: flex;
35676
+ flex-direction: column;
35677
+ align-items: center;
35678
+ justify-content: center;
35679
+ }
35680
+
35681
+ .E_s1ikqzph {
35682
+ color: rgba(44, 56, 82, 0.7490196078);
35683
+ }
35684
+
35685
+ .E_i15astnl {
35686
+ color: #00122E;
35687
+ }
35688
+
35470
35689
  .E_s20iney.skeleton-box {
35471
35690
  display: flex;
35472
35691
  align-items: center;
@@ -35544,18 +35763,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35544
35763
  display: block;
35545
35764
  }
35546
35765
 
35547
- .E_i14c7jc8 {
35548
- color: var(--i14c7jc8-0);
35549
- }
35550
-
35551
- .E_i1ibuolf {
35552
- display: flex;
35553
- align-items: center;
35554
- column-gap: 4px;
35555
- font-size: 12px;
35556
- color: rgba(44, 56, 82, 0.7490196078);
35557
- }
35558
-
35559
35766
  .E_d1u4ndxc {
35560
35767
  color: rgba(44, 56, 82, 0.7490196078);
35561
35768
  font-size: 12px;
@@ -35585,4 +35792,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35585
35792
  to {
35586
35793
  transform: translateX(100%);
35587
35794
  }
35795
+ }
35796
+
35797
+ .E_i14c7jc8 {
35798
+ color: var(--i14c7jc8-0);
35799
+ }
35800
+
35801
+ .E_i1ibuolf {
35802
+ display: flex;
35803
+ align-items: center;
35804
+ column-gap: 4px;
35805
+ font-size: 12px;
35806
+ color: rgba(44, 56, 82, 0.7490196078);
35588
35807
  }