@cloudtower/eagle 0.27.65 → 0.27.69

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 (47) hide show
  1. package/dist/cjs/core/DeprecatedProgress/index.js +29 -0
  2. package/dist/cjs/core/Progress/components.js +111 -0
  3. package/dist/cjs/core/Progress/index.js +125 -13
  4. package/dist/cjs/core/Progress/progress.const.js +12 -0
  5. package/dist/cjs/core/Progress/progress.style.js +11 -0
  6. package/dist/cjs/core/Progress/progress.widgets.js +135 -0
  7. package/dist/cjs/core/antd.js +2 -2
  8. package/dist/cjs/index.js +26 -19
  9. package/dist/cjs/stats1.html +1 -1
  10. package/dist/cjs/styles/token/animation.js +7 -0
  11. package/dist/cjs/styles/token/color.js +3 -0
  12. package/dist/cjs/utils/isStringArr.js +7 -0
  13. package/dist/components.css +1903 -1805
  14. package/dist/esm/core/DeprecatedProgress/index.js +23 -0
  15. package/dist/esm/core/Progress/components.js +102 -0
  16. package/dist/esm/core/Progress/index.js +125 -13
  17. package/dist/esm/core/Progress/progress.const.js +10 -0
  18. package/dist/esm/core/Progress/progress.style.js +6 -0
  19. package/dist/esm/core/Progress/progress.widgets.js +128 -0
  20. package/dist/esm/core/antd.js +2 -2
  21. package/dist/esm/index.js +3 -0
  22. package/dist/esm/stats1.html +1 -1
  23. package/dist/esm/styles/token/animation.js +5 -0
  24. package/dist/esm/styles/token/color.js +3 -0
  25. package/dist/esm/utils/isStringArr.js +5 -0
  26. package/dist/src/core/DeprecatedProgress/index.d.ts +4 -0
  27. package/dist/src/core/Progress/components.d.ts +10 -0
  28. package/dist/src/core/Progress/index.d.ts +3 -3
  29. package/dist/src/core/Progress/progress.const.d.ts +6 -0
  30. package/dist/src/core/Progress/progress.style.d.ts +4 -0
  31. package/dist/src/core/Progress/progress.type.d.ts +84 -0
  32. package/dist/src/core/Progress/progress.widgets.d.ts +4 -0
  33. package/dist/src/index.d.ts +3 -0
  34. package/dist/src/spec/base.d.ts +9 -9
  35. package/dist/src/spec/type.d.ts +9 -0
  36. package/dist/src/styles/token/animation.d.ts +3 -0
  37. package/dist/src/styles/token/color.d.ts +3 -0
  38. package/dist/src/styles/token/index.d.ts +1 -0
  39. package/dist/src/utils/index.d.ts +1 -0
  40. package/dist/src/utils/isStringArr.d.ts +1 -0
  41. package/dist/stories/docs/core/InputInteger.stories.d.ts +28 -0
  42. package/dist/stories/docs/core/Progress/Progress.stories.d.ts +24 -0
  43. package/dist/stories/docs/core/Progress/Progress.widgets.stories.d.ts +24 -0
  44. package/dist/stories/docs/core/Progress/RichProgress.stories.d.ts +37 -0
  45. package/dist/stories/docs/core/Progress/SimpleProgress.stories.d.ts +15 -0
  46. package/dist/style.css +1884 -1793
  47. package/package.json +5 -5
package/dist/style.css CHANGED
@@ -29558,17 +29558,21 @@ html body {
29558
29558
  font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
29559
29559
  }
29560
29560
  }
29561
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
29562
- padding: 4px 8px 0 8px;
29563
- color: rgba(44, 56, 82, 0.6);
29564
- font-size: 12px;
29561
+ .E_r77hffu {
29562
+ display: flex;
29563
+ align-items: center;
29564
+ justify-content: space-between;
29565
+ column-gap: 6px;
29565
29566
  }
29566
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
29567
- padding-bottom: 6px;
29567
+
29568
+ .E_p1cmxsf7 {
29569
+ display: flex;
29570
+ flex-direction: column;
29571
+ justify-content: center;
29572
+ row-gap: var(--p1cmxsf7-0);
29568
29573
  }
29569
- .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
29570
- padding-top: 4px;
29571
- border-top: 1px solid rgba(211, 218, 235, 0.6);
29574
+ .E_p1cmxsf7 .ant-progress-line {
29575
+ font-size: 0;
29572
29576
  }
29573
29577
 
29574
29578
  .E_drhfj7c .bottom {
@@ -29779,6 +29783,41 @@ html body {
29779
29783
  font-size: 14px;
29780
29784
  }
29781
29785
 
29786
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
29787
+ padding: 4px 8px 0 8px;
29788
+ color: rgba(44, 56, 82, 0.6);
29789
+ font-size: 12px;
29790
+ }
29791
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
29792
+ padding-bottom: 6px;
29793
+ }
29794
+ .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
29795
+ padding-top: 4px;
29796
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
29797
+ }
29798
+
29799
+ .E_t1gvlxt5 {
29800
+ min-width: 0;
29801
+ flex: 1;
29802
+ }
29803
+ .E_t1gvlxt5 .tag {
29804
+ flex: 0 0 auto;
29805
+ }
29806
+ .E_t1gvlxt5 .progress-title {
29807
+ flex: 2;
29808
+ max-width: fit-content;
29809
+ }
29810
+ .E_t1gvlxt5 .progress-desc {
29811
+ flex: 1;
29812
+ max-width: fit-content;
29813
+ }
29814
+
29815
+ .E_a1ji6r68 {
29816
+ display: flex;
29817
+ align-items: center;
29818
+ column-gap: var(--a1ji6r68-0);
29819
+ }
29820
+
29782
29821
  .E_i1inqkme {
29783
29822
  height: 18px;
29784
29823
  line-height: 18px;
@@ -29821,6 +29860,39 @@ html body {
29821
29860
  border-radius: unset;
29822
29861
  }
29823
29862
 
29863
+ .E_fzh9mnb {
29864
+ width: 100%;
29865
+ height: 100%;
29866
+ min-height: 124px;
29867
+ display: flex;
29868
+ flex-direction: column;
29869
+ justify-content: center;
29870
+ align-items: center;
29871
+ }
29872
+ .E_fzh9mnb .error-text {
29873
+ color: rgba(10, 37, 85, 0.6);
29874
+ margin-bottom: 16px;
29875
+ font-size: 18px;
29876
+ }
29877
+
29878
+ .E_iouxfgt {
29879
+ display: inline-flex;
29880
+ align-items: center;
29881
+ }
29882
+ .E_iouxfgt .icon-inner {
29883
+ display: inline-flex;
29884
+ align-items: center;
29885
+ justify-content: center;
29886
+ }
29887
+ .E_iouxfgt .icon-inner + span,
29888
+ .E_iouxfgt span + .icon-inner.suffix {
29889
+ margin-left: 4px;
29890
+ }
29891
+ .E_iouxfgt.is-rotate img,
29892
+ .E_iouxfgt.is-rotate svg {
29893
+ animation: rotate 680ms linear infinite;
29894
+ }
29895
+
29824
29896
  .E_b1wx3t3t.ant-btn-icon-only {
29825
29897
  justify-content: center;
29826
29898
  }
@@ -30071,39 +30143,6 @@ html body {
30071
30143
  padding: 0;
30072
30144
  }
30073
30145
 
30074
- .E_iouxfgt {
30075
- display: inline-flex;
30076
- align-items: center;
30077
- }
30078
- .E_iouxfgt .icon-inner {
30079
- display: inline-flex;
30080
- align-items: center;
30081
- justify-content: center;
30082
- }
30083
- .E_iouxfgt .icon-inner + span,
30084
- .E_iouxfgt span + .icon-inner.suffix {
30085
- margin-left: 4px;
30086
- }
30087
- .E_iouxfgt.is-rotate img,
30088
- .E_iouxfgt.is-rotate svg {
30089
- animation: rotate 680ms linear infinite;
30090
- }
30091
-
30092
- .E_fzh9mnb {
30093
- width: 100%;
30094
- height: 100%;
30095
- min-height: 124px;
30096
- display: flex;
30097
- flex-direction: column;
30098
- justify-content: center;
30099
- align-items: center;
30100
- }
30101
- .E_fzh9mnb .error-text {
30102
- color: rgba(10, 37, 85, 0.6);
30103
- margin-bottom: 16px;
30104
- font-size: 18px;
30105
- }
30106
-
30107
30146
  .E_t1m2x205 .ant-tooltip-arrow {
30108
30147
  display: none;
30109
30148
  }
@@ -30112,471 +30151,191 @@ html body {
30112
30151
  border-radius: 4px;
30113
30152
  }
30114
30153
 
30115
- .E_phljevk {
30116
- display: flex;
30117
- justify-content: space-between;
30118
- align-items: center;
30119
- padding: 10px 0;
30120
- color: rgba(44, 56, 82, 0.6);
30121
- font-size: 12px;
30122
- line-height: 24px;
30154
+ .E_dsnbhzf {
30155
+ font-family: Inter;
30156
+ font-style: normal;
30157
+ font-weight: bold;
30158
+ font-size: 32px;
30159
+ line-height: 40px;
30123
30160
  }
30124
- .E_phljevk .pagination-left {
30125
- padding: 2px 8px;
30161
+
30162
+ .E_d1mvo22k {
30163
+ font-family: Inter;
30164
+ font-style: normal;
30165
+ font-weight: bold;
30166
+ font-size: 24px;
30167
+ line-height: 32px;
30126
30168
  }
30127
- .E_phljevk .dropdown-trigger {
30128
- display: flex;
30129
- align-items: center;
30130
- border-radius: 6px;
30131
- cursor: pointer;
30132
- transition: all 0.3s ease;
30169
+
30170
+ .E_d1b444tr {
30171
+ font-family: Inter;
30172
+ font-style: normal;
30173
+ font-weight: normal;
30174
+ font-size: 32px;
30175
+ line-height: 40px;
30133
30176
  }
30134
- .E_phljevk .dropdown-trigger:hover {
30135
- background: rgba(211, 218, 235, 0.6);
30136
- color: #0080ff;
30177
+
30178
+ .E_dvs0kue {
30179
+ font-family: Inter;
30180
+ font-style: normal;
30181
+ font-weight: bold;
30182
+ font-size: 20px;
30183
+ line-height: 24px;
30137
30184
  }
30138
- .E_phljevk .dropdown-trigger .icon-inner {
30139
- margin-left: 4px;
30185
+
30186
+ .E_d1hcbfcq {
30187
+ font-family: Inter;
30188
+ font-style: normal;
30189
+ font-weight: normal;
30190
+ font-size: 20px;
30191
+ line-height: 24px;
30140
30192
  }
30141
- .E_phljevk .pagination-right {
30142
- display: flex;
30143
- align-items: center;
30144
- color: #0080ff;
30193
+
30194
+ .E_d1cz922v {
30195
+ font-family: Inter;
30196
+ font-style: normal;
30145
30197
  font-weight: bold;
30198
+ font-size: 18px;
30199
+ line-height: 22px;
30146
30200
  }
30147
- .E_phljevk .pagination-right .icon-inner {
30148
- margin-left: 4px;
30201
+
30202
+ .E_d3nzbrm {
30203
+ font-family: Inter;
30204
+ font-style: normal;
30205
+ font-weight: normal;
30206
+ font-size: 18px;
30207
+ line-height: 22px;
30149
30208
  }
30150
- .E_phljevk .pagination-right .prev-btn,
30151
- .E_phljevk .pagination-right .next-btn {
30152
- padding: 0 8px;
30209
+
30210
+ .E_h1g0p5ob {
30211
+ font-family: Inter;
30212
+ font-style: normal;
30213
+ font-weight: bold;
30214
+ font-size: 16px;
30215
+ line-height: 22px;
30153
30216
  }
30154
- .E_phljevk .pagination-right .prev-btn > span,
30155
- .E_phljevk .pagination-right .next-btn > span {
30156
- color: #0080ff;
30217
+
30218
+ .E_hydo2ej {
30219
+ font-family: Inter;
30220
+ font-style: normal;
30221
+ font-weight: normal;
30222
+ font-size: 16px;
30223
+ line-height: 22px;
30157
30224
  }
30158
- .E_phljevk .pagination-right .next-btn .icon-inner {
30159
- transform: rotate(180deg);
30225
+
30226
+ .E_h1hbuq0r {
30227
+ font-family: Inter;
30228
+ font-style: normal;
30229
+ font-weight: bold;
30230
+ font-size: 14px;
30231
+ line-height: 20px;
30160
30232
  }
30161
30233
 
30162
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30163
- max-height: calc(100vh - 128px);
30164
- overflow-y: auto;
30234
+ .E_h13bondg {
30235
+ font-family: Inter;
30236
+ font-style: normal;
30237
+ font-weight: normal;
30238
+ font-size: 14px;
30239
+ line-height: 20px;
30165
30240
  }
30166
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30167
- padding: 4px 20px;
30241
+
30242
+ .E_h1mhvdlx {
30243
+ font-family: Inter;
30244
+ font-style: normal;
30245
+ font-weight: bold;
30168
30246
  font-size: 12px;
30169
30247
  line-height: 18px;
30170
30248
  }
30171
30249
 
30172
- .E_skwah65 {
30173
- height: 8px;
30174
- box-sizing: border-box;
30175
- border-radius: 2px;
30176
- background: #f5f7fa;
30177
- display: flex;
30178
- width: 100%;
30179
- overflow: hidden;
30180
- }
30181
- .E_skwah65 .stack-bar-item + .stack-bar-item {
30182
- margin-left: 1px;
30250
+ .E_h1inmfq6 {
30251
+ font-family: Inter;
30252
+ font-style: normal;
30253
+ font-weight: normal;
30254
+ font-size: 12px;
30255
+ line-height: 18px;
30183
30256
  }
30184
30257
 
30185
- .E_owd0kml {
30186
- display: inline-block;
30258
+ .E_h1kfc0la {
30259
+ font-family: Inter;
30260
+ font-style: normal;
30261
+ font-weight: bold;
30262
+ text-transform: uppercase;
30263
+ font-feature-settings: "cpsp" on;
30264
+ font-size: 12px;
30265
+ line-height: 18px;
30187
30266
  }
30188
30267
 
30189
- .E_h1jsgezc {
30190
- visibility: hidden;
30191
- position: absolute;
30192
- }
30193
-
30194
- .E_s1dizucg.ant-switch {
30195
- min-width: 40px;
30196
- height: 24px;
30197
- background: rgba(172, 186, 211, 0.6);
30198
- overflow: hidden;
30199
- }
30200
- .E_s1dizucg.ant-switch:focus {
30201
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30202
- }
30203
- .E_s1dizucg.ant-switch-small {
30204
- min-width: 26px;
30205
- height: 16px;
30206
- }
30207
- .E_s1dizucg.ant-switch-large {
30208
- min-width: 52px;
30209
- height: 32px;
30210
- }
30211
- .E_s1dizucg.ant-switch .ant-switch-handle {
30212
- height: 20px;
30213
- width: 20px;
30214
- }
30215
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
30216
- border-radius: 10px;
30217
- transition-delay: 120ms;
30218
- }
30219
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
30220
- height: 14px;
30221
- width: 14px;
30222
- top: 1px;
30223
- left: 1px;
30224
- }
30225
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
30226
- height: 28px;
30227
- width: 28px;
30228
- }
30229
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30230
- border-radius: 14px;
30231
- }
30232
- .E_s1dizucg.ant-switch-checked {
30233
- background-color: #00ba5d;
30234
- }
30235
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30236
- left: calc(100% - 20px - 2px);
30237
- }
30238
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30239
- left: calc(100% - 14px - 1px);
30240
- }
30241
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30242
- left: calc(100% - 28px - 2px);
30243
- }
30244
-
30245
- .E_c1up6e3y {
30246
- margin-left: 5px;
30247
- }
30248
-
30249
- .E_rapgekc.ant-radio-wrapper {
30250
- display: inline-flex;
30251
- align-items: baseline;
30252
- white-space: pre-wrap;
30253
- }
30254
- .E_rapgekc.ant-radio-wrapper .ant-radio {
30255
- position: relative;
30256
- top: 3px;
30257
- }
30258
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30259
- border-color: rgba(107, 128, 167, 0.6);
30260
- }
30261
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30262
- border-color: #0080ff;
30263
- }
30264
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30265
- border-color: #0080ff;
30266
- background: #0080ff;
30267
- }
30268
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
30269
- top: 4px;
30270
- left: 4px;
30271
- width: 6px;
30272
- height: 6px;
30273
- background: #fff;
30274
- }
30275
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
30276
- opacity: 0.5;
30277
- }
30278
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
30279
- border-color: rgba(107, 128, 167, 0.6);
30280
- background: rgba(211, 218, 235, 0.6);
30281
- }
30282
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
30283
- background: #00122e;
30284
- }
30285
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
30286
- color: #00122e;
30287
- opacity: 0.5;
30288
- }
30289
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
30290
- color: #00122e;
30291
- }
30292
- .E_rapgekc.ant-radio-wrapper .ant-radio + span {
30293
- display: inline-block;
30294
- padding: 0;
30295
- padding-left: 12px;
30296
- }
30297
- .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
30298
- margin-bottom: 0;
30299
- white-space: pre-wrap;
30300
- color: rgba(44, 56, 82, 0.6);
30301
- }
30302
- .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
30303
- padding-left: 8px;
30304
- }
30305
-
30306
- .E_rp906go .ant-radio-button-wrapper:first-child {
30307
- border-radius: 5px 0 0 5px;
30308
- }
30309
- .E_rp906go .ant-radio-button-wrapper:last-child {
30310
- border-radius: 0 5px 5px 0;
30311
- }
30312
-
30313
- .E_rcc63c8 {
30314
- color: #00122e;
30315
- border-color: #ccd4e3;
30316
- }
30317
- .E_rcc63c8:first-child {
30318
- border-color: #a3b4cc;
30319
- }
30320
- .E_rcc63c8.ant-radio-button-wrapper {
30321
- padding: 0 12px;
30322
- line-height: 32px;
30323
- height: 32px;
30324
- }
30325
- .E_rcc63c8.ant-radio-button-wrapper > span + span {
30326
- white-space: nowrap;
30327
- }
30328
- .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
30329
- height: 22px;
30330
- padding: 0 7px;
30331
- line-height: 20px;
30332
- }
30333
- .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
30334
- background: #ccd4e3;
30335
- }
30336
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
30337
- background: #0080ff;
30338
- }
30339
- .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
30340
- background: #ccd4e3;
30341
- opacity: 0.5;
30342
- }
30343
- .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
30344
- border-right-color: #0080ff;
30345
- }
30346
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
30347
- border-color: #0080ff;
30348
- }
30349
- .E_rcc63c8.ant-radio-button-wrapper-checked {
30350
- background: rgba(0, 136, 255, 0.1);
30351
- }
30352
- .E_rcc63c8.ant-radio-button-wrapper-disabled {
30353
- background: rgba(211, 218, 235, 0.6);
30354
- border-color: #ccd4e3;
30355
- opacity: 0.5;
30356
- }
30357
- .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
30358
- color: #00122e;
30359
- border-color: #ccd4e3;
30360
- }
30361
- .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
30362
- color: #00122e;
30363
- border-color: #ccd4e3;
30364
- background: rgba(172, 186, 211, 0.6);
30365
- }
30366
- .E_rcc63c8 .ant-radio-button-input {
30367
- margin-right: 8px;
30368
- display: inline;
30369
- border: none;
30370
- padding: 0;
30371
- width: 36px;
30372
- background: transparent;
30373
- }
30374
- .E_rcc63c8 .ant-radio-button-input:focus {
30375
- box-shadow: none;
30376
- }
30377
- .E_rcc63c8 .ant-radio-button-input.ant-input-number {
30378
- margin-right: 0;
30379
- width: initial;
30380
- box-shadow: none;
30381
- }
30382
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
30383
- display: none;
30384
- }
30385
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
30386
- display: inline;
30387
- }
30388
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
30389
- display: inline;
30390
- margin-right: 8px;
30391
- padding: 0;
30392
- width: 36px;
30268
+ .E_h10xnyuu {
30269
+ font-family: Inter;
30270
+ font-style: normal;
30271
+ font-weight: normal;
30272
+ text-transform: uppercase;
30273
+ font-feature-settings: "cpsp" on;
30274
+ font-size: 12px;
30275
+ line-height: 18px;
30393
30276
  }
30394
30277
 
30395
- .E_dsnbhzf {
30278
+ .E_lrcmi0v {
30396
30279
  font-family: Inter;
30397
30280
  font-style: normal;
30398
- font-weight: bold;
30399
- font-size: 32px;
30400
- line-height: 40px;
30281
+ font-weight: normal;
30282
+ font-size: 16px;
30283
+ line-height: 24px;
30401
30284
  }
30402
30285
 
30403
- .E_d1mvo22k {
30286
+ .E_lzt43lp {
30404
30287
  font-family: Inter;
30405
30288
  font-style: normal;
30406
30289
  font-weight: bold;
30407
- font-size: 24px;
30408
- line-height: 32px;
30290
+ font-size: 16px;
30291
+ line-height: 24px;
30409
30292
  }
30410
30293
 
30411
- .E_d1b444tr {
30294
+ .E_l5yc9nt {
30412
30295
  font-family: Inter;
30413
30296
  font-style: normal;
30414
30297
  font-weight: normal;
30415
- font-size: 32px;
30416
- line-height: 40px;
30298
+ font-size: 16px;
30299
+ line-height: 24px;
30417
30300
  }
30418
30301
 
30419
- .E_dvs0kue {
30302
+ .E_l1fbkbzo {
30420
30303
  font-family: Inter;
30421
30304
  font-style: normal;
30422
30305
  font-weight: bold;
30423
- font-size: 20px;
30306
+ font-size: 16px;
30424
30307
  line-height: 24px;
30425
30308
  }
30426
30309
 
30427
- .E_d1hcbfcq {
30310
+ .E_lahvcax {
30428
30311
  font-family: Inter;
30429
30312
  font-style: normal;
30430
30313
  font-weight: normal;
30431
- font-size: 20px;
30314
+ text-transform: uppercase;
30315
+ font-feature-settings: "cpsp" on;
30316
+ font-size: 16px;
30432
30317
  line-height: 24px;
30433
30318
  }
30434
30319
 
30435
- .E_d1cz922v {
30320
+ .E_l11q3pxd {
30436
30321
  font-family: Inter;
30437
30322
  font-style: normal;
30438
30323
  font-weight: bold;
30439
- font-size: 18px;
30440
- line-height: 22px;
30324
+ text-transform: uppercase;
30325
+ font-feature-settings: "cpsp" on;
30326
+ font-size: 16px;
30327
+ line-height: 24px;
30441
30328
  }
30442
30329
 
30443
- .E_d3nzbrm {
30330
+ .E_lfuc2qu {
30444
30331
  font-family: Inter;
30445
30332
  font-style: normal;
30446
30333
  font-weight: normal;
30447
- font-size: 18px;
30334
+ font-size: 14px;
30448
30335
  line-height: 22px;
30449
30336
  }
30450
30337
 
30451
- .E_h1g0p5ob {
30452
- font-family: Inter;
30453
- font-style: normal;
30454
- font-weight: bold;
30455
- font-size: 16px;
30456
- line-height: 22px;
30457
- }
30458
-
30459
- .E_hydo2ej {
30460
- font-family: Inter;
30461
- font-style: normal;
30462
- font-weight: normal;
30463
- font-size: 16px;
30464
- line-height: 22px;
30465
- }
30466
-
30467
- .E_h1hbuq0r {
30468
- font-family: Inter;
30469
- font-style: normal;
30470
- font-weight: bold;
30471
- font-size: 14px;
30472
- line-height: 20px;
30473
- }
30474
-
30475
- .E_h13bondg {
30476
- font-family: Inter;
30477
- font-style: normal;
30478
- font-weight: normal;
30479
- font-size: 14px;
30480
- line-height: 20px;
30481
- }
30482
-
30483
- .E_h1mhvdlx {
30484
- font-family: Inter;
30485
- font-style: normal;
30486
- font-weight: bold;
30487
- font-size: 12px;
30488
- line-height: 18px;
30489
- }
30490
-
30491
- .E_h1inmfq6 {
30492
- font-family: Inter;
30493
- font-style: normal;
30494
- font-weight: normal;
30495
- font-size: 12px;
30496
- line-height: 18px;
30497
- }
30498
-
30499
- .E_h1kfc0la {
30500
- font-family: Inter;
30501
- font-style: normal;
30502
- font-weight: bold;
30503
- text-transform: uppercase;
30504
- font-feature-settings: "cpsp" on;
30505
- font-size: 12px;
30506
- line-height: 18px;
30507
- }
30508
-
30509
- .E_h10xnyuu {
30510
- font-family: Inter;
30511
- font-style: normal;
30512
- font-weight: normal;
30513
- text-transform: uppercase;
30514
- font-feature-settings: "cpsp" on;
30515
- font-size: 12px;
30516
- line-height: 18px;
30517
- }
30518
-
30519
- .E_lrcmi0v {
30520
- font-family: Inter;
30521
- font-style: normal;
30522
- font-weight: normal;
30523
- font-size: 16px;
30524
- line-height: 24px;
30525
- }
30526
-
30527
- .E_lzt43lp {
30528
- font-family: Inter;
30529
- font-style: normal;
30530
- font-weight: bold;
30531
- font-size: 16px;
30532
- line-height: 24px;
30533
- }
30534
-
30535
- .E_l5yc9nt {
30536
- font-family: Inter;
30537
- font-style: normal;
30538
- font-weight: normal;
30539
- font-size: 16px;
30540
- line-height: 24px;
30541
- }
30542
-
30543
- .E_l1fbkbzo {
30544
- font-family: Inter;
30545
- font-style: normal;
30546
- font-weight: bold;
30547
- font-size: 16px;
30548
- line-height: 24px;
30549
- }
30550
-
30551
- .E_lahvcax {
30552
- font-family: Inter;
30553
- font-style: normal;
30554
- font-weight: normal;
30555
- text-transform: uppercase;
30556
- font-feature-settings: "cpsp" on;
30557
- font-size: 16px;
30558
- line-height: 24px;
30559
- }
30560
-
30561
- .E_l11q3pxd {
30562
- font-family: Inter;
30563
- font-style: normal;
30564
- font-weight: bold;
30565
- text-transform: uppercase;
30566
- font-feature-settings: "cpsp" on;
30567
- font-size: 16px;
30568
- line-height: 24px;
30569
- }
30570
-
30571
- .E_lfuc2qu {
30572
- font-family: Inter;
30573
- font-style: normal;
30574
- font-weight: normal;
30575
- font-size: 14px;
30576
- line-height: 22px;
30577
- }
30578
-
30579
- .E_l1jmp8r0 {
30338
+ .E_l1jmp8r0 {
30580
30339
  font-family: Inter;
30581
30340
  font-style: normal;
30582
30341
  font-weight: 500;
@@ -30871,6 +30630,19 @@ html body {
30871
30630
  display: inline-block;
30872
30631
  }
30873
30632
 
30633
+ .E_skwah65 {
30634
+ height: 8px;
30635
+ box-sizing: border-box;
30636
+ border-radius: 2px;
30637
+ background: #f5f7fa;
30638
+ display: flex;
30639
+ width: 100%;
30640
+ overflow: hidden;
30641
+ }
30642
+ .E_skwah65 .stack-bar-item + .stack-bar-item {
30643
+ margin-left: 1px;
30644
+ }
30645
+
30874
30646
  .E_s1dni7lo {
30875
30647
  width: 430px !important;
30876
30648
  }
@@ -30952,85 +30724,267 @@ html body {
30952
30724
  opacity: 0;
30953
30725
  }
30954
30726
 
30955
- .E_cnujxq2 {
30956
- display: flex;
30957
- flex-direction: column;
30727
+ .E_owd0kml {
30728
+ display: inline-block;
30958
30729
  }
30959
30730
 
30960
- .E_m7s48ia {
30961
- max-width: 1120px;
30962
- width: 100%;
30963
- margin: 0 auto;
30964
- height: 100%;
30731
+ .E_h1jsgezc {
30732
+ visibility: hidden;
30733
+ position: absolute;
30965
30734
  }
30966
30735
 
30967
- .E_wt5zbg6 {
30968
- max-width: 1120px;
30969
- width: 100%;
30970
- margin: 0 auto;
30971
- display: flex;
30736
+ .E_s1dizucg.ant-switch {
30737
+ min-width: 40px;
30738
+ height: 24px;
30739
+ background: rgba(172, 186, 211, 0.6);
30740
+ overflow: hidden;
30972
30741
  }
30973
- .E_wt5zbg6 .left,
30974
- .E_wt5zbg6 .right {
30975
- flex-grow: 0;
30976
- flex-shrink: 0;
30977
- flex-basis: 21%;
30742
+ .E_s1dizucg.ant-switch:focus {
30743
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30978
30744
  }
30979
- .E_wt5zbg6 .left {
30980
- display: flex;
30981
- justify-content: flex-end;
30982
- padding-right: 44px;
30745
+ .E_s1dizucg.ant-switch-small {
30746
+ min-width: 26px;
30747
+ height: 16px;
30983
30748
  }
30984
- .E_wt5zbg6 .right {
30985
- padding-left: 44px;
30749
+ .E_s1dizucg.ant-switch-large {
30750
+ min-width: 52px;
30751
+ height: 32px;
30986
30752
  }
30987
- .E_wt5zbg6 .middle {
30988
- margin-bottom: 40px;
30989
- flex-grow: 0;
30990
- flex-shrink: 0;
30991
- flex-basis: 58%;
30753
+ .E_s1dizucg.ant-switch .ant-switch-handle {
30754
+ height: 20px;
30755
+ width: 20px;
30992
30756
  }
30993
- .E_wt5zbg6 .middle .form-base-field {
30994
- width: 100%;
30757
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
30758
+ border-radius: 10px;
30759
+ transition-delay: 120ms;
30995
30760
  }
30996
- .E_wt5zbg6 .middle .form-base-field .form-base-field {
30997
- width: auto;
30761
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
30762
+ height: 14px;
30763
+ width: 14px;
30764
+ top: 1px;
30765
+ left: 1px;
30998
30766
  }
30999
-
31000
- .E_h18jprzg .ant-modal-header {
31001
- margin: 0 auto;
31002
- width: 100%;
31003
- max-width: 648px;
30767
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
30768
+ height: 28px;
30769
+ width: 28px;
31004
30770
  }
31005
- .E_h18jprzg .ant-modal-header .ant-modal-title {
31006
- margin-left: 0;
30771
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30772
+ border-radius: 14px;
31007
30773
  }
31008
- .E_h18jprzg .ant-modal-body {
31009
- margin: 0 auto;
31010
- padding: 0;
31011
- width: 100%;
31012
- max-width: 648px;
31013
- overflow: hidden;
30774
+ .E_s1dizucg.ant-switch-checked {
30775
+ background-color: #00ba5d;
31014
30776
  }
31015
- .E_h18jprzg .ant-modal-body .horizontal-steps-wrapper {
31016
- margin-bottom: 40px;
30777
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30778
+ left: calc(100% - 20px - 2px);
31017
30779
  }
31018
- .E_h18jprzg .ant-modal-body .horizontal-content-wrapper {
31019
- height: calc(100vh - 225px);
31020
- overflow-y: auto;
30780
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30781
+ left: calc(100% - 14px - 1px);
31021
30782
  }
31022
- .E_h18jprzg .ant-modal-footer .footer-content {
31023
- margin: 0 auto;
31024
- max-width: 648px;
30783
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30784
+ left: calc(100% - 28px - 2px);
31025
30785
  }
31026
30786
 
31027
- .E_h16z9xgz .ant-modal-header {
31028
- margin: 0 auto;
31029
- width: 100%;
31030
- max-width: 1024px;
30787
+ .E_c1up6e3y {
30788
+ margin-left: 5px;
31031
30789
  }
31032
- .E_h16z9xgz .ant-modal-header .ant-modal-title {
31033
- margin-left: 0;
30790
+
30791
+ .E_s1ebs0ra {
30792
+ display: flex;
30793
+ align-items: center;
30794
+ justify-content: space-between;
30795
+ background: #edf0f7;
30796
+ padding: 8px 12px;
30797
+ position: sticky;
30798
+ top: 0;
30799
+ z-index: 1;
30800
+ margin-bottom: -52px;
30801
+ }
30802
+ .E_s1ebs0ra .select-total {
30803
+ display: flex;
30804
+ align-items: center;
30805
+ font-weight: 700;
30806
+ flex-shrink: 0;
30807
+ }
30808
+ .E_s1ebs0ra .select-total .icon-wrapper {
30809
+ cursor: pointer;
30810
+ margin-left: 8px;
30811
+ width: 32px;
30812
+ height: 32px;
30813
+ border-radius: 50%;
30814
+ justify-content: center;
30815
+ }
30816
+ .E_s1ebs0ra .select-total .icon-wrapper:hover {
30817
+ background: rgba(225, 230, 241, 0.6);
30818
+ }
30819
+ .E_s1ebs0ra .action-group {
30820
+ flex: 1;
30821
+ margin-left: 88px;
30822
+ white-space: nowrap;
30823
+ text-align: right;
30824
+ position: relative;
30825
+ padding: 4px 0;
30826
+ margin-top: -4px;
30827
+ overflow: hidden;
30828
+ }
30829
+ .E_s1ebs0ra .action-group .sub-menu-delete {
30830
+ transform: translateY(-4px);
30831
+ }
30832
+ .E_s1ebs0ra .action-group button {
30833
+ border: none;
30834
+ }
30835
+ .E_s1ebs0ra .action-group > *:not(:last-child) {
30836
+ margin-right: 8px;
30837
+ }
30838
+ .E_s1ebs0ra .action-group > button:last-child {
30839
+ margin-right: 4px;
30840
+ }
30841
+ .E_s1ebs0ra .action-group .more-btn {
30842
+ cursor: pointer;
30843
+ width: 32px;
30844
+ height: 32px;
30845
+ justify-content: center;
30846
+ border-radius: 50%;
30847
+ }
30848
+ .E_s1ebs0ra .action-group .more-btn:hover {
30849
+ background: #fff;
30850
+ }
30851
+
30852
+ .E_phljevk {
30853
+ display: flex;
30854
+ justify-content: space-between;
30855
+ align-items: center;
30856
+ padding: 10px 0;
30857
+ color: rgba(44, 56, 82, 0.6);
30858
+ font-size: 12px;
30859
+ line-height: 24px;
30860
+ }
30861
+ .E_phljevk .pagination-left {
30862
+ padding: 2px 8px;
30863
+ }
30864
+ .E_phljevk .dropdown-trigger {
30865
+ display: flex;
30866
+ align-items: center;
30867
+ border-radius: 6px;
30868
+ cursor: pointer;
30869
+ transition: all 0.3s ease;
30870
+ }
30871
+ .E_phljevk .dropdown-trigger:hover {
30872
+ background: rgba(211, 218, 235, 0.6);
30873
+ color: #0080ff;
30874
+ }
30875
+ .E_phljevk .dropdown-trigger .icon-inner {
30876
+ margin-left: 4px;
30877
+ }
30878
+ .E_phljevk .pagination-right {
30879
+ display: flex;
30880
+ align-items: center;
30881
+ color: #0080ff;
30882
+ font-weight: bold;
30883
+ }
30884
+ .E_phljevk .pagination-right .icon-inner {
30885
+ margin-left: 4px;
30886
+ }
30887
+ .E_phljevk .pagination-right .prev-btn,
30888
+ .E_phljevk .pagination-right .next-btn {
30889
+ padding: 0 8px;
30890
+ }
30891
+ .E_phljevk .pagination-right .prev-btn > span,
30892
+ .E_phljevk .pagination-right .next-btn > span {
30893
+ color: #0080ff;
30894
+ }
30895
+ .E_phljevk .pagination-right .next-btn .icon-inner {
30896
+ transform: rotate(180deg);
30897
+ }
30898
+
30899
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30900
+ max-height: calc(100vh - 128px);
30901
+ overflow-y: auto;
30902
+ }
30903
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30904
+ padding: 4px 20px;
30905
+ font-size: 12px;
30906
+ line-height: 18px;
30907
+ }
30908
+
30909
+ .E_cnujxq2 {
30910
+ display: flex;
30911
+ flex-direction: column;
30912
+ }
30913
+
30914
+ .E_m7s48ia {
30915
+ max-width: 1120px;
30916
+ width: 100%;
30917
+ margin: 0 auto;
30918
+ height: 100%;
30919
+ }
30920
+
30921
+ .E_wt5zbg6 {
30922
+ max-width: 1120px;
30923
+ width: 100%;
30924
+ margin: 0 auto;
30925
+ display: flex;
30926
+ }
30927
+ .E_wt5zbg6 .left,
30928
+ .E_wt5zbg6 .right {
30929
+ flex-grow: 0;
30930
+ flex-shrink: 0;
30931
+ flex-basis: 21%;
30932
+ }
30933
+ .E_wt5zbg6 .left {
30934
+ display: flex;
30935
+ justify-content: flex-end;
30936
+ padding-right: 44px;
30937
+ }
30938
+ .E_wt5zbg6 .right {
30939
+ padding-left: 44px;
30940
+ }
30941
+ .E_wt5zbg6 .middle {
30942
+ margin-bottom: 40px;
30943
+ flex-grow: 0;
30944
+ flex-shrink: 0;
30945
+ flex-basis: 58%;
30946
+ }
30947
+ .E_wt5zbg6 .middle .form-base-field {
30948
+ width: 100%;
30949
+ }
30950
+ .E_wt5zbg6 .middle .form-base-field .form-base-field {
30951
+ width: auto;
30952
+ }
30953
+
30954
+ .E_h18jprzg .ant-modal-header {
30955
+ margin: 0 auto;
30956
+ width: 100%;
30957
+ max-width: 648px;
30958
+ }
30959
+ .E_h18jprzg .ant-modal-header .ant-modal-title {
30960
+ margin-left: 0;
30961
+ }
30962
+ .E_h18jprzg .ant-modal-body {
30963
+ margin: 0 auto;
30964
+ padding: 0;
30965
+ width: 100%;
30966
+ max-width: 648px;
30967
+ overflow: hidden;
30968
+ }
30969
+ .E_h18jprzg .ant-modal-body .horizontal-steps-wrapper {
30970
+ margin-bottom: 40px;
30971
+ }
30972
+ .E_h18jprzg .ant-modal-body .horizontal-content-wrapper {
30973
+ height: calc(100vh - 225px);
30974
+ overflow-y: auto;
30975
+ }
30976
+ .E_h18jprzg .ant-modal-footer .footer-content {
30977
+ margin: 0 auto;
30978
+ max-width: 648px;
30979
+ }
30980
+
30981
+ .E_h16z9xgz .ant-modal-header {
30982
+ margin: 0 auto;
30983
+ width: 100%;
30984
+ max-width: 1024px;
30985
+ }
30986
+ .E_h16z9xgz .ant-modal-header .ant-modal-title {
30987
+ margin-left: 0;
31034
30988
  }
31035
30989
  .E_h16z9xgz .ant-modal-body {
31036
30990
  margin: 0 auto;
@@ -31637,65 +31591,150 @@ input.E_rf8rlle.ant-input {
31637
31591
  margin: 4px 0;
31638
31592
  }
31639
31593
 
31640
- .E_s1ebs0ra {
31641
- display: flex;
31642
- align-items: center;
31643
- justify-content: space-between;
31644
- background: #edf0f7;
31645
- padding: 8px 12px;
31646
- position: sticky;
31647
- top: 0;
31648
- z-index: 1;
31649
- margin-bottom: -52px;
31594
+ .E_rapgekc.ant-radio-wrapper {
31595
+ display: inline-flex;
31596
+ align-items: baseline;
31597
+ white-space: pre-wrap;
31650
31598
  }
31651
- .E_s1ebs0ra .select-total {
31652
- display: flex;
31653
- align-items: center;
31654
- font-weight: 700;
31655
- flex-shrink: 0;
31599
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
31600
+ position: relative;
31601
+ top: 3px;
31656
31602
  }
31657
- .E_s1ebs0ra .select-total .icon-wrapper {
31658
- cursor: pointer;
31659
- margin-left: 8px;
31660
- width: 32px;
31661
- height: 32px;
31662
- border-radius: 50%;
31663
- justify-content: center;
31603
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31604
+ border-color: rgba(107, 128, 167, 0.6);
31664
31605
  }
31665
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
31666
- background: rgba(225, 230, 241, 0.6);
31606
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31607
+ border-color: #0080ff;
31667
31608
  }
31668
- .E_s1ebs0ra .action-group {
31669
- flex: 1;
31670
- margin-left: 88px;
31671
- white-space: nowrap;
31672
- text-align: right;
31673
- position: relative;
31674
- padding: 4px 0;
31675
- margin-top: -4px;
31676
- overflow: hidden;
31609
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31610
+ border-color: #0080ff;
31611
+ background: #0080ff;
31677
31612
  }
31678
- .E_s1ebs0ra .action-group .sub-menu-delete {
31679
- transform: translateY(-4px);
31613
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
31614
+ top: 4px;
31615
+ left: 4px;
31616
+ width: 6px;
31617
+ height: 6px;
31618
+ background: #fff;
31680
31619
  }
31681
- .E_s1ebs0ra .action-group button {
31682
- border: none;
31620
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31621
+ opacity: 0.5;
31683
31622
  }
31684
- .E_s1ebs0ra .action-group > *:not(:last-child) {
31685
- margin-right: 8px;
31623
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
31624
+ border-color: rgba(107, 128, 167, 0.6);
31625
+ background: rgba(211, 218, 235, 0.6);
31686
31626
  }
31687
- .E_s1ebs0ra .action-group > button:last-child {
31688
- margin-right: 4px;
31627
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31628
+ background: #00122e;
31689
31629
  }
31690
- .E_s1ebs0ra .action-group .more-btn {
31691
- cursor: pointer;
31692
- width: 32px;
31630
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
31631
+ color: #00122e;
31632
+ opacity: 0.5;
31633
+ }
31634
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
31635
+ color: #00122e;
31636
+ }
31637
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span {
31638
+ display: inline-block;
31639
+ padding: 0;
31640
+ padding-left: 12px;
31641
+ }
31642
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
31643
+ margin-bottom: 0;
31644
+ white-space: pre-wrap;
31645
+ color: rgba(44, 56, 82, 0.6);
31646
+ }
31647
+ .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
31648
+ padding-left: 8px;
31649
+ }
31650
+
31651
+ .E_rp906go .ant-radio-button-wrapper:first-child {
31652
+ border-radius: 5px 0 0 5px;
31653
+ }
31654
+ .E_rp906go .ant-radio-button-wrapper:last-child {
31655
+ border-radius: 0 5px 5px 0;
31656
+ }
31657
+
31658
+ .E_rcc63c8 {
31659
+ color: #00122e;
31660
+ border-color: #ccd4e3;
31661
+ }
31662
+ .E_rcc63c8:first-child {
31663
+ border-color: #a3b4cc;
31664
+ }
31665
+ .E_rcc63c8.ant-radio-button-wrapper {
31666
+ padding: 0 12px;
31667
+ line-height: 32px;
31693
31668
  height: 32px;
31694
- justify-content: center;
31695
- border-radius: 50%;
31696
31669
  }
31697
- .E_s1ebs0ra .action-group .more-btn:hover {
31698
- background: #fff;
31670
+ .E_rcc63c8.ant-radio-button-wrapper > span + span {
31671
+ white-space: nowrap;
31672
+ }
31673
+ .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
31674
+ height: 22px;
31675
+ padding: 0 7px;
31676
+ line-height: 20px;
31677
+ }
31678
+ .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
31679
+ background: #ccd4e3;
31680
+ }
31681
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
31682
+ background: #0080ff;
31683
+ }
31684
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
31685
+ background: #ccd4e3;
31686
+ opacity: 0.5;
31687
+ }
31688
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
31689
+ border-right-color: #0080ff;
31690
+ }
31691
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
31692
+ border-color: #0080ff;
31693
+ }
31694
+ .E_rcc63c8.ant-radio-button-wrapper-checked {
31695
+ background: rgba(0, 136, 255, 0.1);
31696
+ }
31697
+ .E_rcc63c8.ant-radio-button-wrapper-disabled {
31698
+ background: rgba(211, 218, 235, 0.6);
31699
+ border-color: #ccd4e3;
31700
+ opacity: 0.5;
31701
+ }
31702
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
31703
+ color: #00122e;
31704
+ border-color: #ccd4e3;
31705
+ }
31706
+ .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
31707
+ color: #00122e;
31708
+ border-color: #ccd4e3;
31709
+ background: rgba(172, 186, 211, 0.6);
31710
+ }
31711
+ .E_rcc63c8 .ant-radio-button-input {
31712
+ margin-right: 8px;
31713
+ display: inline;
31714
+ border: none;
31715
+ padding: 0;
31716
+ width: 36px;
31717
+ background: transparent;
31718
+ }
31719
+ .E_rcc63c8 .ant-radio-button-input:focus {
31720
+ box-shadow: none;
31721
+ }
31722
+ .E_rcc63c8 .ant-radio-button-input.ant-input-number {
31723
+ margin-right: 0;
31724
+ width: initial;
31725
+ box-shadow: none;
31726
+ }
31727
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31728
+ display: none;
31729
+ }
31730
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31731
+ display: inline;
31732
+ }
31733
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
31734
+ display: inline;
31735
+ margin-right: 8px;
31736
+ padding: 0;
31737
+ width: 36px;
31699
31738
  }
31700
31739
 
31701
31740
  .E_c1up1pdz {
@@ -31838,6 +31877,22 @@ input.E_rf8rlle.ant-input {
31838
31877
  color: #fff;
31839
31878
  }
31840
31879
 
31880
+ .E_berrcjl {
31881
+ color: rgba(10, 37, 85, 0.6);
31882
+ margin-bottom: 4px;
31883
+ }
31884
+ .E_berrcjl .breadcrumb-link {
31885
+ color: rgba(10, 37, 85, 0.6);
31886
+ cursor: pointer;
31887
+ transition: color 160ms ease;
31888
+ }
31889
+ .E_berrcjl .breadcrumb-link:hover {
31890
+ color: #0080ff;
31891
+ }
31892
+ .E_berrcjl .breadcrumb-link:active {
31893
+ color: #005ed1;
31894
+ }
31895
+
31841
31896
  .E_c18gxmrl {
31842
31897
  border: 1px solid #d8deeb;
31843
31898
  border-radius: 4px;
@@ -31858,60 +31913,59 @@ input.E_rf8rlle.ant-input {
31858
31913
  padding: 8px 12px;
31859
31914
  }
31860
31915
 
31861
- .E_c1bus5hc {
31862
- --color: white;
31863
- height: 14px;
31864
- width: 14px;
31865
- border-radius: 50%;
31866
- flex-shrink: 0;
31916
+ .E_tqjc4ui {
31917
+ margin: 0 2px;
31918
+ }
31919
+
31920
+ .E_n12mqh7z {
31867
31921
  display: flex;
31868
31922
  align-items: center;
31869
- justify-content: center;
31870
- border: 1px solid var(--color);
31923
+ font-size: 12px;
31924
+ line-height: 18px;
31871
31925
  }
31872
- .E_c1bus5hc .circle-inner {
31873
- position: relative;
31874
- height: 10px;
31875
- width: 10px;
31876
- border-radius: 50%;
31877
- overflow: hidden;
31926
+ .E_n12mqh7z:not(:last-child) {
31927
+ margin-bottom: 4px;
31878
31928
  }
31879
- .E_c1bus5hc .circle-content {
31880
- position: absolute;
31881
- height: 100%;
31882
- width: 100%;
31883
- left: 0;
31884
- top: 0;
31885
- border-radius: 50%;
31886
- background: linear-gradient(to right, var(--color) 50%, white 50%);
31887
- transform: rotate(180deg);
31929
+
31930
+ .E_tf5bynu {
31931
+ margin: 0 3px;
31888
31932
  }
31889
- .E_c1bus5hc .circle-child {
31890
- position: absolute;
31891
- height: 100%;
31892
- width: 100%;
31893
- left: 0;
31894
- top: 0;
31895
- margin-left: 50%;
31896
- transform-origin: left;
31897
- background: white;
31898
- transform: rotate(0deg);
31933
+
31934
+ .E_tcckoz1 {
31935
+ max-height: 400px;
31936
+ overflow: "auto";
31899
31937
  }
31900
31938
 
31901
- .E_berrcjl {
31902
- color: rgba(10, 37, 85, 0.6);
31903
- margin-bottom: 4px;
31939
+ .E_c1uzzomf {
31940
+ margin-bottom: 16px;
31904
31941
  }
31905
- .E_berrcjl .breadcrumb-link {
31906
- color: rgba(10, 37, 85, 0.6);
31942
+ .E_c1uzzomf .card-title {
31943
+ font-size: 16px;
31944
+ color: rgba(44, 56, 82, 0.6);
31945
+ font-weight: 700;
31946
+ line-height: 32px;
31947
+ }
31948
+ .E_c1uzzomf .card-body {
31949
+ padding: 24px;
31950
+ border-radius: 8px;
31951
+ background: #fff;
31952
+ }
31953
+ .E_c1uzzomf .empty {
31954
+ font-weight: 700;
31955
+ font-size: 14px;
31956
+ line-height: 22px;
31957
+ color: rgba(0, 21, 64, 0.3);
31958
+ text-align: center;
31959
+ }
31960
+
31961
+ .E_gmyahx3 {
31907
31962
  cursor: pointer;
31908
- transition: color 160ms ease;
31909
31963
  }
31910
- .E_berrcjl .breadcrumb-link:hover {
31911
- color: #0080ff;
31964
+ .E_gmyahx3 .link-text {
31965
+ color: rgba(0, 21, 64, 0.3);
31912
31966
  }
31913
- .E_berrcjl .breadcrumb-link:active {
31914
- color: #005ed1;
31967
+ .E_gmyahx3:hover .link-text {
31968
+ color: #0080ff;
31915
31969
  }
31916
31970
 
31917
31971
  .E_s11wux3h .ant-segmented-item:not(:last-child) {
@@ -31948,99 +32002,30 @@ input.E_rf8rlle.ant-input {
31948
32002
  background-color: transparent;
31949
32003
  }
31950
32004
 
31951
- .E_c1uzzomf {
31952
- margin-bottom: 16px;
31953
- }
31954
- .E_c1uzzomf .card-title {
31955
- font-size: 16px;
31956
- color: rgba(44, 56, 82, 0.6);
31957
- font-weight: 700;
31958
- line-height: 32px;
32005
+ .E_clm1wy1 {
32006
+ width: 192px;
32007
+ height: 246px;
32008
+ border-radius: 4px;
31959
32009
  }
31960
- .E_c1uzzomf .card-body {
31961
- padding: 24px;
31962
- border-radius: 8px;
31963
- background: #fff;
32010
+ .E_clm1wy1 > .ant-picker-calendar,
32011
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
32012
+ width: 100%;
32013
+ background-color: rgba(245, 247, 250, 0.6);
32014
+ border-top: none;
31964
32015
  }
31965
- .E_c1uzzomf .empty {
31966
- font-weight: 700;
31967
- font-size: 14px;
31968
- line-height: 22px;
31969
- color: rgba(0, 21, 64, 0.3);
31970
- text-align: center;
32016
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
32017
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
32018
+ padding: 0 16px;
31971
32019
  }
31972
-
31973
- .E_c18bcrac {
31974
- display: inline-block;
32020
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
32021
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
31975
32022
  width: 100%;
32023
+ height: 180px;
32024
+ border-spacing: 0;
31976
32025
  }
31977
- .E_c18bcrac .recharts-wrapper {
31978
- margin-left: 4px;
31979
- }
31980
-
31981
- .E_cro7kg2 {
31982
- padding: 4px;
31983
- }
31984
-
31985
- .E_c14wcxf0 {
31986
- display: flex;
31987
- justify-content: space-between;
31988
- align-items: center;
31989
- font-size: 13px;
31990
- line-height: 24px;
31991
- color: #cccccc;
31992
- white-space: nowrap;
31993
- }
31994
- .E_c14wcxf0 label {
31995
- margin-right: 32px;
31996
- }
31997
-
31998
- .E_coy29mj.E_c14wcxf0 {
31999
- font-weight: bold;
32000
- color: white;
32001
- }
32002
-
32003
- .E_s11212zy {
32004
- width: 8px;
32005
- height: 8px;
32006
- border-radius: 2px;
32007
- display: inline-block;
32008
- background: var(--s11212zy-0);
32009
- border: 1px solid #fff;
32010
- box-sizing: content-box;
32011
- margin-right: 6px;
32012
- }
32013
-
32014
- .E_p1lyky6c > :first-child {
32015
- font-weight: bold;
32016
- color: white;
32017
- margin-right: 4px;
32018
- }
32019
-
32020
- .E_clm1wy1 {
32021
- width: 192px;
32022
- height: 246px;
32023
- border-radius: 4px;
32024
- }
32025
- .E_clm1wy1 > .ant-picker-calendar,
32026
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
32027
- width: 100%;
32028
- background-color: rgba(245, 247, 250, 0.6);
32029
- border-top: none;
32030
- }
32031
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
32032
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
32033
- padding: 0 16px;
32034
- }
32035
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
32036
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
32037
- width: 100%;
32038
- height: 180px;
32039
- border-spacing: 0;
32040
- }
32041
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
32042
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
32043
- margin-bottom: 8px;
32026
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
32027
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
32028
+ margin-bottom: 8px;
32044
32029
  }
32045
32030
  .E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
32046
32031
  .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
@@ -32110,14 +32095,107 @@ input.E_rf8rlle.ant-input {
32110
32095
  border-radius: 2px;
32111
32096
  }
32112
32097
 
32113
- .E_gmyahx3 {
32114
- cursor: pointer;
32098
+ .E_ou7iq30 {
32099
+ overflow: hidden;
32100
+ text-overflow: ellipsis;
32115
32101
  }
32116
- .E_gmyahx3 .link-text {
32117
- color: rgba(0, 21, 64, 0.3);
32102
+
32103
+ .E_s1tui002 {
32104
+ white-space: nowrap;
32118
32105
  }
32119
- .E_gmyahx3:hover .link-text {
32120
- color: #0080ff;
32106
+
32107
+ .E_mxrc2zg {
32108
+ display: -webkit-box;
32109
+ -webkit-line-clamp: var(--mxrc2zg-0);
32110
+ -webkit-box-orient: vertical;
32111
+ word-break: break-all;
32112
+ }
32113
+
32114
+ .E_c18bcrac {
32115
+ display: inline-block;
32116
+ width: 100%;
32117
+ }
32118
+ .E_c18bcrac .recharts-wrapper {
32119
+ margin-left: 4px;
32120
+ }
32121
+
32122
+ .E_cro7kg2 {
32123
+ padding: 4px;
32124
+ }
32125
+
32126
+ .E_c14wcxf0 {
32127
+ display: flex;
32128
+ justify-content: space-between;
32129
+ align-items: center;
32130
+ font-size: 13px;
32131
+ line-height: 24px;
32132
+ color: #cccccc;
32133
+ white-space: nowrap;
32134
+ }
32135
+ .E_c14wcxf0 label {
32136
+ margin-right: 32px;
32137
+ }
32138
+
32139
+ .E_coy29mj.E_c14wcxf0 {
32140
+ font-weight: bold;
32141
+ color: white;
32142
+ }
32143
+
32144
+ .E_s11212zy {
32145
+ width: 8px;
32146
+ height: 8px;
32147
+ border-radius: 2px;
32148
+ display: inline-block;
32149
+ background: var(--s11212zy-0);
32150
+ border: 1px solid #fff;
32151
+ box-sizing: content-box;
32152
+ margin-right: 6px;
32153
+ }
32154
+
32155
+ .E_p1lyky6c > :first-child {
32156
+ font-weight: bold;
32157
+ color: white;
32158
+ margin-right: 4px;
32159
+ }
32160
+
32161
+ .E_c1bus5hc {
32162
+ --color: white;
32163
+ height: 14px;
32164
+ width: 14px;
32165
+ border-radius: 50%;
32166
+ flex-shrink: 0;
32167
+ display: flex;
32168
+ align-items: center;
32169
+ justify-content: center;
32170
+ border: 1px solid var(--color);
32171
+ }
32172
+ .E_c1bus5hc .circle-inner {
32173
+ position: relative;
32174
+ height: 10px;
32175
+ width: 10px;
32176
+ border-radius: 50%;
32177
+ overflow: hidden;
32178
+ }
32179
+ .E_c1bus5hc .circle-content {
32180
+ position: absolute;
32181
+ height: 100%;
32182
+ width: 100%;
32183
+ left: 0;
32184
+ top: 0;
32185
+ border-radius: 50%;
32186
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
32187
+ transform: rotate(180deg);
32188
+ }
32189
+ .E_c1bus5hc .circle-child {
32190
+ position: absolute;
32191
+ height: 100%;
32192
+ width: 100%;
32193
+ left: 0;
32194
+ top: 0;
32195
+ margin-left: 50%;
32196
+ transform-origin: left;
32197
+ background: white;
32198
+ transform: rotate(0deg);
32121
32199
  }
32122
32200
 
32123
32201
  .E_d1bw7c5z {
@@ -32201,45 +32279,6 @@ input.E_rf8rlle.ant-input {
32201
32279
  width: 102px;
32202
32280
  }
32203
32281
 
32204
- .E_tqjc4ui {
32205
- margin: 0 2px;
32206
- }
32207
-
32208
- .E_n12mqh7z {
32209
- display: flex;
32210
- align-items: center;
32211
- font-size: 12px;
32212
- line-height: 18px;
32213
- }
32214
- .E_n12mqh7z:not(:last-child) {
32215
- margin-bottom: 4px;
32216
- }
32217
-
32218
- .E_tf5bynu {
32219
- margin: 0 3px;
32220
- }
32221
-
32222
- .E_tcckoz1 {
32223
- max-height: 400px;
32224
- overflow: "auto";
32225
- }
32226
-
32227
- .E_ou7iq30 {
32228
- overflow: hidden;
32229
- text-overflow: ellipsis;
32230
- }
32231
-
32232
- .E_s1tui002 {
32233
- white-space: nowrap;
32234
- }
32235
-
32236
- .E_mxrc2zg {
32237
- display: -webkit-box;
32238
- -webkit-line-clamp: var(--mxrc2zg-0);
32239
- -webkit-box-orient: vertical;
32240
- word-break: break-all;
32241
- }
32242
-
32243
32282
  .E_t1sqg15u {
32244
32283
  background: white;
32245
32284
  }
@@ -32330,13 +32369,6 @@ input.E_rf8rlle.ant-input {
32330
32369
  padding-right: 12px;
32331
32370
  }
32332
32371
 
32333
- .E_c1yyuluq {
32334
- border-radius: 8px;
32335
- }
32336
- .E_c1yyuluq .ant-card-body {
32337
- padding: 20px 24px 24px 24px;
32338
- }
32339
-
32340
32372
  .E_ccrbeuz .ant-collapse-item {
32341
32373
  border: 0px;
32342
32374
  background-color: #fff;
@@ -32359,11 +32391,24 @@ input.E_rf8rlle.ant-input {
32359
32391
  cursor: default;
32360
32392
  }
32361
32393
 
32362
- .E_tje3huy {
32394
+ .E_c1yyuluq {
32395
+ border-radius: 8px;
32396
+ }
32397
+ .E_c1yyuluq .ant-card-body {
32398
+ padding: 20px 24px 24px 24px;
32399
+ }
32400
+
32401
+ .E_m74vjol {
32402
+ display: flex;
32403
+ justify-content: space-between;
32404
+ width: 100%;
32405
+ }
32406
+ .E_m74vjol .action {
32407
+ margin-left: 16px;
32408
+ }
32409
+
32410
+ .E_a1o35uvh .ant-alert-message {
32363
32411
  width: 100%;
32364
- overflow: inherit;
32365
- white-space: inherit;
32366
- text-overflow: ellipsis;
32367
32412
  }
32368
32413
 
32369
32414
  .E_s1iv0tp1 .enabled-switch {
@@ -32397,21 +32442,19 @@ input.E_rf8rlle.ant-input {
32397
32442
  color: #00122e !important;
32398
32443
  }
32399
32444
 
32400
- .E_itxley7.ant-input-group.ant-input-group-compact {
32401
- display: flex;
32445
+ .E_tje3huy {
32446
+ width: 100%;
32447
+ overflow: inherit;
32448
+ white-space: inherit;
32449
+ text-overflow: ellipsis;
32402
32450
  }
32403
32451
 
32404
- .E_m74vjol {
32452
+ .E_itxley7.ant-input-group.ant-input-group-compact {
32405
32453
  display: flex;
32406
- justify-content: space-between;
32407
- width: 100%;
32408
- }
32409
- .E_m74vjol .action {
32410
- margin-left: 16px;
32411
32454
  }
32412
32455
 
32413
- .E_a1o35uvh .ant-alert-message {
32414
- width: 100%;
32456
+ .E_tju3gfj .date {
32457
+ margin-right: 4px;
32415
32458
  }
32416
32459
 
32417
32460
  .E_sddwhm6 {
@@ -32488,16 +32531,6 @@ input.E_rf8rlle.ant-input {
32488
32531
  display: inline-block;
32489
32532
  }
32490
32533
 
32491
- .E_ivqqkzv {
32492
- height: 24px;
32493
- width: 56px !important;
32494
- margin-right: 4px;
32495
- }
32496
-
32497
- .E_c1wk4q29 {
32498
- color: rgba(44, 56, 82, 0.6);
32499
- }
32500
-
32501
32534
  .E_s1sck0th {
32502
32535
  padding: 0 8px;
32503
32536
  border-radius: 4px;
@@ -32637,10 +32670,16 @@ input.E_rf8rlle.ant-input {
32637
32670
  transform: rotate(180deg);
32638
32671
  }
32639
32672
 
32640
- .E_tju3gfj .date {
32673
+ .E_ivqqkzv {
32674
+ height: 24px;
32675
+ width: 56px !important;
32641
32676
  margin-right: 4px;
32642
32677
  }
32643
32678
 
32679
+ .E_c1wk4q29 {
32680
+ color: rgba(44, 56, 82, 0.6);
32681
+ }
32682
+
32644
32683
  .E_h1ol2wl7 {
32645
32684
  font-weight: bold;
32646
32685
  background-color: unset;
@@ -33052,849 +33091,849 @@ input.E_rf8rlle.ant-input {
33052
33091
  justify-content: center;
33053
33092
  }
33054
33093
 
33055
- .E_c1kchka8 {
33094
+ .E_tc97u5y {
33056
33095
  height: 100%;
33057
- width: 100%;
33058
- display: flex;
33059
- flex-direction: column;
33060
- background: #fff;
33061
- overflow: auto;
33062
33096
  }
33063
33097
 
33064
- .E_ctdb951 {
33065
- display: flex;
33066
- align-items: center;
33067
- justify-content: space-between;
33068
- padding: 0 12px 0 8px;
33069
- height: 44px;
33070
- flex-shrink: 0;
33098
+ .E_tfzf37v {
33099
+ height: 100%;
33071
33100
  }
33072
- .E_ctdb951 .year-number-input {
33073
- width: 54px;
33074
- padding: 4px;
33075
- margin-right: 9px;
33076
- font-weight: 700;
33077
- font-size: 16px;
33078
- line-height: 24px;
33101
+ .E_tfzf37v.empty-table .ant-table-content {
33102
+ overflow: visible !important;
33103
+ height: 100%;
33079
33104
  }
33080
- .E_ctdb951 .year-number-text {
33081
- cursor: pointer;
33082
- margin-right: 4px;
33105
+ .E_tfzf37v.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
33106
+ height: 100%;
33083
33107
  }
33084
- .E_ctdb951 .year-control {
33085
- display: flex;
33086
- align-items: center;
33087
- gap: 8px;
33108
+ .E_tfzf37v.empty-table .ant-table-content table {
33109
+ width: 100% !important;
33110
+ height: 100%;
33088
33111
  }
33089
- .E_ctdb951 .year-control .ant-btn {
33090
- display: flex;
33091
- align-items: center;
33092
- justify-content: center;
33093
- background: rgba(237, 241, 250, 0.6);
33112
+ .E_tfzf37v.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
33113
+ padding: 15px 0;
33094
33114
  }
33095
-
33096
- .E_cvgtyx0 {
33097
- display: grid;
33098
- grid-template-columns: repeat(7, auto);
33099
- list-style: none;
33100
- padding: 0 12px;
33101
- margin: unset;
33102
- height: 40px;
33103
- gap: 4px;
33104
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33105
- flex-wrap: wrap;
33106
- flex-shrink: 0;
33115
+ .E_tfzf37v.empty-table .ant-table-content table thead.ant-table-thead {
33116
+ display: none;
33107
33117
  }
33108
- .E_cvgtyx0 li {
33109
- width: 40px;
33110
- height: 40px;
33111
- line-height: 40px;
33112
- text-align: center;
33113
- color: rgba(44, 56, 82, 0.6);
33118
+ .E_tfzf37v .active-row td:nth-child(1) {
33119
+ font-weight: 700;
33114
33120
  }
33115
-
33116
- .E_crprfvb {
33117
- flex: 1;
33118
- overflow: auto;
33119
- position: relative;
33121
+ .E_tfzf37v.has-selection .active-row td:nth-child(2) {
33122
+ font-weight: 700;
33120
33123
  }
33121
- .E_crprfvb ul {
33122
- list-style: none;
33123
- padding: 0;
33124
- margin: 0;
33124
+ .E_tfzf37v .ant-spin-nested-loading {
33125
+ height: 100%;
33125
33126
  }
33126
- .E_crprfvb ul .month-container header {
33127
- padding: 4px 12px;
33128
- position: sticky;
33129
- top: 0;
33130
- background: #fff;
33131
- transition: all 0.2s ease-in-out;
33132
- z-index: 2;
33127
+ .E_tfzf37v .ant-spin-nested-loading .ant-spin-container {
33128
+ height: 100%;
33129
+ overflow: visible;
33133
33130
  }
33134
- .E_crprfvb ul .month-container header.pinned {
33135
- box-shadow: 0px 4px 12px rgba(225, 230, 241, 0.4), inset 0px -1px 0px rgba(225, 230, 241, 0.6);
33131
+ .E_tfzf37v .ant-spin-nested-loading .ant-spin {
33132
+ max-height: none;
33136
33133
  }
33137
- .E_crprfvb ul .month-container .dates-in-month {
33138
- display: grid;
33139
- grid-template-columns: repeat(7, auto);
33140
- gap: 4px 0;
33141
- padding: 4px 12px;
33134
+ .E_tfzf37v.table-init-loading .ant-spin-blur thead,
33135
+ .E_tfzf37v.table-init-loading .ant-spin-blur tbody {
33136
+ display: none;
33142
33137
  }
33143
- .E_crprfvb ul .month-container .dates-in-month .date-block {
33144
- width: 100%;
33145
- height: 100%;
33138
+ .E_tfzf37v td.ant-table-column-sort {
33139
+ background: transparent;
33140
+ }
33141
+ .E_tfzf37v td.ant-table-cell-fix-left,
33142
+ .E_tfzf37v td.ant-table-cell-fix-right {
33143
+ background: #fff;
33144
+ padding: 0 !important;
33145
+ }
33146
+ .E_tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content,
33147
+ .E_tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content {
33146
33148
  display: flex;
33147
33149
  align-items: center;
33148
- justify-content: center;
33150
+ height: 100%;
33151
+ padding: 8px;
33149
33152
  }
33150
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight {
33151
- border-color: #e6f4ff;
33152
- background: #e6f4ff;
33153
+ .E_tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content > span,
33154
+ .E_tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content > span {
33155
+ overflow: hidden;
33156
+ text-overflow: ellipsis;
33157
+ width: 100%;
33153
33158
  }
33154
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight {
33155
- position: relative;
33156
- background: #fff;
33159
+ .E_tfzf37v .ant-table-container {
33160
+ height: 100%;
33157
33161
  }
33158
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight::after {
33159
- content: "";
33160
- position: absolute;
33161
- right: 0;
33162
- top: 0;
33163
- width: calc(50% + 20px);
33162
+ .E_tfzf37v .ant-table-container::before, .E_tfzf37v .ant-table-container::after {
33163
+ box-shadow: none !important;
33164
+ }
33165
+ .E_tfzf37v .ant-table {
33166
+ border-radius: 0px;
33167
+ border-left: none;
33168
+ border-right: none;
33169
+ border-bottom: none;
33164
33170
  height: 100%;
33165
- background: #e6f4ff;
33166
- border-top-left-radius: 50%;
33167
- border-bottom-left-radius: 50%;
33171
+ font-size: 12px;
33172
+ background: transparent;
33168
33173
  }
33169
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight {
33174
+ .E_tfzf37v .ant-table .ant-table-header {
33170
33175
  position: relative;
33176
+ z-index: 3;
33177
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33178
+ margin-bottom: -1px;
33179
+ }
33180
+ .E_tfzf37v .ant-table .time-wrapper .date,
33181
+ .E_tfzf37v .ant-table .value {
33182
+ color: #2d3a56;
33183
+ }
33184
+ .E_tfzf37v .ant-table .time-wrapper .time,
33185
+ .E_tfzf37v .ant-table .unit {
33186
+ color: rgba(44, 56, 82, 0.6);
33187
+ }
33188
+ .E_tfzf37v .ant-table .ant-table-selection {
33189
+ position: unset;
33190
+ text-align: center;
33191
+ }
33192
+ .E_tfzf37v .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
33171
33193
  background: #fff;
33172
33194
  }
33173
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight::after {
33174
- content: "";
33195
+ .E_tfzf37v .ant-table .anticon-setting {
33196
+ cursor: pointer;
33175
33197
  position: absolute;
33176
- left: 0;
33177
- top: 0;
33178
- width: calc(50% + 20px);
33179
- height: 100%;
33180
- background: #e6f4ff;
33181
- border-top-right-radius: 50%;
33182
- border-bottom-right-radius: 50%;
33183
- }
33184
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight:last-child::after {
33185
- width: 40px;
33186
33198
  top: 50%;
33199
+ right: 12px;
33187
33200
  transform: translateY(-50%);
33188
33201
  }
33189
- .E_crprfvb ul .month-container .dates-in-month .date-block + .highlight {
33190
- border-radius: unset;
33202
+ .E_tfzf37v .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
33203
+ box-shadow: none;
33204
+ width: 1px;
33205
+ background: rgba(213, 219, 227, 0.6);
33191
33206
  }
33192
- .E_crprfvb ul .month-container .dates-in-month .date-block:hover > .date {
33193
- border: 1px solid #0080ff;
33194
- cursor: pointer;
33195
- background: #fff;
33207
+ .E_tfzf37v .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
33208
+ box-shadow: none;
33209
+ width: 1px;
33210
+ background: rgba(213, 219, 227, 0.6);
33196
33211
  }
33197
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date {
33198
- width: 38px;
33199
- height: 38px;
33200
- line-height: 36px;
33201
- text-align: center;
33202
- border-radius: 50%;
33203
- color: #00122e;
33204
- border: 1px solid transparent;
33205
- transition: background, border 0.2s ease-in-out;
33212
+ .E_tfzf37v .ant-table .ant-table-tbody {
33206
33213
  position: relative;
33207
- z-index: 1;
33208
- }
33209
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.blank {
33210
- background: transparent;
33211
33214
  }
33212
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.today {
33213
- color: #0080ff;
33214
- border-color: rgba(0, 136, 255, 0.16);
33215
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td {
33216
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
33217
+ border-bottom: 1px solid white;
33218
+ height: 40px;
33219
+ vertical-align: middle;
33220
+ transition: background 0ms;
33221
+ color: #00122e;
33215
33222
  }
33216
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.highlight {
33217
- border-color: #e6f4ff;
33223
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.header-hover {
33224
+ background: #f2f5fa;
33225
+ border-bottom-color: #f2f5fa;
33218
33226
  }
33219
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date:hover {
33220
- border-color: #0080ff;
33221
- cursor: pointer;
33222
- background: #fff;
33227
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
33228
+ height: auto;
33229
+ color: #00122e;
33230
+ font-size: 12px;
33231
+ text-align: left;
33232
+ transition: none;
33233
+ overflow: hidden;
33234
+ text-overflow: ellipsis;
33235
+ white-space: nowrap;
33223
33236
  }
33224
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.checked {
33225
- background: #0080ff;
33226
- color: #fff;
33227
- }
33228
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.disabled {
33229
- cursor: not-allowed;
33230
- border-color: transparent;
33231
- background: #e4e9f2;
33232
- color: rgba(107, 128, 167, 0.6);
33237
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
33238
+ color: #0096ff;
33233
33239
  }
33234
-
33235
- .E_ipbxcfl {
33236
- display: inline-flex;
33237
- flex-direction: column;
33238
- align-items: flex-start;
33240
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
33241
+ overflow: hidden;
33242
+ text-overflow: ellipsis;
33243
+ width: 100%;
33244
+ vertical-align: middle;
33239
33245
  }
33240
- .E_ipbxcfl .input-time {
33241
- flex-shrink: 0;
33242
- display: inline-flex;
33243
- align-items: center;
33244
- border: 1px solid #e4e9f2;
33245
- transition: all 0.1s ease-in-out;
33246
- padding: 4px 8px;
33247
- background: #fff;
33248
- border-radius: 5px;
33246
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.cell_status {
33247
+ line-height: 0px;
33249
33248
  }
33250
- .E_ipbxcfl .input-time.focus {
33251
- border-color: #0080ff;
33252
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
33249
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.align-right {
33250
+ padding-right: 25px;
33253
33251
  }
33254
- .E_ipbxcfl .input-time.error {
33255
- border-color: #f0483e;
33252
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
33253
+ border-top-color: transparent;
33256
33254
  }
33257
- .E_ipbxcfl .input-time.error.focus {
33258
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.2);
33255
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td {
33256
+ background: rgba(225, 230, 241, 0.6);
33257
+ border-color: transparent transparent white;
33259
33258
  }
33260
- .E_ipbxcfl .input-time input {
33261
- font-family: "Inter";
33262
- font-style: normal;
33263
- font-weight: 400;
33264
- font-size: 13px;
33265
- line-height: 20px;
33266
- border: none;
33267
- outline: none;
33268
- width: 23px;
33269
- height: 20px;
33270
- text-align: center;
33271
- padding: 0;
33272
- color: #00122e;
33259
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
33260
+ border-radius: 8px 0 0 8px;
33273
33261
  }
33274
- .E_ipbxcfl .input-time input::placeholder {
33275
- color: rgba(0, 21, 64, 0.3);
33262
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
33263
+ border-radius: 8px 0 0 8px;
33276
33264
  }
33277
- .E_ipbxcfl .input-time input:disabled {
33278
- background: inherit;
33265
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
33266
+ content: "";
33267
+ width: 4px;
33268
+ top: -1px;
33269
+ bottom: -1px;
33270
+ background: white;
33279
33271
  }
33280
- .E_ipbxcfl .input-time input:focus, .E_ipbxcfl .input-time input:active {
33281
- border: none;
33282
- outline: none;
33272
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
33273
+ border-radius: 0 8px 8px 0;
33283
33274
  }
33284
- .E_ipbxcfl .input-time .connect-symbol {
33285
- margin: 0 2px;
33286
- color: rgba(0, 21, 64, 0.3);
33275
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
33276
+ border-radius: 0;
33277
+ background: white;
33278
+ border-top: none;
33287
33279
  }
33288
- .E_ipbxcfl .input-time .connect-symbol.inputted {
33289
- color: #00122e;
33280
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
33281
+ border-top: 1px solid transparent;
33282
+ border-radius: 0 8px 8px 0;
33283
+ background: rgba(225, 230, 241, 0.6);
33290
33284
  }
33291
- .E_ipbxcfl .error-message {
33292
- color: #f0483e;
33293
- margin-top: 4px;
33285
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
33286
+ background: white;
33287
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
33294
33288
  }
33295
-
33296
- .E_a120uq8m {
33297
- width: 100%;
33289
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
33290
+ display: flex;
33291
+ align-items: center;
33298
33292
  height: 100%;
33293
+ background: rgba(225, 230, 241, 0.6);
33294
+ }
33295
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
33296
+ background: white;
33297
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
33298
+ }
33299
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
33299
33300
  display: flex;
33300
- flex-direction: column;
33301
+ align-items: center;
33302
+ height: 100%;
33303
+ background: rgba(225, 230, 241, 0.6);
33301
33304
  }
33302
- .E_a120uq8m .date-range-picker-calendar {
33303
- flex: 1;
33305
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:last-child td {
33306
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33304
33307
  }
33305
-
33306
- .E_a15s9m0d {
33307
- padding: 8px 12px;
33308
- box-shadow: inset 0px 1px 0px rgba(211, 218, 235, 0.3);
33308
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row {
33309
+ box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
33310
+ border-radius: 8px;
33309
33311
  }
33310
- .E_a15s9m0d .time-input-main {
33311
- display: flex;
33312
- justify-content: space-between;
33313
- align-items: flex-end;
33312
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
33313
+ border-top-color: white;
33314
33314
  }
33315
- .E_a15s9m0d .time-input-main .time-input-container {
33316
- display: flex;
33317
- align-items: flex-end;
33318
- gap: 8px;
33315
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td {
33316
+ background: rgba(0, 136, 255, 0.1);
33317
+ border-bottom-color: transparent;
33318
+ border-top-color: transparent;
33319
33319
  }
33320
- .E_a15s9m0d .time-input-main .time-input-container .start-time,
33321
- .E_a15s9m0d .time-input-main .time-input-container .end-time,
33322
- .E_a15s9m0d .time-input-main .time-input-container .to {
33323
- color: rgba(44, 56, 82, 0.6);
33320
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
33321
+ border-radius: 8px 0 0 8px;
33324
33322
  }
33325
- .E_a15s9m0d .time-input-main .time-input-container .start-time p,
33326
- .E_a15s9m0d .time-input-main .time-input-container .end-time p,
33327
- .E_a15s9m0d .time-input-main .time-input-container .to p {
33328
- margin: 0;
33323
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
33324
+ border-radius: 0 8px 8px 0;
33329
33325
  }
33330
- .E_a15s9m0d .time-input-main .time-input-container .start-time.validate-failed,
33331
- .E_a15s9m0d .time-input-main .time-input-container .to.validate-failed {
33332
- padding-bottom: 18px;
33326
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
33327
+ background: rgba(0, 136, 255, 0.1);
33333
33328
  }
33334
- .E_a15s9m0d .time-input-main .time-input-container .to {
33335
- line-height: 34px;
33329
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th {
33330
+ background: #fff;
33331
+ font-weight: 400;
33332
+ position: relative;
33333
+ border-bottom: none;
33334
+ color: #00122e;
33335
+ transition: none;
33336
+ padding: 15px 8px 15px 8px;
33336
33337
  }
33337
- .E_a15s9m0d .time-input-main .time-input-container .input-time {
33338
- height: 32px;
33339
- padding: 6px 3px;
33338
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:not(:last-child):after {
33339
+ content: "";
33340
+ width: 1px;
33341
+ top: 0;
33342
+ bottom: 0;
33343
+ background: rgba(211, 218, 235, 0.6);
33344
+ position: absolute;
33345
+ right: 0;
33340
33346
  }
33341
- .E_a15s9m0d .time-input-main .ant-btn.validate-failed {
33342
- margin-bottom: 18px;
33347
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank {
33348
+ padding: unset;
33343
33349
  }
33344
- .E_a15s9m0d .time-input-error {
33345
- color: #f0483e;
33350
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank:after {
33351
+ display: none;
33346
33352
  }
33347
-
33348
- .E_r5hl59d {
33349
- min-width: 162px;
33353
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
33354
+ width: 100%;
33355
+ overflow: hidden;
33356
+ white-space: nowrap;
33357
+ text-overflow: ellipsis;
33350
33358
  }
33351
- .E_r5hl59d .ant-input-affix-wrapper {
33352
- width: 100% !important;
33353
- border-width: 0 0 1px 0 !important;
33354
- border-color: rgba(211, 218, 235, 0.6);
33355
- border-radius: 0;
33359
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
33360
+ overflow: hidden;
33361
+ text-overflow: ellipsis;
33362
+ flex: 1;
33356
33363
  }
33357
- .E_r5hl59d .ant-input-affix-wrapper + .past-time-list {
33358
- margin-top: 8px;
33364
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
33365
+ padding: 15px 25px 15px 8px;
33359
33366
  }
33360
- .E_r5hl59d .past-time-list {
33361
- list-style: none;
33367
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
33362
33368
  padding: 0;
33363
- margin-top: 12px;
33364
33369
  }
33365
- .E_r5hl59d .past-time-list li {
33366
- padding: 5px 8px;
33367
- border-radius: 5px;
33368
- transition: all 0.2s ease-in-out;
33369
- cursor: pointer;
33370
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
33371
+ position: absolute;
33372
+ right: 6px;
33373
+ top: 50%;
33374
+ transform: translateY(-50%);
33375
+ height: 16px;
33376
+ display: none;
33377
+ transition: transform 320ms ease;
33370
33378
  }
33371
- .E_r5hl59d .past-time-list li:hover {
33372
- background: rgba(0, 136, 255, 0.16);
33373
- color: #0080ff;
33379
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
33380
+ display: block;
33381
+ transform: translateY(-50%) rotateX(180deg);
33374
33382
  }
33375
- .E_r5hl59d .past-time-list li:active {
33376
- background: rgba(0, 136, 255, 0.2);
33377
- color: #0080ff;
33383
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
33384
+ display: block;
33378
33385
  }
33379
- .E_r5hl59d .past-time-list li.selected {
33380
- background: rgba(0, 136, 255, 0.2);
33381
- color: #0080ff;
33386
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
33387
+ display: none;
33382
33388
  }
33383
- .E_r5hl59d .past-time-list li.selected .highlight {
33384
- color: #0080ff;
33389
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
33390
+ transform: translateY(-50%);
33385
33391
  }
33386
- .E_r5hl59d .past-time-list li.disabled {
33387
- background: rgba(237, 241, 250, 0.6);
33388
- color: rgba(0, 21, 64, 0.3);
33389
- cursor: not-allowed;
33392
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
33393
+ transform: translateY(-50%) rotateX(180deg);
33390
33394
  }
33391
- .E_r5hl59d .past-time-list li + li {
33392
- margin-top: 2px;
33395
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
33396
+ background: #f2f5fa;
33393
33397
  }
33394
-
33395
- .E_dhqt3dw {
33396
- min-width: 392px;
33397
- }
33398
- .E_dhqt3dw.date-range-picker {
33399
- display: inline-flex;
33400
- align-items: center;
33401
- gap: 8px;
33402
- background: #fff;
33403
- border-radius: 5px;
33404
- border: 1px solid #e4e9f2;
33405
- transition: all 0.2s ease-in-out;
33398
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
33399
+ display: block;
33406
33400
  }
33407
- .E_dhqt3dw.date-range-picker .default-calendar-icon {
33408
- display: inline-flex;
33401
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.align-right {
33402
+ padding-right: 25px;
33409
33403
  }
33410
- .E_dhqt3dw.date-range-picker .hover-calendar-icon {
33411
- display: none;
33404
+ .E_tfzf37v .ant-table .ant-table-selection-column {
33405
+ padding: 0 !important;
33412
33406
  }
33413
- .E_dhqt3dw.date-range-picker:hover, .E_dhqt3dw.date-range-picker.active {
33414
- border-color: #0080ff;
33415
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
33407
+ .E_tfzf37v .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
33408
+ position: absolute;
33409
+ left: 50%;
33410
+ top: 50%;
33411
+ transform: translate(-50%, -50%);
33416
33412
  }
33417
- .E_dhqt3dw.date-range-picker:hover .default-calendar-icon, .E_dhqt3dw.date-range-picker.active .default-calendar-icon {
33413
+ .E_tfzf37v .ant-table .ant-table-selection-column:after {
33418
33414
  display: none;
33419
33415
  }
33420
- .E_dhqt3dw.date-range-picker:hover .hover-calendar-icon, .E_dhqt3dw.date-range-picker.active .hover-calendar-icon {
33421
- display: inline-flex;
33416
+ .E_tfzf37v .ant-table .ant-table-hide-scrollbar {
33417
+ background: #fff;
33422
33418
  }
33423
- .E_dhqt3dw.date-range-picker.large {
33424
- height: 40px;
33425
- line-height: 40px;
33426
- padding: 0 12px 0 16px;
33419
+ .E_tfzf37v .ant-table .ant-table-placeholder {
33420
+ background: inherit;
33427
33421
  }
33428
- .E_dhqt3dw.date-range-picker.medium {
33429
- height: 32px;
33430
- line-height: 32px;
33431
- padding: 0 8px 0 12px;
33422
+ .E_tfzf37v .ant-table .ant-table-placeholder td {
33423
+ position: static;
33424
+ border: none;
33425
+ background: inherit !important;
33426
+ height: 100px;
33427
+ vertical-align: middle;
33432
33428
  }
33433
- .E_dhqt3dw.date-range-picker .date-input-content {
33434
- flex: 1;
33435
- display: flex;
33436
- align-items: center;
33437
- gap: 8px;
33438
- color: #00122e;
33429
+ .E_tfzf37v .ant-table .ant-table-placeholder .table-default-empty,
33430
+ .E_tfzf37v .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
33431
+ font-weight: bold;
33432
+ font-size: 20px;
33433
+ color: rgba(10, 37, 85, 0.6);
33439
33434
  }
33440
- .E_dhqt3dw.date-range-picker .date-input-content .concat-symbol-block {
33441
- color: rgba(0, 21, 64, 0.3);
33435
+ .E_tfzf37v .ant-table th.ant-table-cell-scrollbar,
33436
+ .E_tfzf37v .ant-table th.cell__action_ {
33437
+ z-index: 10;
33442
33438
  }
33443
- .E_dhqt3dw.date-range-picker .date-input-content input {
33444
- border: none;
33445
- outline: none;
33446
- width: 162px;
33447
- padding: 0;
33448
- height: 22px;
33449
- line-height: 22px;
33450
- text-align: center;
33439
+ .E_tfzf37v .ant-table td.cell__action_ {
33440
+ padding: 0 !important;
33441
+ position: relative;
33442
+ background: #fff;
33451
33443
  }
33452
- .E_dhqt3dw.date-range-picker .date-input-content input::placeholder {
33453
- color: rgba(0, 21, 64, 0.3);
33454
- text-align: center;
33444
+ .E_tfzf37v .ant-table td.cell__action_ > * {
33445
+ height: 100%;
33446
+ display: flex;
33447
+ align-items: center;
33448
+ justify-content: flex-end;
33449
+ padding-right: 8px;
33455
33450
  }
33456
- .E_dhqt3dw.date-range-picker .date-input-content input:disabled {
33457
- background: inherit;
33451
+ .E_tfzf37v .ant-table td.cell__action_ .menu-button {
33452
+ width: 24px;
33453
+ height: 24px;
33454
+ cursor: pointer;
33455
+ justify-content: center;
33456
+ border-radius: 4px;
33458
33457
  }
33459
- .E_dhqt3dw.date-range-picker .date-input-content input:hover, .E_dhqt3dw.date-range-picker .date-input-content input:focus, .E_dhqt3dw.date-range-picker .date-input-content input:active {
33460
- border: none;
33461
- outline: none;
33462
- box-shadow: none;
33458
+ .E_tfzf37v .ant-table td.cell__action_ .menu-button:hover {
33459
+ background: #fff;
33463
33460
  }
33464
- .E_dhqt3dw.date-range-picker .past-time-icon {
33465
- cursor: pointer;
33461
+
33462
+ .E_c1kchka8 {
33463
+ height: 100%;
33464
+ width: 100%;
33465
+ display: flex;
33466
+ flex-direction: column;
33467
+ background: #fff;
33468
+ overflow: auto;
33466
33469
  }
33467
33470
 
33468
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-bar {
33469
- padding: 12px 12px 0 12px;
33471
+ .E_ctdb951 {
33472
+ display: flex;
33473
+ align-items: center;
33474
+ justify-content: space-between;
33475
+ padding: 0 12px 0 8px;
33476
+ height: 44px;
33477
+ flex-shrink: 0;
33470
33478
  }
33471
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item-medium.tab-menu-item:first-child {
33472
- padding-left: 16px;
33479
+ .E_ctdb951 .year-number-input {
33480
+ width: 54px;
33481
+ padding: 4px;
33482
+ margin-right: 9px;
33483
+ font-weight: 700;
33484
+ font-size: 16px;
33485
+ line-height: 24px;
33473
33486
  }
33474
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item {
33475
- margin-right: 0;
33487
+ .E_ctdb951 .year-number-text {
33488
+ cursor: pointer;
33489
+ margin-right: 4px;
33476
33490
  }
33477
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item + .tab-menu-item {
33478
- margin-left: 2px;
33491
+ .E_ctdb951 .year-control {
33492
+ display: flex;
33493
+ align-items: center;
33494
+ gap: 8px;
33479
33495
  }
33480
- .E_d956d92 .ant-popover-inner-content .relative-time-container {
33481
- max-height: 470px;
33482
- overflow: auto;
33496
+ .E_ctdb951 .year-control .ant-btn {
33497
+ display: flex;
33498
+ align-items: center;
33499
+ justify-content: center;
33500
+ background: rgba(237, 241, 250, 0.6);
33483
33501
  }
33484
- .E_d956d92 .ant-popover-inner-content .relative-time-container ul {
33502
+
33503
+ .E_cvgtyx0 {
33504
+ display: grid;
33505
+ grid-template-columns: repeat(7, auto);
33506
+ list-style: none;
33485
33507
  padding: 0 12px;
33508
+ margin: unset;
33509
+ height: 40px;
33510
+ gap: 4px;
33511
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33512
+ flex-wrap: wrap;
33513
+ flex-shrink: 0;
33486
33514
  }
33487
- .E_d956d92 .ant-popover-inner-content .absolute-time-container {
33488
- height: 470px;
33489
- overflow: auto;
33515
+ .E_cvgtyx0 li {
33516
+ width: 40px;
33517
+ height: 40px;
33518
+ line-height: 40px;
33519
+ text-align: center;
33520
+ color: rgba(44, 56, 82, 0.6);
33490
33521
  }
33491
33522
 
33492
- .E_d1tc7lgk {
33493
- min-width: 200px;
33494
- }
33495
- .E_d1tc7lgk header {
33496
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33497
- padding: 8px 12px;
33498
- color: rgba(44, 56, 82, 0.6);
33523
+ .E_crprfvb {
33524
+ flex: 1;
33525
+ overflow: auto;
33526
+ position: relative;
33499
33527
  }
33500
- .E_d1tc7lgk ul {
33528
+ .E_crprfvb ul {
33501
33529
  list-style: none;
33502
- padding: 12px;
33530
+ padding: 0;
33531
+ margin: 0;
33503
33532
  }
33504
- .E_d1tc7lgk ul li {
33505
- padding: 5px 8px;
33506
- border-radius: 5px;
33533
+ .E_crprfvb ul .month-container header {
33534
+ padding: 4px 12px;
33535
+ position: sticky;
33536
+ top: 0;
33537
+ background: #fff;
33507
33538
  transition: all 0.2s ease-in-out;
33508
- cursor: pointer;
33509
- }
33510
- .E_d1tc7lgk ul li:hover {
33511
- background: rgba(0, 136, 255, 0.16);
33512
- color: #0080ff;
33513
- }
33514
- .E_d1tc7lgk ul li:active {
33515
- background: rgba(0, 136, 255, 0.2);
33516
- color: #0080ff;
33517
- }
33518
- .E_d1tc7lgk ul li + li {
33519
- margin-top: 2px;
33520
- }
33521
-
33522
- .E_rzaik16 {
33523
- padding: 0;
33539
+ z-index: 2;
33524
33540
  }
33525
- .E_rzaik16 .ant-popover-arrow {
33526
- display: none;
33541
+ .E_crprfvb ul .month-container header.pinned {
33542
+ box-shadow: 0px 4px 12px rgba(225, 230, 241, 0.4), inset 0px -1px 0px rgba(225, 230, 241, 0.6);
33527
33543
  }
33528
- .E_rzaik16 .ant-popover-inner-content {
33529
- padding: 0;
33544
+ .E_crprfvb ul .month-container .dates-in-month {
33545
+ display: grid;
33546
+ grid-template-columns: repeat(7, auto);
33547
+ gap: 4px 0;
33548
+ padding: 4px 12px;
33530
33549
  }
33531
-
33532
- .E_tc97u5y {
33550
+ .E_crprfvb ul .month-container .dates-in-month .date-block {
33551
+ width: 100%;
33533
33552
  height: 100%;
33553
+ display: flex;
33554
+ align-items: center;
33555
+ justify-content: center;
33534
33556
  }
33535
-
33536
- .E_tfzf37v {
33537
- height: 100%;
33557
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight {
33558
+ border-color: #e6f4ff;
33559
+ background: #e6f4ff;
33538
33560
  }
33539
- .E_tfzf37v.empty-table .ant-table-content {
33540
- overflow: visible !important;
33541
- height: 100%;
33561
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight {
33562
+ position: relative;
33563
+ background: #fff;
33542
33564
  }
33543
- .E_tfzf37v.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
33565
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight::after {
33566
+ content: "";
33567
+ position: absolute;
33568
+ right: 0;
33569
+ top: 0;
33570
+ width: calc(50% + 20px);
33544
33571
  height: 100%;
33572
+ background: #e6f4ff;
33573
+ border-top-left-radius: 50%;
33574
+ border-bottom-left-radius: 50%;
33545
33575
  }
33546
- .E_tfzf37v.empty-table .ant-table-content table {
33547
- width: 100% !important;
33548
- height: 100%;
33576
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight {
33577
+ position: relative;
33578
+ background: #fff;
33549
33579
  }
33550
- .E_tfzf37v.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
33551
- padding: 15px 0;
33552
- }
33553
- .E_tfzf37v.empty-table .ant-table-content table thead.ant-table-thead {
33554
- display: none;
33580
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight::after {
33581
+ content: "";
33582
+ position: absolute;
33583
+ left: 0;
33584
+ top: 0;
33585
+ width: calc(50% + 20px);
33586
+ height: 100%;
33587
+ background: #e6f4ff;
33588
+ border-top-right-radius: 50%;
33589
+ border-bottom-right-radius: 50%;
33555
33590
  }
33556
- .E_tfzf37v .active-row td:nth-child(1) {
33557
- font-weight: 700;
33591
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight:last-child::after {
33592
+ width: 40px;
33593
+ top: 50%;
33594
+ transform: translateY(-50%);
33558
33595
  }
33559
- .E_tfzf37v.has-selection .active-row td:nth-child(2) {
33560
- font-weight: 700;
33596
+ .E_crprfvb ul .month-container .dates-in-month .date-block + .highlight {
33597
+ border-radius: unset;
33561
33598
  }
33562
- .E_tfzf37v .ant-spin-nested-loading {
33563
- height: 100%;
33599
+ .E_crprfvb ul .month-container .dates-in-month .date-block:hover > .date {
33600
+ border: 1px solid #0080ff;
33601
+ cursor: pointer;
33602
+ background: #fff;
33564
33603
  }
33565
- .E_tfzf37v .ant-spin-nested-loading .ant-spin-container {
33566
- height: 100%;
33567
- overflow: visible;
33604
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date {
33605
+ width: 38px;
33606
+ height: 38px;
33607
+ line-height: 36px;
33608
+ text-align: center;
33609
+ border-radius: 50%;
33610
+ color: #00122e;
33611
+ border: 1px solid transparent;
33612
+ transition: background, border 0.2s ease-in-out;
33613
+ position: relative;
33614
+ z-index: 1;
33568
33615
  }
33569
- .E_tfzf37v .ant-spin-nested-loading .ant-spin {
33570
- max-height: none;
33616
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date.blank {
33617
+ background: transparent;
33571
33618
  }
33572
- .E_tfzf37v.table-init-loading .ant-spin-blur thead,
33573
- .E_tfzf37v.table-init-loading .ant-spin-blur tbody {
33574
- display: none;
33619
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date.today {
33620
+ color: #0080ff;
33621
+ border-color: rgba(0, 136, 255, 0.16);
33575
33622
  }
33576
- .E_tfzf37v td.ant-table-column-sort {
33577
- background: transparent;
33623
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date.highlight {
33624
+ border-color: #e6f4ff;
33578
33625
  }
33579
- .E_tfzf37v td.ant-table-cell-fix-left,
33580
- .E_tfzf37v td.ant-table-cell-fix-right {
33626
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date:hover {
33627
+ border-color: #0080ff;
33628
+ cursor: pointer;
33581
33629
  background: #fff;
33582
- padding: 0 !important;
33583
- }
33584
- .E_tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content,
33585
- .E_tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content {
33586
- display: flex;
33587
- align-items: center;
33588
- height: 100%;
33589
- padding: 8px;
33590
33630
  }
33591
- .E_tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content > span,
33592
- .E_tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content > span {
33593
- overflow: hidden;
33594
- text-overflow: ellipsis;
33595
- width: 100%;
33631
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date.checked {
33632
+ background: #0080ff;
33633
+ color: #fff;
33596
33634
  }
33597
- .E_tfzf37v .ant-table-container {
33598
- height: 100%;
33635
+ .E_crprfvb ul .month-container .dates-in-month .date-block > .date.disabled {
33636
+ cursor: not-allowed;
33637
+ border-color: transparent;
33638
+ background: #e4e9f2;
33639
+ color: rgba(107, 128, 167, 0.6);
33599
33640
  }
33600
- .E_tfzf37v .ant-table-container::before, .E_tfzf37v .ant-table-container::after {
33601
- box-shadow: none !important;
33641
+
33642
+ .E_ipbxcfl {
33643
+ display: inline-flex;
33644
+ flex-direction: column;
33645
+ align-items: flex-start;
33602
33646
  }
33603
- .E_tfzf37v .ant-table {
33604
- border-radius: 0px;
33605
- border-left: none;
33606
- border-right: none;
33607
- border-bottom: none;
33608
- height: 100%;
33609
- font-size: 12px;
33610
- background: transparent;
33647
+ .E_ipbxcfl .input-time {
33648
+ flex-shrink: 0;
33649
+ display: inline-flex;
33650
+ align-items: center;
33651
+ border: 1px solid #e4e9f2;
33652
+ transition: all 0.1s ease-in-out;
33653
+ padding: 4px 8px;
33654
+ background: #fff;
33655
+ border-radius: 5px;
33611
33656
  }
33612
- .E_tfzf37v .ant-table .ant-table-header {
33613
- position: relative;
33614
- z-index: 3;
33615
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33616
- margin-bottom: -1px;
33657
+ .E_ipbxcfl .input-time.focus {
33658
+ border-color: #0080ff;
33659
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
33617
33660
  }
33618
- .E_tfzf37v .ant-table .time-wrapper .date,
33619
- .E_tfzf37v .ant-table .value {
33620
- color: #2d3a56;
33661
+ .E_ipbxcfl .input-time.error {
33662
+ border-color: #f0483e;
33621
33663
  }
33622
- .E_tfzf37v .ant-table .time-wrapper .time,
33623
- .E_tfzf37v .ant-table .unit {
33624
- color: rgba(44, 56, 82, 0.6);
33664
+ .E_ipbxcfl .input-time.error.focus {
33665
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.2);
33625
33666
  }
33626
- .E_tfzf37v .ant-table .ant-table-selection {
33627
- position: unset;
33667
+ .E_ipbxcfl .input-time input {
33668
+ font-family: "Inter";
33669
+ font-style: normal;
33670
+ font-weight: 400;
33671
+ font-size: 13px;
33672
+ line-height: 20px;
33673
+ border: none;
33674
+ outline: none;
33675
+ width: 23px;
33676
+ height: 20px;
33628
33677
  text-align: center;
33678
+ padding: 0;
33679
+ color: #00122e;
33629
33680
  }
33630
- .E_tfzf37v .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
33631
- background: #fff;
33632
- }
33633
- .E_tfzf37v .ant-table .anticon-setting {
33634
- cursor: pointer;
33635
- position: absolute;
33636
- top: 50%;
33637
- right: 12px;
33638
- transform: translateY(-50%);
33681
+ .E_ipbxcfl .input-time input::placeholder {
33682
+ color: rgba(0, 21, 64, 0.3);
33639
33683
  }
33640
- .E_tfzf37v .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
33641
- box-shadow: none;
33642
- width: 1px;
33643
- background: rgba(213, 219, 227, 0.6);
33684
+ .E_ipbxcfl .input-time input:disabled {
33685
+ background: inherit;
33644
33686
  }
33645
- .E_tfzf37v .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
33646
- box-shadow: none;
33647
- width: 1px;
33648
- background: rgba(213, 219, 227, 0.6);
33687
+ .E_ipbxcfl .input-time input:focus, .E_ipbxcfl .input-time input:active {
33688
+ border: none;
33689
+ outline: none;
33649
33690
  }
33650
- .E_tfzf37v .ant-table .ant-table-tbody {
33651
- position: relative;
33691
+ .E_ipbxcfl .input-time .connect-symbol {
33692
+ margin: 0 2px;
33693
+ color: rgba(0, 21, 64, 0.3);
33652
33694
  }
33653
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td {
33654
- border-top: 1px solid rgba(211, 218, 235, 0.6);
33655
- border-bottom: 1px solid white;
33656
- height: 40px;
33657
- vertical-align: middle;
33658
- transition: background 0ms;
33695
+ .E_ipbxcfl .input-time .connect-symbol.inputted {
33659
33696
  color: #00122e;
33660
33697
  }
33661
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.header-hover {
33662
- background: #f2f5fa;
33663
- border-bottom-color: #f2f5fa;
33698
+ .E_ipbxcfl .error-message {
33699
+ color: #f0483e;
33700
+ margin-top: 4px;
33664
33701
  }
33665
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
33666
- height: auto;
33667
- color: #00122e;
33668
- font-size: 12px;
33669
- text-align: left;
33670
- transition: none;
33671
- overflow: hidden;
33672
- text-overflow: ellipsis;
33673
- white-space: nowrap;
33702
+
33703
+ .E_a120uq8m {
33704
+ width: 100%;
33705
+ height: 100%;
33706
+ display: flex;
33707
+ flex-direction: column;
33674
33708
  }
33675
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
33676
- color: #0096ff;
33709
+ .E_a120uq8m .date-range-picker-calendar {
33710
+ flex: 1;
33677
33711
  }
33678
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
33679
- overflow: hidden;
33680
- text-overflow: ellipsis;
33681
- width: 100%;
33682
- vertical-align: middle;
33712
+
33713
+ .E_a15s9m0d {
33714
+ padding: 8px 12px;
33715
+ box-shadow: inset 0px 1px 0px rgba(211, 218, 235, 0.3);
33683
33716
  }
33684
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.cell_status {
33685
- line-height: 0px;
33717
+ .E_a15s9m0d .time-input-main {
33718
+ display: flex;
33719
+ justify-content: space-between;
33720
+ align-items: flex-end;
33686
33721
  }
33687
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.align-right {
33688
- padding-right: 25px;
33722
+ .E_a15s9m0d .time-input-main .time-input-container {
33723
+ display: flex;
33724
+ align-items: flex-end;
33725
+ gap: 8px;
33689
33726
  }
33690
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
33691
- border-top-color: transparent;
33727
+ .E_a15s9m0d .time-input-main .time-input-container .start-time,
33728
+ .E_a15s9m0d .time-input-main .time-input-container .end-time,
33729
+ .E_a15s9m0d .time-input-main .time-input-container .to {
33730
+ color: rgba(44, 56, 82, 0.6);
33692
33731
  }
33693
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td {
33694
- background: rgba(225, 230, 241, 0.6);
33695
- border-color: transparent transparent white;
33732
+ .E_a15s9m0d .time-input-main .time-input-container .start-time p,
33733
+ .E_a15s9m0d .time-input-main .time-input-container .end-time p,
33734
+ .E_a15s9m0d .time-input-main .time-input-container .to p {
33735
+ margin: 0;
33696
33736
  }
33697
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
33698
- border-radius: 8px 0 0 8px;
33737
+ .E_a15s9m0d .time-input-main .time-input-container .start-time.validate-failed,
33738
+ .E_a15s9m0d .time-input-main .time-input-container .to.validate-failed {
33739
+ padding-bottom: 18px;
33699
33740
  }
33700
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
33701
- border-radius: 8px 0 0 8px;
33741
+ .E_a15s9m0d .time-input-main .time-input-container .to {
33742
+ line-height: 34px;
33702
33743
  }
33703
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
33704
- content: "";
33705
- width: 4px;
33706
- top: -1px;
33707
- bottom: -1px;
33708
- background: white;
33744
+ .E_a15s9m0d .time-input-main .time-input-container .input-time {
33745
+ height: 32px;
33746
+ padding: 6px 3px;
33709
33747
  }
33710
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
33711
- border-radius: 0 8px 8px 0;
33748
+ .E_a15s9m0d .time-input-main .ant-btn.validate-failed {
33749
+ margin-bottom: 18px;
33712
33750
  }
33713
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
33714
- border-radius: 0;
33715
- background: white;
33716
- border-top: none;
33751
+ .E_a15s9m0d .time-input-error {
33752
+ color: #f0483e;
33717
33753
  }
33718
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
33719
- border-top: 1px solid transparent;
33720
- border-radius: 0 8px 8px 0;
33721
- background: rgba(225, 230, 241, 0.6);
33754
+
33755
+ .E_r5hl59d {
33756
+ min-width: 162px;
33722
33757
  }
33723
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
33724
- background: white;
33725
- border-top: 1px solid rgba(211, 218, 235, 0.6);
33758
+ .E_r5hl59d .ant-input-affix-wrapper {
33759
+ width: 100% !important;
33760
+ border-width: 0 0 1px 0 !important;
33761
+ border-color: rgba(211, 218, 235, 0.6);
33762
+ border-radius: 0;
33726
33763
  }
33727
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
33728
- display: flex;
33729
- align-items: center;
33730
- height: 100%;
33731
- background: rgba(225, 230, 241, 0.6);
33764
+ .E_r5hl59d .ant-input-affix-wrapper + .past-time-list {
33765
+ margin-top: 8px;
33732
33766
  }
33733
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
33734
- background: white;
33735
- border-top: 1px solid rgba(211, 218, 235, 0.6);
33767
+ .E_r5hl59d .past-time-list {
33768
+ list-style: none;
33769
+ padding: 0;
33770
+ margin-top: 12px;
33736
33771
  }
33737
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
33738
- display: flex;
33739
- align-items: center;
33740
- height: 100%;
33741
- background: rgba(225, 230, 241, 0.6);
33772
+ .E_r5hl59d .past-time-list li {
33773
+ padding: 5px 8px;
33774
+ border-radius: 5px;
33775
+ transition: all 0.2s ease-in-out;
33776
+ cursor: pointer;
33742
33777
  }
33743
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:last-child td {
33744
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33778
+ .E_r5hl59d .past-time-list li:hover {
33779
+ background: rgba(0, 136, 255, 0.16);
33780
+ color: #0080ff;
33745
33781
  }
33746
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row {
33747
- box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
33748
- border-radius: 8px;
33782
+ .E_r5hl59d .past-time-list li:active {
33783
+ background: rgba(0, 136, 255, 0.2);
33784
+ color: #0080ff;
33749
33785
  }
33750
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
33751
- border-top-color: white;
33786
+ .E_r5hl59d .past-time-list li.selected {
33787
+ background: rgba(0, 136, 255, 0.2);
33788
+ color: #0080ff;
33752
33789
  }
33753
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td {
33754
- background: rgba(0, 136, 255, 0.1);
33755
- border-bottom-color: transparent;
33756
- border-top-color: transparent;
33790
+ .E_r5hl59d .past-time-list li.selected .highlight {
33791
+ color: #0080ff;
33757
33792
  }
33758
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
33759
- border-radius: 8px 0 0 8px;
33793
+ .E_r5hl59d .past-time-list li.disabled {
33794
+ background: rgba(237, 241, 250, 0.6);
33795
+ color: rgba(0, 21, 64, 0.3);
33796
+ cursor: not-allowed;
33760
33797
  }
33761
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
33762
- border-radius: 0 8px 8px 0;
33798
+ .E_r5hl59d .past-time-list li + li {
33799
+ margin-top: 2px;
33763
33800
  }
33764
- .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
33765
- background: rgba(0, 136, 255, 0.1);
33801
+
33802
+ .E_dhqt3dw {
33803
+ min-width: 392px;
33766
33804
  }
33767
- .E_tfzf37v .ant-table .ant-table-thead > tr > th {
33805
+ .E_dhqt3dw.date-range-picker {
33806
+ display: inline-flex;
33807
+ align-items: center;
33808
+ gap: 8px;
33768
33809
  background: #fff;
33769
- font-weight: 400;
33770
- position: relative;
33771
- border-bottom: none;
33772
- color: #00122e;
33773
- transition: none;
33774
- padding: 15px 8px 15px 8px;
33810
+ border-radius: 5px;
33811
+ border: 1px solid #e4e9f2;
33812
+ transition: all 0.2s ease-in-out;
33775
33813
  }
33776
- .E_tfzf37v .ant-table .ant-table-thead > tr > th:not(:last-child):after {
33777
- content: "";
33778
- width: 1px;
33779
- top: 0;
33780
- bottom: 0;
33781
- background: rgba(211, 218, 235, 0.6);
33782
- position: absolute;
33783
- right: 0;
33814
+ .E_dhqt3dw.date-range-picker .default-calendar-icon {
33815
+ display: inline-flex;
33784
33816
  }
33785
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank {
33786
- padding: unset;
33817
+ .E_dhqt3dw.date-range-picker .hover-calendar-icon {
33818
+ display: none;
33787
33819
  }
33788
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank:after {
33820
+ .E_dhqt3dw.date-range-picker:hover, .E_dhqt3dw.date-range-picker.active {
33821
+ border-color: #0080ff;
33822
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
33823
+ }
33824
+ .E_dhqt3dw.date-range-picker:hover .default-calendar-icon, .E_dhqt3dw.date-range-picker.active .default-calendar-icon {
33789
33825
  display: none;
33790
33826
  }
33791
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
33792
- width: 100%;
33793
- overflow: hidden;
33794
- white-space: nowrap;
33795
- text-overflow: ellipsis;
33827
+ .E_dhqt3dw.date-range-picker:hover .hover-calendar-icon, .E_dhqt3dw.date-range-picker.active .hover-calendar-icon {
33828
+ display: inline-flex;
33796
33829
  }
33797
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
33798
- overflow: hidden;
33799
- text-overflow: ellipsis;
33830
+ .E_dhqt3dw.date-range-picker.large {
33831
+ height: 40px;
33832
+ line-height: 40px;
33833
+ padding: 0 12px 0 16px;
33834
+ }
33835
+ .E_dhqt3dw.date-range-picker.medium {
33836
+ height: 32px;
33837
+ line-height: 32px;
33838
+ padding: 0 8px 0 12px;
33839
+ }
33840
+ .E_dhqt3dw.date-range-picker .date-input-content {
33800
33841
  flex: 1;
33842
+ display: flex;
33843
+ align-items: center;
33844
+ gap: 8px;
33845
+ color: #00122e;
33801
33846
  }
33802
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
33803
- padding: 15px 25px 15px 8px;
33847
+ .E_dhqt3dw.date-range-picker .date-input-content .concat-symbol-block {
33848
+ color: rgba(0, 21, 64, 0.3);
33804
33849
  }
33805
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
33850
+ .E_dhqt3dw.date-range-picker .date-input-content input {
33851
+ border: none;
33852
+ outline: none;
33853
+ width: 162px;
33806
33854
  padding: 0;
33855
+ height: 22px;
33856
+ line-height: 22px;
33857
+ text-align: center;
33807
33858
  }
33808
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
33809
- position: absolute;
33810
- right: 6px;
33811
- top: 50%;
33812
- transform: translateY(-50%);
33813
- height: 16px;
33814
- display: none;
33815
- transition: transform 320ms ease;
33859
+ .E_dhqt3dw.date-range-picker .date-input-content input::placeholder {
33860
+ color: rgba(0, 21, 64, 0.3);
33861
+ text-align: center;
33816
33862
  }
33817
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
33818
- display: block;
33819
- transform: translateY(-50%) rotateX(180deg);
33863
+ .E_dhqt3dw.date-range-picker .date-input-content input:disabled {
33864
+ background: inherit;
33820
33865
  }
33821
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
33822
- display: block;
33866
+ .E_dhqt3dw.date-range-picker .date-input-content input:hover, .E_dhqt3dw.date-range-picker .date-input-content input:focus, .E_dhqt3dw.date-range-picker .date-input-content input:active {
33867
+ border: none;
33868
+ outline: none;
33869
+ box-shadow: none;
33823
33870
  }
33824
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
33825
- display: none;
33871
+ .E_dhqt3dw.date-range-picker .past-time-icon {
33872
+ cursor: pointer;
33826
33873
  }
33827
- .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
33828
- transform: translateY(-50%);
33874
+
33875
+ .E_d956d92 .ant-popover-inner-content .tab-menu .tab-bar {
33876
+ padding: 12px 12px 0 12px;
33829
33877
  }
33830
- .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
33831
- transform: translateY(-50%) rotateX(180deg);
33878
+ .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item-medium.tab-menu-item:first-child {
33879
+ padding-left: 16px;
33832
33880
  }
33833
- .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
33834
- background: #f2f5fa;
33881
+ .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item {
33882
+ margin-right: 0;
33835
33883
  }
33836
- .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
33837
- display: block;
33884
+ .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item + .tab-menu-item {
33885
+ margin-left: 2px;
33838
33886
  }
33839
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.align-right {
33840
- padding-right: 25px;
33887
+ .E_d956d92 .ant-popover-inner-content .relative-time-container {
33888
+ max-height: 470px;
33889
+ overflow: auto;
33841
33890
  }
33842
- .E_tfzf37v .ant-table .ant-table-selection-column {
33843
- padding: 0 !important;
33891
+ .E_d956d92 .ant-popover-inner-content .relative-time-container ul {
33892
+ padding: 0 12px;
33844
33893
  }
33845
- .E_tfzf37v .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
33846
- position: absolute;
33847
- left: 50%;
33848
- top: 50%;
33849
- transform: translate(-50%, -50%);
33894
+ .E_d956d92 .ant-popover-inner-content .absolute-time-container {
33895
+ height: 470px;
33896
+ overflow: auto;
33850
33897
  }
33851
- .E_tfzf37v .ant-table .ant-table-selection-column:after {
33852
- display: none;
33898
+
33899
+ .E_d1tc7lgk {
33900
+ min-width: 200px;
33853
33901
  }
33854
- .E_tfzf37v .ant-table .ant-table-hide-scrollbar {
33855
- background: #fff;
33902
+ .E_d1tc7lgk header {
33903
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33904
+ padding: 8px 12px;
33905
+ color: rgba(44, 56, 82, 0.6);
33856
33906
  }
33857
- .E_tfzf37v .ant-table .ant-table-placeholder {
33858
- background: inherit;
33907
+ .E_d1tc7lgk ul {
33908
+ list-style: none;
33909
+ padding: 12px;
33859
33910
  }
33860
- .E_tfzf37v .ant-table .ant-table-placeholder td {
33861
- position: static;
33862
- border: none;
33863
- background: inherit !important;
33864
- height: 100px;
33865
- vertical-align: middle;
33911
+ .E_d1tc7lgk ul li {
33912
+ padding: 5px 8px;
33913
+ border-radius: 5px;
33914
+ transition: all 0.2s ease-in-out;
33915
+ cursor: pointer;
33866
33916
  }
33867
- .E_tfzf37v .ant-table .ant-table-placeholder .table-default-empty,
33868
- .E_tfzf37v .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
33869
- font-weight: bold;
33870
- font-size: 20px;
33871
- color: rgba(10, 37, 85, 0.6);
33917
+ .E_d1tc7lgk ul li:hover {
33918
+ background: rgba(0, 136, 255, 0.16);
33919
+ color: #0080ff;
33872
33920
  }
33873
- .E_tfzf37v .ant-table th.ant-table-cell-scrollbar,
33874
- .E_tfzf37v .ant-table th.cell__action_ {
33875
- z-index: 10;
33921
+ .E_d1tc7lgk ul li:active {
33922
+ background: rgba(0, 136, 255, 0.2);
33923
+ color: #0080ff;
33876
33924
  }
33877
- .E_tfzf37v .ant-table td.cell__action_ {
33878
- padding: 0 !important;
33879
- position: relative;
33880
- background: #fff;
33925
+ .E_d1tc7lgk ul li + li {
33926
+ margin-top: 2px;
33881
33927
  }
33882
- .E_tfzf37v .ant-table td.cell__action_ > * {
33883
- height: 100%;
33884
- display: flex;
33885
- align-items: center;
33886
- justify-content: flex-end;
33887
- padding-right: 8px;
33928
+
33929
+ .E_rzaik16 {
33930
+ padding: 0;
33888
33931
  }
33889
- .E_tfzf37v .ant-table td.cell__action_ .menu-button {
33890
- width: 24px;
33891
- height: 24px;
33892
- cursor: pointer;
33893
- justify-content: center;
33894
- border-radius: 4px;
33932
+ .E_rzaik16 .ant-popover-arrow {
33933
+ display: none;
33895
33934
  }
33896
- .E_tfzf37v .ant-table td.cell__action_ .menu-button:hover {
33897
- background: #fff;
33935
+ .E_rzaik16 .ant-popover-inner-content {
33936
+ padding: 0;
33898
33937
  }
33899
33938
 
33900
33939
  button.E_l48ei06.ant-btn {
@@ -33994,60 +34033,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33994
34033
  width: 16px;
33995
34034
  }
33996
34035
  .E_t13ef470 .table-loading-item .td-loading {
33997
- flex: 1;
33998
- }
33999
- .E_t13ef470 :nth-child(1) {
34000
- padding: 8px 4px;
34001
- }
34002
- .E_t13ef470 :nth-child(1) > * {
34003
- background: rgba(107, 125, 153, 0.18);
34004
- }
34005
- .E_t13ef470 :nth-child(1) > * {
34006
- background: rgba(163, 180, 204, 0.18);
34007
- }
34008
-
34009
- .E_c1kghdax {
34010
- color: #2d3a56;
34011
- padding: 7px 12px;
34012
- display: flex;
34013
- justify-content: space-between;
34014
- align-items: center;
34015
- }
34016
- .E_c1kghdax.has-arrow {
34017
- padding-left: 10px;
34018
- }
34019
- .E_c1kghdax.has-arrow .title-wrapper {
34020
- cursor: pointer;
34021
- color: #00122e;
34022
- }
34023
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
34024
- color: #2d3a56;
34025
- font-weight: 600;
34026
- }
34027
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34028
- transform: rotate(90deg);
34029
- }
34030
- .E_c1kghdax .sub-info {
34031
- font-size: 12px;
34032
- line-height: 18px;
34036
+ flex: 1;
34033
34037
  }
34034
- .E_c1kghdax .title-wrapper {
34035
- display: flex;
34036
- align-items: center;
34037
- user-select: none;
34038
- flex-grow: 1;
34039
- font-size: 12px;
34040
- line-height: 18px;
34041
- color: #2d3a56;
34042
- font-weight: 700;
34038
+ .E_t13ef470 :nth-child(1) {
34039
+ padding: 8px 4px;
34043
34040
  }
34044
- .E_c1kghdax .collapse-arrow {
34045
- transition: all 50ms ease-out 0ms;
34046
- margin-right: 2px;
34041
+ .E_t13ef470 :nth-child(1) > * {
34042
+ background: rgba(107, 125, 153, 0.18);
34047
34043
  }
34048
-
34049
- .E_c1yd35n {
34050
- padding: 0 12px 14px 12px;
34044
+ .E_t13ef470 :nth-child(1) > * {
34045
+ background: rgba(163, 180, 204, 0.18);
34051
34046
  }
34052
34047
 
34053
34048
  .E_ckui4s7 {
@@ -34114,6 +34109,50 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34114
34109
  margin-left: 24px;
34115
34110
  }
34116
34111
 
34112
+ .E_c1kghdax {
34113
+ color: #2d3a56;
34114
+ padding: 7px 12px;
34115
+ display: flex;
34116
+ justify-content: space-between;
34117
+ align-items: center;
34118
+ }
34119
+ .E_c1kghdax.has-arrow {
34120
+ padding-left: 10px;
34121
+ }
34122
+ .E_c1kghdax.has-arrow .title-wrapper {
34123
+ cursor: pointer;
34124
+ color: #00122e;
34125
+ }
34126
+ .E_c1kghdax.has-arrow .title-wrapper.is-open {
34127
+ color: #2d3a56;
34128
+ font-weight: 600;
34129
+ }
34130
+ .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34131
+ transform: rotate(90deg);
34132
+ }
34133
+ .E_c1kghdax .sub-info {
34134
+ font-size: 12px;
34135
+ line-height: 18px;
34136
+ }
34137
+ .E_c1kghdax .title-wrapper {
34138
+ display: flex;
34139
+ align-items: center;
34140
+ user-select: none;
34141
+ flex-grow: 1;
34142
+ font-size: 12px;
34143
+ line-height: 18px;
34144
+ color: #2d3a56;
34145
+ font-weight: 700;
34146
+ }
34147
+ .E_c1kghdax .collapse-arrow {
34148
+ transition: all 50ms ease-out 0ms;
34149
+ margin-right: 2px;
34150
+ }
34151
+
34152
+ .E_c1yd35n {
34153
+ padding: 0 12px 14px 12px;
34154
+ }
34155
+
34117
34156
  .E_b14q2gmw {
34118
34157
  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);
34119
34158
  }
@@ -34131,6 +34170,199 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34131
34170
  transform: translateY(-4px);
34132
34171
  }
34133
34172
 
34173
+ .E_t1dtlqs1 {
34174
+ margin-bottom: 4px;
34175
+ color: rgba(44, 56, 82, 0.6);
34176
+ overflow: hidden;
34177
+ text-overflow: ellipsis;
34178
+ white-space: nowrap;
34179
+ }
34180
+
34181
+ .E_s1ese5oy {
34182
+ color: rgba(44, 56, 82, 0.6);
34183
+ line-height: 32px;
34184
+ height: 32px;
34185
+ margin-bottom: 0;
34186
+ }
34187
+ .E_s1ese5oy.primary, .E_s1ese5oy.info {
34188
+ color: #0080ff;
34189
+ }
34190
+ .E_s1ese5oy.warning {
34191
+ color: #ffa500;
34192
+ }
34193
+ .E_s1ese5oy.success {
34194
+ color: #00ba5d;
34195
+ }
34196
+ .E_s1ese5oy.danger, .E_s1ese5oy.error {
34197
+ color: #f0483e;
34198
+ }
34199
+ .E_s1ese5oy.normal {
34200
+ color: rgba(44, 56, 82, 0.6);
34201
+ }
34202
+
34203
+ .E_b1ibis43 {
34204
+ margin-bottom: 0;
34205
+ color: #00122e;
34206
+ }
34207
+
34208
+ .E_b11xxjd2 {
34209
+ line-height: 32px;
34210
+ margin-right: 6px;
34211
+ }
34212
+
34213
+ .E_bsub5bw.with-description {
34214
+ height: 24px;
34215
+ flex: 1;
34216
+ position: relative;
34217
+ top: -7px;
34218
+ }
34219
+ .E_bsub5bw p {
34220
+ width: 100%;
34221
+ overflow: hidden;
34222
+ text-overflow: ellipsis;
34223
+ white-space: nowrap;
34224
+ }
34225
+
34226
+ .E_tmoyoag {
34227
+ border: 1px solid rgba(211, 218, 235, 0.6);
34228
+ border-radius: 8px;
34229
+ overflow: auto;
34230
+ }
34231
+ .E_tmoyoag .ant-list {
34232
+ position: relative;
34233
+ }
34234
+ .E_tmoyoag .ant-list .eagle-table-form-header {
34235
+ position: sticky;
34236
+ top: 0;
34237
+ z-index: 2;
34238
+ display: flex;
34239
+ padding: 8px;
34240
+ flex-wrap: nowrap;
34241
+ justify-content: flex-start;
34242
+ background: #f2f5fa;
34243
+ font-size: 14px;
34244
+ color: rgba(44, 56, 82, 0.6);
34245
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34246
+ }
34247
+ .E_tmoyoag .ant-list .eagle-table-form-header {
34248
+ align-items: inherit;
34249
+ }
34250
+ .E_tmoyoag .ant-list .eagle-table-form-row {
34251
+ display: flex;
34252
+ justify-content: flex-start;
34253
+ align-items: flex-start;
34254
+ flex-wrap: wrap;
34255
+ padding: 8px;
34256
+ border: none;
34257
+ }
34258
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
34259
+ flex-basis: 100%;
34260
+ margin: 12px 0 0;
34261
+ order: 99;
34262
+ color: rgba(44, 56, 82, 0.6);
34263
+ }
34264
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
34265
+ color: #f0483e;
34266
+ flex-basis: 100%;
34267
+ order: 98;
34268
+ margin: 12px 0 0;
34269
+ }
34270
+ .E_tmoyoag .ant-list .eagle-table-form-row:hover {
34271
+ background-color: rgba(237, 241, 250, 0.6);
34272
+ }
34273
+ .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
34274
+ background-color: rgba(0, 136, 255, 0.1);
34275
+ }
34276
+ .E_tmoyoag .ant-list .eagle-table-form-cell {
34277
+ flex: 1 0 0;
34278
+ overflow: hidden;
34279
+ }
34280
+ .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
34281
+ color: rgba(44, 56, 82, 0.6);
34282
+ margin: 0;
34283
+ }
34284
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
34285
+ text-align: center;
34286
+ }
34287
+ .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 > * {
34288
+ text-align: center;
34289
+ }
34290
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
34291
+ text-align: left;
34292
+ }
34293
+ .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 > * {
34294
+ text-align: left;
34295
+ }
34296
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
34297
+ text-align: right;
34298
+ }
34299
+ .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 > * {
34300
+ text-align: right;
34301
+ }
34302
+ .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
34303
+ margin-right: 8px;
34304
+ }
34305
+ .E_tmoyoag .ant-list .ant-list-item-action {
34306
+ padding: 4px;
34307
+ width: 24px;
34308
+ height: 24px;
34309
+ overflow: hidden;
34310
+ }
34311
+ .E_tmoyoag .ant-list .ant-list-item-action li {
34312
+ padding: 0;
34313
+ }
34314
+ .E_tmoyoag .ant-list .delete-row-icon.disabled {
34315
+ cursor: not-allowed;
34316
+ opacity: 0.5;
34317
+ }
34318
+ .E_tmoyoag .ant-list.size-default .ant-list-item-action {
34319
+ margin: 0;
34320
+ }
34321
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
34322
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
34323
+ border-radius: 5px;
34324
+ font-size: 12px;
34325
+ }
34326
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
34327
+ font-size: inherit;
34328
+ }
34329
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
34330
+ min-height: 24px;
34331
+ font-size: 12px;
34332
+ position: relative;
34333
+ }
34334
+ .E_tmoyoag.row-split-by-border .eagle-table-form-row {
34335
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34336
+ }
34337
+ .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
34338
+ background-color: rgba(237, 241, 250, 0.6);
34339
+ }
34340
+
34341
+ .E_a138syjm {
34342
+ display: flex;
34343
+ align-items: center;
34344
+ margin-top: 8px;
34345
+ }
34346
+ .E_a138syjm button.ant-btn {
34347
+ padding: 2px 8px;
34348
+ height: 24px;
34349
+ }
34350
+ .E_a138syjm > span.maximum-desc {
34351
+ display: none;
34352
+ margin-left: 8px;
34353
+ color: rgba(44, 56, 82, 0.6);
34354
+ }
34355
+ .E_a138syjm > span.maximum-desc.disabled {
34356
+ display: inline;
34357
+ }
34358
+
34359
+ .E_d77i8u0 {
34360
+ width: 24px;
34361
+ height: 24px;
34362
+ padding: 4px;
34363
+ margin-right: 8px;
34364
+ }
34365
+
34134
34366
  .E_w7ob4th.outside-tag {
34135
34367
  padding-left: 0;
34136
34368
  }
@@ -34145,6 +34377,35 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34145
34377
  height: 16px;
34146
34378
  }
34147
34379
 
34380
+ .E_slr2ynn {
34381
+ padding: 0 8px;
34382
+ height: 18px;
34383
+ }
34384
+
34385
+ .E_m140wbb6 {
34386
+ padding: 2px 8px;
34387
+ height: 24px;
34388
+ }
34389
+
34390
+ .E_t1fozc1i {
34391
+ margin: 0;
34392
+ }
34393
+
34394
+ .E_i1vxv4ln {
34395
+ margin-right: 4px;
34396
+ height: 16px;
34397
+ }
34398
+
34399
+ .E_n1afl31m.ant-tag.ant-tag-gray {
34400
+ font-weight: 700;
34401
+ color: #00122e;
34402
+ background-color: rgba(237, 241, 250, 0.6);
34403
+ border: 1px solid rgba(211, 218, 235, 0.6);
34404
+ word-break: break-all;
34405
+ display: inline;
34406
+ white-space: normal;
34407
+ }
34408
+
34148
34409
  .E_t160l1cm {
34149
34410
  display: flex;
34150
34411
  flex-direction: column;
@@ -34205,369 +34466,147 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34205
34466
  .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
34206
34467
  background: rgba(0, 128, 255, 0.16);
34207
34468
  }
34208
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
34209
- fill: #1d326c;
34210
- }
34211
- .E_t160l1cm .tab-menu-item .expand-arrow {
34212
- margin-left: 8px;
34213
- height: 22px;
34214
- }
34215
- .E_t160l1cm .tab-menu-item .expand-arrow path {
34216
- fill: rgba(44, 56, 82, 0.6);
34217
- }
34218
- .E_t160l1cm .tab-menu-item-group {
34219
- padding: 0;
34220
- display: flex;
34221
- align-items: center;
34222
- overflow: hidden;
34223
- }
34224
- .E_t160l1cm .tab-menu-item-group .main-title {
34225
- opacity: 0;
34226
- max-width: 0;
34227
- transition: max-width 320ms ease, opacity 240ms ease;
34228
- }
34229
- .E_t160l1cm .tab-menu-item-group .sub-title {
34230
- padding: 1px 12px;
34231
- position: relative;
34232
- display: flex;
34233
- }
34234
- .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
34235
- opacity: 0;
34236
- position: absolute;
34237
- top: 50%;
34238
- left: 0;
34239
- transform: translate(-50%, -50%);
34240
- transition: opacity 100ms linear;
34241
- fill: rgba(0, 128, 255, 0.2);
34242
- }
34243
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
34244
- color: #0080ff;
34245
- }
34246
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
34247
- padding: 1px 12px;
34248
- display: inline-block;
34249
- opacity: 1;
34250
- max-width: 160px;
34251
- }
34252
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
34253
- padding: 1px 12px;
34254
- color: #005ed1;
34255
- }
34256
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
34257
- opacity: 1;
34258
- }
34259
- .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 {
34260
- background: rgba(0, 128, 255, 0.16);
34261
- }
34262
- .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 {
34263
- opacity: 0;
34264
- }
34265
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
34266
- padding: 4px 16px;
34267
- height: 32px;
34268
- border-radius: 6px 6px 0 0;
34269
- }
34270
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
34271
- padding-left: 0;
34272
- }
34273
- .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 {
34274
- padding-left: 16px;
34275
- }
34276
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
34277
- margin-left: 11px;
34278
- height: 24px;
34279
- }
34280
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
34281
- padding: 0;
34282
- }
34283
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
34284
- padding: 4px 16px;
34285
- }
34286
- .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 {
34287
- padding: 4px 16px;
34288
- }
34289
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
34290
- background: #fff;
34291
- }
34292
- .E_t160l1cm .tab-menu-item-light:active {
34293
- color: #005ed1;
34294
- }
34295
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
34296
- background: #fff;
34297
- color: #1d326c;
34298
- }
34299
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
34300
- color: rgba(45, 58, 86, 0.6);
34301
- }
34302
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
34303
- color: #1d326c;
34304
- }
34305
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
34306
- fill: #d8deeb;
34307
- }
34308
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
34309
- fill: #1d326c;
34310
- }
34311
- .E_t160l1cm .tab-content {
34312
- flex: 1;
34313
- display: flex;
34314
- flex-direction: column;
34315
- }
34316
- .E_t160l1cm.is-overview .tab-content {
34317
- overflow: visible;
34318
- }
34319
-
34320
- .E_t14npdqr {
34321
- max-width: 240px;
34322
- animation: none;
34323
- }
34324
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
34325
- border: 1px solid #0080ff;
34326
- padding: 0;
34327
- }
34328
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
34329
- margin: 0;
34330
- height: 32px;
34331
- line-height: 32px;
34332
- font-size: 13px;
34333
- padding: 0 10px;
34334
- display: block;
34335
- overflow: hidden;
34336
- text-overflow: ellipsis;
34337
- white-space: nowrap;
34338
- }
34339
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
34340
- content: " ";
34341
- height: 1px;
34342
- width: calc(100% + 10px);
34343
- background: rgba(172, 186, 211, 0.6);
34344
- display: block;
34345
- }
34346
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
34347
- color: #0080ff;
34348
- background: transparent;
34349
- }
34350
-
34351
- .E_slr2ynn {
34352
- padding: 0 8px;
34353
- height: 18px;
34354
- }
34355
-
34356
- .E_m140wbb6 {
34357
- padding: 2px 8px;
34358
- height: 24px;
34359
- }
34360
-
34361
- .E_t1fozc1i {
34362
- margin: 0;
34363
- }
34364
-
34365
- .E_i1vxv4ln {
34366
- margin-right: 4px;
34367
- height: 16px;
34368
- }
34369
-
34370
- .E_n1afl31m.ant-tag.ant-tag-gray {
34371
- font-weight: 700;
34372
- color: #00122e;
34373
- background-color: rgba(237, 241, 250, 0.6);
34374
- border: 1px solid rgba(211, 218, 235, 0.6);
34375
- word-break: break-all;
34376
- display: inline;
34377
- white-space: normal;
34378
- }
34379
-
34380
- .E_t1dtlqs1 {
34381
- margin-bottom: 4px;
34382
- color: rgba(44, 56, 82, 0.6);
34383
- overflow: hidden;
34384
- text-overflow: ellipsis;
34385
- white-space: nowrap;
34386
- }
34387
-
34388
- .E_s1ese5oy {
34389
- color: rgba(44, 56, 82, 0.6);
34390
- line-height: 32px;
34391
- height: 32px;
34392
- margin-bottom: 0;
34393
- }
34394
- .E_s1ese5oy.primary, .E_s1ese5oy.info {
34395
- color: #0080ff;
34396
- }
34397
- .E_s1ese5oy.warning {
34398
- color: #ffa500;
34399
- }
34400
- .E_s1ese5oy.success {
34401
- color: #00ba5d;
34402
- }
34403
- .E_s1ese5oy.danger, .E_s1ese5oy.error {
34404
- color: #f0483e;
34405
- }
34406
- .E_s1ese5oy.normal {
34407
- color: rgba(44, 56, 82, 0.6);
34408
- }
34409
-
34410
- .E_b1ibis43 {
34411
- margin-bottom: 0;
34412
- color: #00122e;
34413
- }
34414
-
34415
- .E_b11xxjd2 {
34416
- line-height: 32px;
34417
- margin-right: 6px;
34418
- }
34419
-
34420
- .E_bsub5bw.with-description {
34421
- height: 24px;
34422
- flex: 1;
34423
- position: relative;
34424
- top: -7px;
34425
- }
34426
- .E_bsub5bw p {
34427
- width: 100%;
34428
- overflow: hidden;
34429
- text-overflow: ellipsis;
34430
- white-space: nowrap;
34431
- }
34432
-
34433
- .E_tmoyoag {
34434
- border: 1px solid rgba(211, 218, 235, 0.6);
34435
- border-radius: 8px;
34436
- overflow: auto;
34469
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
34470
+ fill: #1d326c;
34437
34471
  }
34438
- .E_tmoyoag .ant-list {
34439
- position: relative;
34472
+ .E_t160l1cm .tab-menu-item .expand-arrow {
34473
+ margin-left: 8px;
34474
+ height: 22px;
34440
34475
  }
34441
- .E_tmoyoag .ant-list .eagle-table-form-header {
34442
- position: sticky;
34443
- top: 0;
34444
- z-index: 2;
34476
+ .E_t160l1cm .tab-menu-item .expand-arrow path {
34477
+ fill: rgba(44, 56, 82, 0.6);
34478
+ }
34479
+ .E_t160l1cm .tab-menu-item-group {
34480
+ padding: 0;
34445
34481
  display: flex;
34446
- padding: 8px;
34447
- flex-wrap: nowrap;
34448
- justify-content: flex-start;
34449
- background: #f2f5fa;
34450
- font-size: 14px;
34451
- color: rgba(44, 56, 82, 0.6);
34452
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34482
+ align-items: center;
34483
+ overflow: hidden;
34453
34484
  }
34454
- .E_tmoyoag .ant-list .eagle-table-form-header {
34455
- align-items: inherit;
34485
+ .E_t160l1cm .tab-menu-item-group .main-title {
34486
+ opacity: 0;
34487
+ max-width: 0;
34488
+ transition: max-width 320ms ease, opacity 240ms ease;
34456
34489
  }
34457
- .E_tmoyoag .ant-list .eagle-table-form-row {
34490
+ .E_t160l1cm .tab-menu-item-group .sub-title {
34491
+ padding: 1px 12px;
34492
+ position: relative;
34458
34493
  display: flex;
34459
- justify-content: flex-start;
34460
- align-items: flex-start;
34461
- flex-wrap: wrap;
34462
- padding: 8px;
34463
- border: none;
34464
34494
  }
34465
- .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
34466
- flex-basis: 100%;
34467
- margin: 12px 0 0;
34468
- order: 99;
34469
- color: rgba(44, 56, 82, 0.6);
34495
+ .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
34496
+ opacity: 0;
34497
+ position: absolute;
34498
+ top: 50%;
34499
+ left: 0;
34500
+ transform: translate(-50%, -50%);
34501
+ transition: opacity 100ms linear;
34502
+ fill: rgba(0, 128, 255, 0.2);
34470
34503
  }
34471
- .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
34472
- color: #f0483e;
34473
- flex-basis: 100%;
34474
- order: 98;
34475
- margin: 12px 0 0;
34504
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
34505
+ color: #0080ff;
34476
34506
  }
34477
- .E_tmoyoag .ant-list .eagle-table-form-row:hover {
34478
- background-color: rgba(237, 241, 250, 0.6);
34507
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
34508
+ padding: 1px 12px;
34509
+ display: inline-block;
34510
+ opacity: 1;
34511
+ max-width: 160px;
34479
34512
  }
34480
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
34481
- background-color: rgba(0, 136, 255, 0.1);
34513
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
34514
+ padding: 1px 12px;
34515
+ color: #005ed1;
34482
34516
  }
34483
- .E_tmoyoag .ant-list .eagle-table-form-cell {
34484
- flex: 1 0 0;
34485
- overflow: hidden;
34517
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
34518
+ opacity: 1;
34486
34519
  }
34487
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
34488
- color: rgba(44, 56, 82, 0.6);
34489
- margin: 0;
34520
+ .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 {
34521
+ background: rgba(0, 128, 255, 0.16);
34490
34522
  }
34491
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
34492
- text-align: center;
34523
+ .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 {
34524
+ opacity: 0;
34493
34525
  }
34494
- .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 > * {
34495
- text-align: center;
34526
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
34527
+ padding: 4px 16px;
34528
+ height: 32px;
34529
+ border-radius: 6px 6px 0 0;
34496
34530
  }
34497
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
34498
- text-align: left;
34531
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
34532
+ padding-left: 0;
34499
34533
  }
34500
- .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 > * {
34501
- text-align: left;
34534
+ .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 {
34535
+ padding-left: 16px;
34502
34536
  }
34503
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
34504
- text-align: right;
34537
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
34538
+ margin-left: 11px;
34539
+ height: 24px;
34505
34540
  }
34506
- .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 > * {
34507
- text-align: right;
34541
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
34542
+ padding: 0;
34508
34543
  }
34509
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
34510
- margin-right: 8px;
34544
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
34545
+ padding: 4px 16px;
34511
34546
  }
34512
- .E_tmoyoag .ant-list .ant-list-item-action {
34513
- padding: 4px;
34514
- width: 24px;
34515
- height: 24px;
34516
- overflow: hidden;
34547
+ .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 {
34548
+ padding: 4px 16px;
34517
34549
  }
34518
- .E_tmoyoag .ant-list .ant-list-item-action li {
34519
- padding: 0;
34550
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
34551
+ background: #fff;
34520
34552
  }
34521
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
34522
- cursor: not-allowed;
34523
- opacity: 0.5;
34553
+ .E_t160l1cm .tab-menu-item-light:active {
34554
+ color: #005ed1;
34524
34555
  }
34525
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
34526
- margin: 0;
34556
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
34557
+ background: #fff;
34558
+ color: #1d326c;
34527
34559
  }
34528
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
34529
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
34530
- border-radius: 5px;
34531
- font-size: 12px;
34560
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
34561
+ color: rgba(45, 58, 86, 0.6);
34532
34562
  }
34533
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
34534
- font-size: inherit;
34563
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
34564
+ color: #1d326c;
34535
34565
  }
34536
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
34537
- min-height: 24px;
34538
- font-size: 12px;
34539
- position: relative;
34566
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
34567
+ fill: #d8deeb;
34540
34568
  }
34541
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
34542
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34569
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
34570
+ fill: #1d326c;
34543
34571
  }
34544
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
34545
- background-color: rgba(237, 241, 250, 0.6);
34572
+ .E_t160l1cm .tab-content {
34573
+ flex: 1;
34574
+ display: flex;
34575
+ flex-direction: column;
34576
+ }
34577
+ .E_t160l1cm.is-overview .tab-content {
34578
+ overflow: visible;
34546
34579
  }
34547
34580
 
34548
- .E_a138syjm {
34549
- display: flex;
34550
- align-items: center;
34551
- margin-top: 8px;
34581
+ .E_t14npdqr {
34582
+ max-width: 240px;
34583
+ animation: none;
34552
34584
  }
34553
- .E_a138syjm button.ant-btn {
34554
- padding: 2px 8px;
34555
- height: 24px;
34585
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
34586
+ border: 1px solid #0080ff;
34587
+ padding: 0;
34556
34588
  }
34557
- .E_a138syjm > span.maximum-desc {
34558
- display: none;
34559
- margin-left: 8px;
34560
- color: rgba(44, 56, 82, 0.6);
34589
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
34590
+ margin: 0;
34591
+ height: 32px;
34592
+ line-height: 32px;
34593
+ font-size: 13px;
34594
+ padding: 0 10px;
34595
+ display: block;
34596
+ overflow: hidden;
34597
+ text-overflow: ellipsis;
34598
+ white-space: nowrap;
34561
34599
  }
34562
- .E_a138syjm > span.maximum-desc.disabled {
34563
- display: inline;
34600
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
34601
+ content: " ";
34602
+ height: 1px;
34603
+ width: calc(100% + 10px);
34604
+ background: rgba(172, 186, 211, 0.6);
34605
+ display: block;
34564
34606
  }
34565
-
34566
- .E_d77i8u0 {
34567
- width: 24px;
34568
- height: 24px;
34569
- padding: 4px;
34570
- margin-right: 8px;
34607
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
34608
+ color: #0080ff;
34609
+ background: transparent;
34571
34610
  }
34572
34611
 
34573
34612
  .E_f7pxqmh {
@@ -34605,7 +34644,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34605
34644
  display: var(--ai7qkf2-0);
34606
34645
  }
34607
34646
  .E_ai7qkf2 .ant-input-number-input-wrap {
34608
- padding: 5px 12px;
34609
34647
  display: inline-flex;
34610
34648
  line-height: 1.5715;
34611
34649
  height: 100%;
@@ -34645,11 +34683,33 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34645
34683
  box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
34646
34684
  }
34647
34685
  .E_ai7qkf2 .ant-input-number-input {
34648
- padding: 0;
34649
- margin: 0;
34650
- height: auto;
34686
+ height: 30px;
34687
+ border: 1px;
34688
+ padding: 5px 12px;
34651
34689
  font-size: inherit;
34652
34690
  }
34691
+ .E_ai7qkf2.ant-input-number-lg input {
34692
+ height: 38px;
34693
+ border: 1px;
34694
+ padding: 8px 16px;
34695
+ }
34696
+ .E_ai7qkf2.ant-input-number-sm input {
34697
+ height: 22px;
34698
+ border: 1px;
34699
+ padding: 2px 8px;
34700
+ }
34701
+
34702
+ .E_i14c7jc8 {
34703
+ color: var(--i14c7jc8-0);
34704
+ }
34705
+
34706
+ .E_i1ibuolf {
34707
+ display: flex;
34708
+ align-items: center;
34709
+ column-gap: 4px;
34710
+ font-size: 12px;
34711
+ color: rgba(44, 56, 82, 0.7490196078);
34712
+ }
34653
34713
 
34654
34714
  .E_a1wfy30z .ant-input-number-handler-wrap {
34655
34715
  display: var(--a1wfy30z-0);
@@ -34699,4 +34759,35 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34699
34759
  }
34700
34760
  .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
34701
34761
  display: block;
34762
+ }
34763
+
34764
+ .E_d1u4ndxc {
34765
+ color: rgba(44, 56, 82, 0.7490196078);
34766
+ font-size: 12px;
34767
+ }
34768
+
34769
+ .E_f6xb0iv {
34770
+ min-width: 0;
34771
+ flex: 1;
34772
+ }
34773
+
34774
+ .E_b1dhu7ov.ant-progress {
34775
+ width: 220px;
34776
+ }
34777
+
34778
+ .E_p1as1j2z .ant-progress.ant-progress-status-active .ant-progress-bg::before {
34779
+ content: "";
34780
+ display: block;
34781
+ height: 8px;
34782
+ background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
34783
+ animation: loading 1600ms ease-out infinite;
34784
+ opacity: 1;
34785
+ }
34786
+ @keyframes loading {
34787
+ from {
34788
+ transform: translateX(-100%);
34789
+ }
34790
+ to {
34791
+ transform: translateX(100%);
34792
+ }
34702
34793
  }