@cloudtower/eagle 0.27.66 → 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 (45) 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 +2228 -2141
  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/styles/token/animation.d.ts +3 -0
  36. package/dist/src/styles/token/color.d.ts +3 -0
  37. package/dist/src/styles/token/index.d.ts +1 -0
  38. package/dist/src/utils/index.d.ts +1 -0
  39. package/dist/src/utils/isStringArr.d.ts +1 -0
  40. package/dist/stories/docs/core/Progress/Progress.stories.d.ts +24 -0
  41. package/dist/stories/docs/core/Progress/Progress.widgets.stories.d.ts +24 -0
  42. package/dist/stories/docs/core/Progress/RichProgress.stories.d.ts +37 -0
  43. package/dist/stories/docs/core/Progress/SimpleProgress.stories.d.ts +15 -0
  44. package/dist/style.css +1983 -1901
  45. 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;
@@ -30112,552 +30151,272 @@ 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_s1ebs0ra {
30173
- display: flex;
30174
- align-items: center;
30175
- justify-content: space-between;
30176
- background: #edf0f7;
30177
- padding: 8px 12px;
30178
- position: sticky;
30179
- top: 0;
30180
- z-index: 1;
30181
- margin-bottom: -52px;
30182
- }
30183
- .E_s1ebs0ra .select-total {
30184
- display: flex;
30185
- align-items: center;
30186
- font-weight: 700;
30187
- flex-shrink: 0;
30188
- }
30189
- .E_s1ebs0ra .select-total .icon-wrapper {
30190
- cursor: pointer;
30191
- margin-left: 8px;
30192
- width: 32px;
30193
- height: 32px;
30194
- border-radius: 50%;
30195
- justify-content: center;
30196
- }
30197
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
30198
- background: rgba(225, 230, 241, 0.6);
30199
- }
30200
- .E_s1ebs0ra .action-group {
30201
- flex: 1;
30202
- margin-left: 88px;
30203
- white-space: nowrap;
30204
- text-align: right;
30205
- position: relative;
30206
- padding: 4px 0;
30207
- margin-top: -4px;
30208
- overflow: hidden;
30209
- }
30210
- .E_s1ebs0ra .action-group .sub-menu-delete {
30211
- transform: translateY(-4px);
30212
- }
30213
- .E_s1ebs0ra .action-group button {
30214
- border: none;
30215
- }
30216
- .E_s1ebs0ra .action-group > *:not(:last-child) {
30217
- margin-right: 8px;
30218
- }
30219
- .E_s1ebs0ra .action-group > button:last-child {
30220
- margin-right: 4px;
30221
- }
30222
- .E_s1ebs0ra .action-group .more-btn {
30223
- cursor: pointer;
30224
- width: 32px;
30225
- height: 32px;
30226
- justify-content: center;
30227
- border-radius: 50%;
30228
- }
30229
- .E_s1ebs0ra .action-group .more-btn:hover {
30230
- background: #fff;
30250
+ .E_h1inmfq6 {
30251
+ font-family: Inter;
30252
+ font-style: normal;
30253
+ font-weight: normal;
30254
+ font-size: 12px;
30255
+ line-height: 18px;
30231
30256
  }
30232
30257
 
30233
- .E_s1dni7lo {
30234
- width: 430px !important;
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;
30235
30266
  }
30236
30267
 
30237
- .E_d1wwmmm5 .ant-select-item-group {
30238
- padding: 8px 16px;
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;
30239
30275
  line-height: 18px;
30240
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30241
- height: 34px;
30242
- min-height: 34px;
30243
- box-sizing: border-box;
30244
- margin-top: 8px;
30245
30276
  }
30246
30277
 
30247
- .E_o1ugr09p {
30248
- display: flex;
30249
- flex-direction: column;
30250
- margin: 1px 8px;
30251
- padding: 8px;
30252
- border-radius: 4px;
30253
- }
30254
- .E_o1ugr09p .selected-icon {
30255
- display: none;
30256
- }
30257
- .E_o1ugr09p.ant-select-item-option-grouped {
30258
- padding-left: 8px;
30259
- }
30260
- .E_o1ugr09p.ant-select-item-option-selected {
30261
- background-color: white;
30262
- }
30263
- .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
30264
- color: #0080ff;
30265
- }
30266
- .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
30267
- display: block;
30268
- }
30269
- .E_o1ugr09p.ant-select-item-option-active {
30270
- background: rgba(0, 136, 255, 0.16);
30271
- }
30272
- .E_o1ugr09p.ant-select-item-option-active .timezone-title {
30273
- color: #0080ff;
30274
- }
30275
- .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
30276
- background: rgba(0, 136, 255, 0.1);
30277
- color: #0080ff;
30278
- }
30279
-
30280
- .E_o1ifxsq4 {
30281
- display: flex;
30282
- justify-content: space-between;
30283
- height: 20px;
30284
- line-height: 20px;
30285
- }
30286
- .E_o1ifxsq4 .timezone-title {
30287
- color: #2d3a56;
30288
- overflow: hidden;
30289
- text-overflow: ellipsis;
30290
- }
30291
-
30292
- .E_o1zue7 {
30293
- display: flex;
30294
- justify-content: space-between;
30295
- color: rgba(44, 56, 82, 0.6);
30296
- height: 18px;
30297
- line-height: 18px;
30298
- margin-top: 2px;
30299
- }
30300
-
30301
- .E_tyfmlxg {
30302
- border: none;
30303
- margin-right: 0;
30304
- background: rgba(225, 230, 241, 0.6);
30305
- }
30306
-
30307
- .E_o18uybox {
30308
- pointer-events: none;
30309
- height: 32px;
30310
- width: 100%;
30311
- opacity: 0;
30312
- }
30313
-
30314
- .E_skwah65 {
30315
- height: 8px;
30316
- box-sizing: border-box;
30317
- border-radius: 2px;
30318
- background: #f5f7fa;
30319
- display: flex;
30320
- width: 100%;
30321
- overflow: hidden;
30322
- }
30323
- .E_skwah65 .stack-bar-item + .stack-bar-item {
30324
- margin-left: 1px;
30325
- }
30326
-
30327
- .E_s1dizucg.ant-switch {
30328
- min-width: 40px;
30329
- height: 24px;
30330
- background: rgba(172, 186, 211, 0.6);
30331
- overflow: hidden;
30332
- }
30333
- .E_s1dizucg.ant-switch:focus {
30334
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30335
- }
30336
- .E_s1dizucg.ant-switch-small {
30337
- min-width: 26px;
30338
- height: 16px;
30339
- }
30340
- .E_s1dizucg.ant-switch-large {
30341
- min-width: 52px;
30342
- height: 32px;
30343
- }
30344
- .E_s1dizucg.ant-switch .ant-switch-handle {
30345
- height: 20px;
30346
- width: 20px;
30347
- }
30348
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
30349
- border-radius: 10px;
30350
- transition-delay: 120ms;
30351
- }
30352
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
30353
- height: 14px;
30354
- width: 14px;
30355
- top: 1px;
30356
- left: 1px;
30357
- }
30358
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
30359
- height: 28px;
30360
- width: 28px;
30361
- }
30362
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30363
- border-radius: 14px;
30364
- }
30365
- .E_s1dizucg.ant-switch-checked {
30366
- background-color: #00ba5d;
30367
- }
30368
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30369
- left: calc(100% - 20px - 2px);
30370
- }
30371
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30372
- left: calc(100% - 14px - 1px);
30373
- }
30374
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30375
- left: calc(100% - 28px - 2px);
30376
- }
30377
-
30378
- .E_c1up6e3y {
30379
- margin-left: 5px;
30380
- }
30381
-
30382
- .E_owd0kml {
30383
- display: inline-block;
30384
- }
30385
-
30386
- .E_h1jsgezc {
30387
- visibility: hidden;
30388
- position: absolute;
30389
- }
30390
-
30391
- .E_iq1gosr {
30392
- display: inline-block;
30393
- }
30394
-
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;
30448
- line-height: 22px;
30449
- }
30450
-
30451
- .E_h1g0p5ob {
30452
- font-family: Inter;
30453
- font-style: normal;
30454
- font-weight: bold;
30455
- font-size: 16px;
30334
+ font-size: 14px;
30456
30335
  line-height: 22px;
30457
30336
  }
30458
30337
 
30459
- .E_hydo2ej {
30338
+ .E_l1jmp8r0 {
30460
30339
  font-family: Inter;
30461
30340
  font-style: normal;
30462
- font-weight: normal;
30463
- font-size: 16px;
30341
+ font-weight: 500;
30342
+ font-size: 14px;
30464
30343
  line-height: 22px;
30465
30344
  }
30466
30345
 
30467
- .E_h1hbuq0r {
30346
+ .E_lcnm221 {
30468
30347
  font-family: Inter;
30469
30348
  font-style: normal;
30470
30349
  font-weight: bold;
30471
30350
  font-size: 14px;
30472
- line-height: 20px;
30351
+ line-height: 22px;
30473
30352
  }
30474
30353
 
30475
- .E_h13bondg {
30354
+ .E_lu1z2n5 {
30476
30355
  font-family: Inter;
30477
30356
  font-style: normal;
30478
30357
  font-weight: normal;
30479
30358
  font-size: 14px;
30480
- line-height: 20px;
30359
+ line-height: 22px;
30481
30360
  }
30482
30361
 
30483
- .E_h1mhvdlx {
30362
+ .E_l1r59djn {
30484
30363
  font-family: Inter;
30485
30364
  font-style: normal;
30486
30365
  font-weight: bold;
30487
- font-size: 12px;
30488
- line-height: 18px;
30366
+ font-size: 14px;
30367
+ line-height: 22px;
30489
30368
  }
30490
30369
 
30491
- .E_h1inmfq6 {
30370
+ .E_ljm2911 {
30492
30371
  font-family: Inter;
30493
30372
  font-style: normal;
30494
30373
  font-weight: normal;
30495
- font-size: 12px;
30496
- line-height: 18px;
30374
+ text-transform: uppercase;
30375
+ font-feature-settings: "cpsp" on;
30376
+ font-size: 14px;
30377
+ line-height: 22px;
30497
30378
  }
30498
30379
 
30499
- .E_h1kfc0la {
30380
+ .E_l124mzmr {
30500
30381
  font-family: Inter;
30501
30382
  font-style: normal;
30502
30383
  font-weight: bold;
30503
30384
  text-transform: uppercase;
30504
30385
  font-feature-settings: "cpsp" on;
30505
- font-size: 12px;
30506
- line-height: 18px;
30386
+ font-size: 14px;
30387
+ line-height: 22px;
30507
30388
  }
30508
30389
 
30509
- .E_h10xnyuu {
30390
+ .E_lb3chel {
30510
30391
  font-family: Inter;
30511
30392
  font-style: normal;
30512
30393
  font-weight: normal;
30513
- text-transform: uppercase;
30514
- font-feature-settings: "cpsp" on;
30515
- font-size: 12px;
30516
- line-height: 18px;
30394
+ font-size: 13px;
30395
+ line-height: 20px;
30517
30396
  }
30518
30397
 
30519
- .E_lrcmi0v {
30398
+ .E_lv9jstu {
30520
30399
  font-family: Inter;
30521
30400
  font-style: normal;
30522
- font-weight: normal;
30523
- font-size: 16px;
30524
- line-height: 24px;
30401
+ font-weight: 600;
30402
+ font-size: 13px;
30403
+ line-height: 20px;
30525
30404
  }
30526
30405
 
30527
- .E_lzt43lp {
30406
+ .E_lwqlh3x {
30528
30407
  font-family: Inter;
30529
30408
  font-style: normal;
30530
30409
  font-weight: bold;
30531
- font-size: 16px;
30532
- line-height: 24px;
30410
+ font-size: 13px;
30411
+ line-height: 20px;
30533
30412
  }
30534
30413
 
30535
- .E_l5yc9nt {
30414
+ .E_lalum9y {
30536
30415
  font-family: Inter;
30537
30416
  font-style: normal;
30538
30417
  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 {
30580
- font-family: Inter;
30581
- font-style: normal;
30582
- font-weight: 500;
30583
- font-size: 14px;
30584
- line-height: 22px;
30585
- }
30586
-
30587
- .E_lcnm221 {
30588
- font-family: Inter;
30589
- font-style: normal;
30590
- font-weight: bold;
30591
- font-size: 14px;
30592
- line-height: 22px;
30593
- }
30594
-
30595
- .E_lu1z2n5 {
30596
- font-family: Inter;
30597
- font-style: normal;
30598
- font-weight: normal;
30599
- font-size: 14px;
30600
- line-height: 22px;
30601
- }
30602
-
30603
- .E_l1r59djn {
30604
- font-family: Inter;
30605
- font-style: normal;
30606
- font-weight: bold;
30607
- font-size: 14px;
30608
- line-height: 22px;
30609
- }
30610
-
30611
- .E_ljm2911 {
30612
- font-family: Inter;
30613
- font-style: normal;
30614
- font-weight: normal;
30615
- text-transform: uppercase;
30616
- font-feature-settings: "cpsp" on;
30617
- font-size: 14px;
30618
- line-height: 22px;
30619
- }
30620
-
30621
- .E_l124mzmr {
30622
- font-family: Inter;
30623
- font-style: normal;
30624
- font-weight: bold;
30625
- text-transform: uppercase;
30626
- font-feature-settings: "cpsp" on;
30627
- font-size: 14px;
30628
- line-height: 22px;
30629
- }
30630
-
30631
- .E_lb3chel {
30632
- font-family: Inter;
30633
- font-style: normal;
30634
- font-weight: normal;
30635
- font-size: 13px;
30636
- line-height: 20px;
30637
- }
30638
-
30639
- .E_lv9jstu {
30640
- font-family: Inter;
30641
- font-style: normal;
30642
- font-weight: 600;
30643
- font-size: 13px;
30644
- line-height: 20px;
30645
- }
30646
-
30647
- .E_lwqlh3x {
30648
- font-family: Inter;
30649
- font-style: normal;
30650
- font-weight: bold;
30651
- font-size: 13px;
30652
- line-height: 20px;
30653
- }
30654
-
30655
- .E_lalum9y {
30656
- font-family: Inter;
30657
- font-style: normal;
30658
- font-weight: normal;
30659
- font-size: 13px;
30660
- line-height: 20px;
30418
+ font-size: 13px;
30419
+ line-height: 20px;
30661
30420
  }
30662
30421
 
30663
30422
  .E_l1t6dj5o {
@@ -30867,150 +30626,284 @@ html body {
30867
30626
  line-height: 12px;
30868
30627
  }
30869
30628
 
30870
- .E_rapgekc.ant-radio-wrapper {
30871
- display: inline-flex;
30872
- align-items: baseline;
30873
- white-space: pre-wrap;
30629
+ .E_iq1gosr {
30630
+ display: inline-block;
30874
30631
  }
30875
- .E_rapgekc.ant-radio-wrapper .ant-radio {
30876
- position: relative;
30877
- top: 3px;
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;
30878
30641
  }
30879
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30880
- border-color: rgba(107, 128, 167, 0.6);
30642
+ .E_skwah65 .stack-bar-item + .stack-bar-item {
30643
+ margin-left: 1px;
30881
30644
  }
30882
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30883
- border-color: #0080ff;
30645
+
30646
+ .E_s1dni7lo {
30647
+ width: 430px !important;
30884
30648
  }
30885
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30886
- border-color: #0080ff;
30887
- background: #0080ff;
30649
+
30650
+ .E_d1wwmmm5 .ant-select-item-group {
30651
+ padding: 8px 16px;
30652
+ line-height: 18px;
30653
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
30654
+ height: 34px;
30655
+ min-height: 34px;
30656
+ box-sizing: border-box;
30657
+ margin-top: 8px;
30888
30658
  }
30889
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
30890
- top: 4px;
30891
- left: 4px;
30892
- width: 6px;
30893
- height: 6px;
30894
- background: #fff;
30659
+
30660
+ .E_o1ugr09p {
30661
+ display: flex;
30662
+ flex-direction: column;
30663
+ margin: 1px 8px;
30664
+ padding: 8px;
30665
+ border-radius: 4px;
30895
30666
  }
30896
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
30897
- opacity: 0.5;
30667
+ .E_o1ugr09p .selected-icon {
30668
+ display: none;
30898
30669
  }
30899
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
30900
- border-color: rgba(107, 128, 167, 0.6);
30901
- background: rgba(211, 218, 235, 0.6);
30670
+ .E_o1ugr09p.ant-select-item-option-grouped {
30671
+ padding-left: 8px;
30902
30672
  }
30903
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
30904
- background: #00122e;
30673
+ .E_o1ugr09p.ant-select-item-option-selected {
30674
+ background-color: white;
30905
30675
  }
30906
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
30907
- color: #00122e;
30908
- opacity: 0.5;
30676
+ .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
30677
+ color: #0080ff;
30909
30678
  }
30910
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
30911
- color: #00122e;
30679
+ .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
30680
+ display: block;
30912
30681
  }
30913
- .E_rapgekc.ant-radio-wrapper .ant-radio + span {
30914
- display: inline-block;
30915
- padding: 0;
30916
- padding-left: 12px;
30682
+ .E_o1ugr09p.ant-select-item-option-active {
30683
+ background: rgba(0, 136, 255, 0.16);
30917
30684
  }
30918
- .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
30919
- margin-bottom: 0;
30920
- white-space: pre-wrap;
30921
- color: rgba(44, 56, 82, 0.6);
30685
+ .E_o1ugr09p.ant-select-item-option-active .timezone-title {
30686
+ color: #0080ff;
30922
30687
  }
30923
- .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
30924
- padding-left: 8px;
30688
+ .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
30689
+ background: rgba(0, 136, 255, 0.1);
30690
+ color: #0080ff;
30925
30691
  }
30926
30692
 
30927
- .E_rp906go .ant-radio-button-wrapper:first-child {
30928
- border-radius: 5px 0 0 5px;
30693
+ .E_o1ifxsq4 {
30694
+ display: flex;
30695
+ justify-content: space-between;
30696
+ height: 20px;
30697
+ line-height: 20px;
30929
30698
  }
30930
- .E_rp906go .ant-radio-button-wrapper:last-child {
30931
- border-radius: 0 5px 5px 0;
30699
+ .E_o1ifxsq4 .timezone-title {
30700
+ color: #2d3a56;
30701
+ overflow: hidden;
30702
+ text-overflow: ellipsis;
30932
30703
  }
30933
30704
 
30934
- .E_rcc63c8 {
30935
- color: #00122e;
30936
- border-color: #ccd4e3;
30705
+ .E_o1zue7 {
30706
+ display: flex;
30707
+ justify-content: space-between;
30708
+ color: rgba(44, 56, 82, 0.6);
30709
+ height: 18px;
30710
+ line-height: 18px;
30711
+ margin-top: 2px;
30937
30712
  }
30938
- .E_rcc63c8:first-child {
30939
- border-color: #a3b4cc;
30713
+
30714
+ .E_tyfmlxg {
30715
+ border: none;
30716
+ margin-right: 0;
30717
+ background: rgba(225, 230, 241, 0.6);
30940
30718
  }
30941
- .E_rcc63c8.ant-radio-button-wrapper {
30942
- padding: 0 12px;
30943
- line-height: 32px;
30719
+
30720
+ .E_o18uybox {
30721
+ pointer-events: none;
30944
30722
  height: 32px;
30723
+ width: 100%;
30724
+ opacity: 0;
30945
30725
  }
30946
- .E_rcc63c8.ant-radio-button-wrapper > span + span {
30947
- white-space: nowrap;
30726
+
30727
+ .E_owd0kml {
30728
+ display: inline-block;
30948
30729
  }
30949
- .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
30950
- height: 22px;
30951
- padding: 0 7px;
30952
- line-height: 20px;
30730
+
30731
+ .E_h1jsgezc {
30732
+ visibility: hidden;
30733
+ position: absolute;
30953
30734
  }
30954
- .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
30955
- background: #ccd4e3;
30735
+
30736
+ .E_s1dizucg.ant-switch {
30737
+ min-width: 40px;
30738
+ height: 24px;
30739
+ background: rgba(172, 186, 211, 0.6);
30740
+ overflow: hidden;
30956
30741
  }
30957
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
30958
- background: #0080ff;
30742
+ .E_s1dizucg.ant-switch:focus {
30743
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30959
30744
  }
30960
- .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
30961
- background: #ccd4e3;
30962
- opacity: 0.5;
30745
+ .E_s1dizucg.ant-switch-small {
30746
+ min-width: 26px;
30747
+ height: 16px;
30963
30748
  }
30964
- .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
30965
- border-right-color: #0080ff;
30749
+ .E_s1dizucg.ant-switch-large {
30750
+ min-width: 52px;
30751
+ height: 32px;
30966
30752
  }
30967
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
30968
- border-color: #0080ff;
30753
+ .E_s1dizucg.ant-switch .ant-switch-handle {
30754
+ height: 20px;
30755
+ width: 20px;
30969
30756
  }
30970
- .E_rcc63c8.ant-radio-button-wrapper-checked {
30971
- background: rgba(0, 136, 255, 0.1);
30757
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
30758
+ border-radius: 10px;
30759
+ transition-delay: 120ms;
30972
30760
  }
30973
- .E_rcc63c8.ant-radio-button-wrapper-disabled {
30974
- background: rgba(211, 218, 235, 0.6);
30975
- border-color: #ccd4e3;
30976
- opacity: 0.5;
30761
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
30762
+ height: 14px;
30763
+ width: 14px;
30764
+ top: 1px;
30765
+ left: 1px;
30977
30766
  }
30978
- .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
30979
- color: #00122e;
30980
- border-color: #ccd4e3;
30767
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
30768
+ height: 28px;
30769
+ width: 28px;
30981
30770
  }
30982
- .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
30983
- color: #00122e;
30984
- border-color: #ccd4e3;
30985
- background: rgba(172, 186, 211, 0.6);
30771
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30772
+ border-radius: 14px;
30986
30773
  }
30987
- .E_rcc63c8 .ant-radio-button-input {
30988
- margin-right: 8px;
30989
- display: inline;
30990
- border: none;
30991
- padding: 0;
30992
- width: 36px;
30993
- background: transparent;
30774
+ .E_s1dizucg.ant-switch-checked {
30775
+ background-color: #00ba5d;
30994
30776
  }
30995
- .E_rcc63c8 .ant-radio-button-input:focus {
30996
- box-shadow: none;
30777
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30778
+ left: calc(100% - 20px - 2px);
30997
30779
  }
30998
- .E_rcc63c8 .ant-radio-button-input.ant-input-number {
30999
- margin-right: 0;
31000
- width: initial;
31001
- box-shadow: none;
30780
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30781
+ left: calc(100% - 14px - 1px);
31002
30782
  }
31003
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31004
- display: none;
30783
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30784
+ left: calc(100% - 28px - 2px);
31005
30785
  }
31006
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31007
- display: inline;
30786
+
30787
+ .E_c1up6e3y {
30788
+ margin-left: 5px;
31008
30789
  }
31009
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
31010
- display: inline;
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) {
31011
30836
  margin-right: 8px;
31012
- padding: 0;
31013
- width: 36px;
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;
31014
30907
  }
31015
30908
 
31016
30909
  .E_cnujxq2 {
@@ -31698,37 +31591,183 @@ input.E_rf8rlle.ant-input {
31698
31591
  margin: 4px 0;
31699
31592
  }
31700
31593
 
31701
- .E_c1up1pdz {
31702
- width: 648px;
31594
+ .E_rapgekc.ant-radio-wrapper {
31595
+ display: inline-flex;
31596
+ align-items: baseline;
31597
+ white-space: pre-wrap;
31703
31598
  }
31704
- .E_c1up1pdz.active {
31705
- border-color: #0080ff;
31599
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
31600
+ position: relative;
31601
+ top: 3px;
31706
31602
  }
31707
- .E_c1up1pdz.active > header {
31708
- background: rgba(0, 128, 255, 0.1);
31603
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31604
+ border-color: rgba(107, 128, 167, 0.6);
31709
31605
  }
31710
- .E_c1up1pdz .expand {
31711
- padding: 12px;
31606
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31607
+ border-color: #0080ff;
31712
31608
  }
31713
- .E_c1up1pdz .field-item {
31714
- display: flex;
31715
- padding: 10px 0;
31716
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
31609
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31610
+ border-color: #0080ff;
31611
+ background: #0080ff;
31717
31612
  }
31718
- .E_c1up1pdz .field-item:last-child {
31719
- border-bottom: none;
31720
- padding-bottom: 0;
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;
31721
31619
  }
31722
- .E_c1up1pdz .field-item label {
31723
- line-height: 32px;
31724
- width: 100px;
31725
- color: rgba(62, 70, 82, 0.6);
31620
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31621
+ opacity: 0.5;
31726
31622
  }
31727
- .E_c1up1pdz .help {
31728
- color: rgba(62, 70, 82, 0.6);
31729
- margin-top: 5px;
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);
31730
31626
  }
31731
- .E_c1up1pdz .ant-input-affix-wrapper,
31627
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31628
+ background: #00122e;
31629
+ }
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;
31668
+ height: 32px;
31669
+ }
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;
31738
+ }
31739
+
31740
+ .E_c1up1pdz {
31741
+ width: 648px;
31742
+ }
31743
+ .E_c1up1pdz.active {
31744
+ border-color: #0080ff;
31745
+ }
31746
+ .E_c1up1pdz.active > header {
31747
+ background: rgba(0, 128, 255, 0.1);
31748
+ }
31749
+ .E_c1up1pdz .expand {
31750
+ padding: 12px;
31751
+ }
31752
+ .E_c1up1pdz .field-item {
31753
+ display: flex;
31754
+ padding: 10px 0;
31755
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
31756
+ }
31757
+ .E_c1up1pdz .field-item:last-child {
31758
+ border-bottom: none;
31759
+ padding-bottom: 0;
31760
+ }
31761
+ .E_c1up1pdz .field-item label {
31762
+ line-height: 32px;
31763
+ width: 100px;
31764
+ color: rgba(62, 70, 82, 0.6);
31765
+ }
31766
+ .E_c1up1pdz .help {
31767
+ color: rgba(62, 70, 82, 0.6);
31768
+ margin-top: 5px;
31769
+ }
31770
+ .E_c1up1pdz .ant-input-affix-wrapper,
31732
31771
  .E_c1up1pdz .ant-picker {
31733
31772
  width: 128px;
31734
31773
  }
@@ -31838,26 +31877,20 @@ input.E_rf8rlle.ant-input {
31838
31877
  color: #fff;
31839
31878
  }
31840
31879
 
31841
- .E_c1uzzomf {
31842
- margin-bottom: 16px;
31880
+ .E_berrcjl {
31881
+ color: rgba(10, 37, 85, 0.6);
31882
+ margin-bottom: 4px;
31843
31883
  }
31844
- .E_c1uzzomf .card-title {
31845
- font-size: 16px;
31846
- color: rgba(44, 56, 82, 0.6);
31847
- font-weight: 700;
31848
- line-height: 32px;
31884
+ .E_berrcjl .breadcrumb-link {
31885
+ color: rgba(10, 37, 85, 0.6);
31886
+ cursor: pointer;
31887
+ transition: color 160ms ease;
31849
31888
  }
31850
- .E_c1uzzomf .card-body {
31851
- padding: 24px;
31852
- border-radius: 8px;
31853
- background: #fff;
31889
+ .E_berrcjl .breadcrumb-link:hover {
31890
+ color: #0080ff;
31854
31891
  }
31855
- .E_c1uzzomf .empty {
31856
- font-weight: 700;
31857
- font-size: 14px;
31858
- line-height: 22px;
31859
- color: rgba(0, 21, 64, 0.3);
31860
- text-align: center;
31892
+ .E_berrcjl .breadcrumb-link:active {
31893
+ color: #005ed1;
31861
31894
  }
31862
31895
 
31863
31896
  .E_c18gxmrl {
@@ -31880,111 +31913,53 @@ input.E_rf8rlle.ant-input {
31880
31913
  padding: 8px 12px;
31881
31914
  }
31882
31915
 
31883
- .E_c1bus5hc {
31884
- --color: white;
31885
- height: 14px;
31886
- width: 14px;
31887
- border-radius: 50%;
31888
- flex-shrink: 0;
31916
+ .E_tqjc4ui {
31917
+ margin: 0 2px;
31918
+ }
31919
+
31920
+ .E_n12mqh7z {
31889
31921
  display: flex;
31890
31922
  align-items: center;
31891
- justify-content: center;
31892
- border: 1px solid var(--color);
31923
+ font-size: 12px;
31924
+ line-height: 18px;
31893
31925
  }
31894
- .E_c1bus5hc .circle-inner {
31895
- position: relative;
31896
- height: 10px;
31897
- width: 10px;
31898
- border-radius: 50%;
31899
- overflow: hidden;
31926
+ .E_n12mqh7z:not(:last-child) {
31927
+ margin-bottom: 4px;
31900
31928
  }
31901
- .E_c1bus5hc .circle-content {
31902
- position: absolute;
31903
- height: 100%;
31904
- width: 100%;
31905
- left: 0;
31906
- top: 0;
31907
- border-radius: 50%;
31908
- background: linear-gradient(to right, var(--color) 50%, white 50%);
31909
- transform: rotate(180deg);
31929
+
31930
+ .E_tf5bynu {
31931
+ margin: 0 3px;
31910
31932
  }
31911
- .E_c1bus5hc .circle-child {
31912
- position: absolute;
31913
- height: 100%;
31914
- width: 100%;
31915
- left: 0;
31916
- top: 0;
31917
- margin-left: 50%;
31918
- transform-origin: left;
31919
- background: white;
31920
- transform: rotate(0deg);
31933
+
31934
+ .E_tcckoz1 {
31935
+ max-height: 400px;
31936
+ overflow: "auto";
31921
31937
  }
31922
31938
 
31923
- .E_berrcjl {
31924
- color: rgba(10, 37, 85, 0.6);
31925
- margin-bottom: 4px;
31939
+ .E_c1uzzomf {
31940
+ margin-bottom: 16px;
31926
31941
  }
31927
- .E_berrcjl .breadcrumb-link {
31928
- color: rgba(10, 37, 85, 0.6);
31929
- cursor: pointer;
31930
- transition: color 160ms ease;
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;
31931
31947
  }
31932
- .E_berrcjl .breadcrumb-link:hover {
31933
- color: #0080ff;
31948
+ .E_c1uzzomf .card-body {
31949
+ padding: 24px;
31950
+ border-radius: 8px;
31951
+ background: #fff;
31934
31952
  }
31935
- .E_berrcjl .breadcrumb-link:active {
31936
- color: #005ed1;
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;
31937
31959
  }
31938
31960
 
31939
- .E_c18bcrac {
31940
- display: inline-block;
31941
- width: 100%;
31942
- }
31943
- .E_c18bcrac .recharts-wrapper {
31944
- margin-left: 4px;
31945
- }
31946
-
31947
- .E_cro7kg2 {
31948
- padding: 4px;
31949
- }
31950
-
31951
- .E_c14wcxf0 {
31952
- display: flex;
31953
- justify-content: space-between;
31954
- align-items: center;
31955
- font-size: 13px;
31956
- line-height: 24px;
31957
- color: #cccccc;
31958
- white-space: nowrap;
31959
- }
31960
- .E_c14wcxf0 label {
31961
- margin-right: 32px;
31962
- }
31963
-
31964
- .E_coy29mj.E_c14wcxf0 {
31965
- font-weight: bold;
31966
- color: white;
31967
- }
31968
-
31969
- .E_s11212zy {
31970
- width: 8px;
31971
- height: 8px;
31972
- border-radius: 2px;
31973
- display: inline-block;
31974
- background: var(--s11212zy-0);
31975
- border: 1px solid #fff;
31976
- box-sizing: content-box;
31977
- margin-right: 6px;
31978
- }
31979
-
31980
- .E_p1lyky6c > :first-child {
31981
- font-weight: bold;
31982
- color: white;
31983
- margin-right: 4px;
31984
- }
31985
-
31986
- .E_gmyahx3 {
31987
- cursor: pointer;
31961
+ .E_gmyahx3 {
31962
+ cursor: pointer;
31988
31963
  }
31989
31964
  .E_gmyahx3 .link-text {
31990
31965
  color: rgba(0, 21, 64, 0.3);
@@ -31993,103 +31968,6 @@ input.E_rf8rlle.ant-input {
31993
31968
  color: #0080ff;
31994
31969
  }
31995
31970
 
31996
- .E_ou7iq30 {
31997
- overflow: hidden;
31998
- text-overflow: ellipsis;
31999
- }
32000
-
32001
- .E_s1tui002 {
32002
- white-space: nowrap;
32003
- }
32004
-
32005
- .E_mxrc2zg {
32006
- display: -webkit-box;
32007
- -webkit-line-clamp: var(--mxrc2zg-0);
32008
- -webkit-box-orient: vertical;
32009
- word-break: break-all;
32010
- }
32011
-
32012
- .E_d1bw7c5z {
32013
- position: relative;
32014
- max-width: 388px;
32015
- min-width: 245px;
32016
- }
32017
- .E_d1bw7c5z .center {
32018
- position: absolute;
32019
- font-size: 12px;
32020
- width: 80px;
32021
- height: 92px;
32022
- top: 12px;
32023
- left: 39px;
32024
- display: flex;
32025
- flex-direction: column;
32026
- justify-content: center;
32027
- align-items: center;
32028
- color: #00122e;
32029
- }
32030
- .E_d1bw7c5z .center .number {
32031
- font-size: 24px;
32032
- font-weight: 700;
32033
- }
32034
- .E_d1bw7c5z .center .text {
32035
- padding: 0 5px;
32036
- font-size: 12px;
32037
- width: inherit;
32038
- }
32039
- .E_d1bw7c5z .recharts-wrapper {
32040
- display: flex;
32041
- }
32042
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
32043
- position: relative !important;
32044
- width: calc(100% - 148px) !important;
32045
- left: 0 !important;
32046
- bottom: 0 !important;
32047
- display: flex;
32048
- align-items: center;
32049
- }
32050
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
32051
- width: 100%;
32052
- }
32053
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
32054
- width: 100%;
32055
- margin-right: 0 !important;
32056
- line-height: 18px;
32057
- }
32058
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
32059
- border-radius: 2px;
32060
- }
32061
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
32062
- min-width: 75px;
32063
- width: calc(100% - 20px);
32064
- margin-left: 2px;
32065
- color: #00122e !important;
32066
- display: inline-flex;
32067
- justify-content: space-between;
32068
- }
32069
- .E_d1bw7c5z .tooltip-text {
32070
- maxwidth: calc(100% - 12px);
32071
- cursor: pointer;
32072
- border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
32073
- overflow: hidden;
32074
- text-overflow: ellipsis;
32075
- white-space: nowrap;
32076
- }
32077
- .E_d1bw7c5z .value {
32078
- color: rgba(44, 56, 82, 0.75);
32079
- }
32080
-
32081
- .E_t10pqbtc {
32082
- width: 140px;
32083
- }
32084
- .E_t10pqbtc .item {
32085
- margin: 6px auto;
32086
- display: flex;
32087
- justify-content: space-between;
32088
- }
32089
- .E_t10pqbtc .item .name {
32090
- width: 102px;
32091
- }
32092
-
32093
31971
  .E_s11wux3h .ant-segmented-item:not(:last-child) {
32094
31972
  margin-right: 2px;
32095
31973
  }
@@ -32217,99 +32095,260 @@ input.E_rf8rlle.ant-input {
32217
32095
  border-radius: 2px;
32218
32096
  }
32219
32097
 
32220
- .E_tqjc4ui {
32221
- margin: 0 2px;
32222
- }
32223
-
32224
- .E_n12mqh7z {
32225
- display: flex;
32226
- align-items: center;
32227
- font-size: 12px;
32228
- line-height: 18px;
32229
- }
32230
- .E_n12mqh7z:not(:last-child) {
32231
- margin-bottom: 4px;
32098
+ .E_ou7iq30 {
32099
+ overflow: hidden;
32100
+ text-overflow: ellipsis;
32232
32101
  }
32233
32102
 
32234
- .E_tf5bynu {
32235
- margin: 0 3px;
32103
+ .E_s1tui002 {
32104
+ white-space: nowrap;
32236
32105
  }
32237
32106
 
32238
- .E_tcckoz1 {
32239
- max-height: 400px;
32240
- overflow: "auto";
32107
+ .E_mxrc2zg {
32108
+ display: -webkit-box;
32109
+ -webkit-line-clamp: var(--mxrc2zg-0);
32110
+ -webkit-box-orient: vertical;
32111
+ word-break: break-all;
32241
32112
  }
32242
32113
 
32243
- .E_t1sqg15u {
32244
- background: white;
32245
- }
32246
- .E_t1sqg15u.inline .table-row {
32247
- flex-direction: column;
32248
- }
32249
- .E_t1sqg15u.inline .table-row > label {
32250
- padding: 0 16px 7px 0;
32251
- }
32252
- .E_t1sqg15u.has-border .table-header {
32253
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
32254
- }
32255
- .E_t1sqg15u.has-border .hiddenBorder {
32256
- border-top: none !important;
32257
- }
32258
- .E_t1sqg15u.has-border .table-row + .table-row {
32259
- border-top: 1px solid rgba(225, 230, 241, 0.6);
32260
- }
32261
- .E_t1sqg15u.has-border .table-row:last-of-type {
32262
- padding-bottom: 0;
32263
- }
32264
- .E_t1sqg15u.align-right .content {
32265
- text-align: right;
32114
+ .E_c18bcrac {
32115
+ display: inline-block;
32116
+ width: 100%;
32266
32117
  }
32267
- .E_t1sqg15u .uuid-row {
32268
- display: flex;
32269
- justify-content: space-between;
32118
+ .E_c18bcrac .recharts-wrapper {
32119
+ margin-left: 4px;
32270
32120
  }
32271
- .E_t1sqg15u .uuid-row .id-text {
32272
- white-space: nowrap;
32273
- overflow: hidden;
32274
- text-overflow: ellipsis;
32121
+
32122
+ .E_cro7kg2 {
32123
+ padding: 4px;
32275
32124
  }
32276
32125
 
32277
- .E_t4zczcp {
32126
+ .E_c14wcxf0 {
32278
32127
  display: flex;
32279
32128
  justify-content: space-between;
32280
32129
  align-items: center;
32281
- padding: 8px;
32282
- min-height: 32px;
32283
- }
32284
- .E_t4zczcp .table-title {
32285
- color: rgba(44, 56, 82, 0.6);
32286
- font-weight: 600;
32287
- font-size: 12px;
32288
- line-height: 8px;
32130
+ font-size: 13px;
32131
+ line-height: 24px;
32132
+ color: #cccccc;
32133
+ white-space: nowrap;
32289
32134
  }
32290
- .E_t4zczcp .edit-icon {
32291
- font-size: 16px;
32292
- color: rgba(10, 37, 85, 0.6);
32293
- cursor: pointer;
32135
+ .E_c14wcxf0 label {
32136
+ margin-right: 32px;
32294
32137
  }
32295
32138
 
32296
- .E_t1s7goww {
32297
- font-size: 12px;
32298
- line-height: 18px;
32139
+ .E_coy29mj.E_c14wcxf0 {
32140
+ font-weight: bold;
32141
+ color: white;
32299
32142
  }
32300
32143
 
32301
- .E_t93e4cf {
32302
- display: flex;
32303
- padding: 8px 0;
32304
- color: #2d3a56;
32305
- }
32306
- .E_t93e4cf .hidden {
32307
- display: none;
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;
32308
32153
  }
32309
- .E_t93e4cf .ant-btn-link {
32310
- height: auto;
32154
+
32155
+ .E_p1lyky6c > :first-child {
32156
+ font-weight: bold;
32157
+ color: white;
32158
+ margin-right: 4px;
32311
32159
  }
32312
- .E_t93e4cf .content {
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);
32199
+ }
32200
+
32201
+ .E_d1bw7c5z {
32202
+ position: relative;
32203
+ max-width: 388px;
32204
+ min-width: 245px;
32205
+ }
32206
+ .E_d1bw7c5z .center {
32207
+ position: absolute;
32208
+ font-size: 12px;
32209
+ width: 80px;
32210
+ height: 92px;
32211
+ top: 12px;
32212
+ left: 39px;
32213
+ display: flex;
32214
+ flex-direction: column;
32215
+ justify-content: center;
32216
+ align-items: center;
32217
+ color: #00122e;
32218
+ }
32219
+ .E_d1bw7c5z .center .number {
32220
+ font-size: 24px;
32221
+ font-weight: 700;
32222
+ }
32223
+ .E_d1bw7c5z .center .text {
32224
+ padding: 0 5px;
32225
+ font-size: 12px;
32226
+ width: inherit;
32227
+ }
32228
+ .E_d1bw7c5z .recharts-wrapper {
32229
+ display: flex;
32230
+ }
32231
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
32232
+ position: relative !important;
32233
+ width: calc(100% - 148px) !important;
32234
+ left: 0 !important;
32235
+ bottom: 0 !important;
32236
+ display: flex;
32237
+ align-items: center;
32238
+ }
32239
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
32240
+ width: 100%;
32241
+ }
32242
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
32243
+ width: 100%;
32244
+ margin-right: 0 !important;
32245
+ line-height: 18px;
32246
+ }
32247
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
32248
+ border-radius: 2px;
32249
+ }
32250
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
32251
+ min-width: 75px;
32252
+ width: calc(100% - 20px);
32253
+ margin-left: 2px;
32254
+ color: #00122e !important;
32255
+ display: inline-flex;
32256
+ justify-content: space-between;
32257
+ }
32258
+ .E_d1bw7c5z .tooltip-text {
32259
+ maxwidth: calc(100% - 12px);
32260
+ cursor: pointer;
32261
+ border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
32262
+ overflow: hidden;
32263
+ text-overflow: ellipsis;
32264
+ white-space: nowrap;
32265
+ }
32266
+ .E_d1bw7c5z .value {
32267
+ color: rgba(44, 56, 82, 0.75);
32268
+ }
32269
+
32270
+ .E_t10pqbtc {
32271
+ width: 140px;
32272
+ }
32273
+ .E_t10pqbtc .item {
32274
+ margin: 6px auto;
32275
+ display: flex;
32276
+ justify-content: space-between;
32277
+ }
32278
+ .E_t10pqbtc .item .name {
32279
+ width: 102px;
32280
+ }
32281
+
32282
+ .E_t1sqg15u {
32283
+ background: white;
32284
+ }
32285
+ .E_t1sqg15u.inline .table-row {
32286
+ flex-direction: column;
32287
+ }
32288
+ .E_t1sqg15u.inline .table-row > label {
32289
+ padding: 0 16px 7px 0;
32290
+ }
32291
+ .E_t1sqg15u.has-border .table-header {
32292
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
32293
+ }
32294
+ .E_t1sqg15u.has-border .hiddenBorder {
32295
+ border-top: none !important;
32296
+ }
32297
+ .E_t1sqg15u.has-border .table-row + .table-row {
32298
+ border-top: 1px solid rgba(225, 230, 241, 0.6);
32299
+ }
32300
+ .E_t1sqg15u.has-border .table-row:last-of-type {
32301
+ padding-bottom: 0;
32302
+ }
32303
+ .E_t1sqg15u.align-right .content {
32304
+ text-align: right;
32305
+ }
32306
+ .E_t1sqg15u .uuid-row {
32307
+ display: flex;
32308
+ justify-content: space-between;
32309
+ }
32310
+ .E_t1sqg15u .uuid-row .id-text {
32311
+ white-space: nowrap;
32312
+ overflow: hidden;
32313
+ text-overflow: ellipsis;
32314
+ }
32315
+
32316
+ .E_t4zczcp {
32317
+ display: flex;
32318
+ justify-content: space-between;
32319
+ align-items: center;
32320
+ padding: 8px;
32321
+ min-height: 32px;
32322
+ }
32323
+ .E_t4zczcp .table-title {
32324
+ color: rgba(44, 56, 82, 0.6);
32325
+ font-weight: 600;
32326
+ font-size: 12px;
32327
+ line-height: 8px;
32328
+ }
32329
+ .E_t4zczcp .edit-icon {
32330
+ font-size: 16px;
32331
+ color: rgba(10, 37, 85, 0.6);
32332
+ cursor: pointer;
32333
+ }
32334
+
32335
+ .E_t1s7goww {
32336
+ font-size: 12px;
32337
+ line-height: 18px;
32338
+ }
32339
+
32340
+ .E_t93e4cf {
32341
+ display: flex;
32342
+ padding: 8px 0;
32343
+ color: #2d3a56;
32344
+ }
32345
+ .E_t93e4cf .hidden {
32346
+ display: none;
32347
+ }
32348
+ .E_t93e4cf .ant-btn-link {
32349
+ height: auto;
32350
+ }
32351
+ .E_t93e4cf .content {
32313
32352
  overflow: hidden;
32314
32353
  overflow-x: auto;
32315
32354
  width: 100%;
@@ -32352,6 +32391,13 @@ input.E_rf8rlle.ant-input {
32352
32391
  cursor: default;
32353
32392
  }
32354
32393
 
32394
+ .E_c1yyuluq {
32395
+ border-radius: 8px;
32396
+ }
32397
+ .E_c1yyuluq .ant-card-body {
32398
+ padding: 20px 24px 24px 24px;
32399
+ }
32400
+
32355
32401
  .E_m74vjol {
32356
32402
  display: flex;
32357
32403
  justify-content: space-between;
@@ -32365,6 +32411,14 @@ input.E_rf8rlle.ant-input {
32365
32411
  width: 100%;
32366
32412
  }
32367
32413
 
32414
+ .E_s1iv0tp1 .enabled-switch {
32415
+ display: flex;
32416
+ align-items: center;
32417
+ }
32418
+ .E_s1iv0tp1 .enabled-text {
32419
+ margin-right: 8px;
32420
+ }
32421
+
32368
32422
  .E_wg1tsps {
32369
32423
  display: flex;
32370
32424
  align-items: center;
@@ -32388,21 +32442,6 @@ input.E_rf8rlle.ant-input {
32388
32442
  color: #00122e !important;
32389
32443
  }
32390
32444
 
32391
- .E_c1yyuluq {
32392
- border-radius: 8px;
32393
- }
32394
- .E_c1yyuluq .ant-card-body {
32395
- padding: 20px 24px 24px 24px;
32396
- }
32397
-
32398
- .E_s1iv0tp1 .enabled-switch {
32399
- display: flex;
32400
- align-items: center;
32401
- }
32402
- .E_s1iv0tp1 .enabled-text {
32403
- margin-right: 8px;
32404
- }
32405
-
32406
32445
  .E_tje3huy {
32407
32446
  width: 100%;
32408
32447
  overflow: inherit;
@@ -32418,115 +32457,23 @@ input.E_rf8rlle.ant-input {
32418
32457
  margin-right: 4px;
32419
32458
  }
32420
32459
 
32421
- .E_s1sck0th {
32422
- padding: 0 8px;
32423
- border-radius: 4px;
32460
+ .E_sddwhm6 {
32461
+ margin: 0;
32462
+ border-radius: 20px;
32463
+ padding: 2px 10px;
32464
+ height: 22px;
32424
32465
  }
32425
-
32426
- .E_m855nr1 {
32427
- padding: 2px 8px;
32428
- border-radius: 3px;
32466
+ .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
32467
+ background-color: rgba(237, 241, 250, 0.6) !important;
32429
32468
  }
32430
-
32431
- .E_l1270xpg {
32432
- padding: 3px 8px;
32433
- border-radius: 2px;
32469
+ .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
32470
+ background-color: rgba(225, 230, 241, 0.6) !important;
32434
32471
  }
32435
-
32436
- .E_t14rextb.ant-tag:hover {
32437
- opacity: unset;
32472
+ .E_sddwhm6.ant-tag.ui-kit-status-capsule {
32473
+ color: #00122e;
32438
32474
  }
32439
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
32440
- margin: 0;
32441
- margin-right: 8px;
32442
- display: inline-flex;
32443
- align-items: center;
32444
- border: none;
32445
- }
32446
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
32447
- width: 16px;
32448
- height: 16px;
32449
- color: inherit;
32450
- margin-left: 4px;
32451
- opacity: 0.6;
32452
- display: inline-flex;
32453
- }
32454
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
32455
- opacity: 1;
32456
- }
32457
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
32458
- color: #0080ff;
32459
- background-color: rgba(0, 136, 255, 0.1);
32460
- }
32461
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
32462
- color: #f0483e;
32463
- background-color: rgba(255, 74, 74, 0.1);
32464
- }
32465
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
32466
- color: #e07f00;
32467
- background-color: rgba(255, 187, 0, 0.1);
32468
- }
32469
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
32470
- color: #008f4c;
32471
- background-color: rgba(30, 201, 127, 0.1);
32472
- }
32473
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
32474
- color: #1d326c;
32475
- background-color: rgba(225, 230, 241, 0.6);
32476
- }
32477
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
32478
- color: #7E41FF;
32479
- background-color: rgba(126, 65, 255, 0.1);
32480
- }
32481
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
32482
- color: #fff;
32483
- }
32484
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
32485
- background-color: #f0483e;
32486
- }
32487
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
32488
- background-color: #fea008;
32489
- }
32490
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
32491
- background-color: #00ba5d;
32492
- }
32493
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
32494
- background-color: #0080ff;
32495
- }
32496
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
32497
- background-color: #6b7d99;
32498
- }
32499
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
32500
- background-color: #7E41FF;
32501
- }
32502
-
32503
- .E_ivqqkzv {
32504
- height: 24px;
32505
- width: 56px !important;
32506
- margin-right: 4px;
32507
- }
32508
-
32509
- .E_c1wk4q29 {
32510
- color: rgba(44, 56, 82, 0.6);
32511
- }
32512
-
32513
- .E_sddwhm6 {
32514
- margin: 0;
32515
- border-radius: 20px;
32516
- padding: 2px 10px;
32517
- height: 22px;
32518
- }
32519
- .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
32520
- background-color: rgba(237, 241, 250, 0.6) !important;
32521
- }
32522
- .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
32523
- background-color: rgba(225, 230, 241, 0.6) !important;
32524
- }
32525
- .E_sddwhm6.ant-tag.ui-kit-status-capsule {
32526
- color: #00122e;
32527
- }
32528
- .E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
32529
- margin-right: 6px;
32475
+ .E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
32476
+ margin-right: 6px;
32530
32477
  }
32531
32478
  .E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
32532
32479
  margin-left: 4px;
@@ -32584,6 +32531,88 @@ input.E_rf8rlle.ant-input {
32584
32531
  display: inline-block;
32585
32532
  }
32586
32533
 
32534
+ .E_s1sck0th {
32535
+ padding: 0 8px;
32536
+ border-radius: 4px;
32537
+ }
32538
+
32539
+ .E_m855nr1 {
32540
+ padding: 2px 8px;
32541
+ border-radius: 3px;
32542
+ }
32543
+
32544
+ .E_l1270xpg {
32545
+ padding: 3px 8px;
32546
+ border-radius: 2px;
32547
+ }
32548
+
32549
+ .E_t14rextb.ant-tag:hover {
32550
+ opacity: unset;
32551
+ }
32552
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
32553
+ margin: 0;
32554
+ margin-right: 8px;
32555
+ display: inline-flex;
32556
+ align-items: center;
32557
+ border: none;
32558
+ }
32559
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
32560
+ width: 16px;
32561
+ height: 16px;
32562
+ color: inherit;
32563
+ margin-left: 4px;
32564
+ opacity: 0.6;
32565
+ display: inline-flex;
32566
+ }
32567
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
32568
+ opacity: 1;
32569
+ }
32570
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
32571
+ color: #0080ff;
32572
+ background-color: rgba(0, 136, 255, 0.1);
32573
+ }
32574
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
32575
+ color: #f0483e;
32576
+ background-color: rgba(255, 74, 74, 0.1);
32577
+ }
32578
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
32579
+ color: #e07f00;
32580
+ background-color: rgba(255, 187, 0, 0.1);
32581
+ }
32582
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
32583
+ color: #008f4c;
32584
+ background-color: rgba(30, 201, 127, 0.1);
32585
+ }
32586
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
32587
+ color: #1d326c;
32588
+ background-color: rgba(225, 230, 241, 0.6);
32589
+ }
32590
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
32591
+ color: #7E41FF;
32592
+ background-color: rgba(126, 65, 255, 0.1);
32593
+ }
32594
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
32595
+ color: #fff;
32596
+ }
32597
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
32598
+ background-color: #f0483e;
32599
+ }
32600
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
32601
+ background-color: #fea008;
32602
+ }
32603
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
32604
+ background-color: #00ba5d;
32605
+ }
32606
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
32607
+ background-color: #0080ff;
32608
+ }
32609
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
32610
+ background-color: #6b7d99;
32611
+ }
32612
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
32613
+ background-color: #7E41FF;
32614
+ }
32615
+
32587
32616
  .E_s177mls5.ant-select, .E_s177mls5.ant-select .ant-select-selector {
32588
32617
  border-radius: 6px;
32589
32618
  }
@@ -32641,6 +32670,16 @@ input.E_rf8rlle.ant-input {
32641
32670
  transform: rotate(180deg);
32642
32671
  }
32643
32672
 
32673
+ .E_ivqqkzv {
32674
+ height: 24px;
32675
+ width: 56px !important;
32676
+ margin-right: 4px;
32677
+ }
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;
33133
- }
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);
33127
+ .E_tfzf37v .ant-spin-nested-loading .ant-spin-container {
33128
+ height: 100%;
33129
+ overflow: visible;
33136
33130
  }
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;
33131
+ .E_tfzf37v .ant-spin-nested-loading .ant-spin {
33132
+ max-height: none;
33142
33133
  }
33143
- .E_crprfvb ul .month-container .dates-in-month .date-block {
33144
- width: 100%;
33145
- height: 100%;
33146
- display: flex;
33147
- align-items: center;
33148
- justify-content: center;
33134
+ .E_tfzf37v.table-init-loading .ant-spin-blur thead,
33135
+ .E_tfzf37v.table-init-loading .ant-spin-blur tbody {
33136
+ display: none;
33149
33137
  }
33150
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight {
33151
- border-color: #e6f4ff;
33152
- background: #e6f4ff;
33138
+ .E_tfzf37v td.ant-table-column-sort {
33139
+ background: transparent;
33153
33140
  }
33154
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight {
33155
- position: relative;
33141
+ .E_tfzf37v td.ant-table-cell-fix-left,
33142
+ .E_tfzf37v td.ant-table-cell-fix-right {
33156
33143
  background: #fff;
33144
+ padding: 0 !important;
33157
33145
  }
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);
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 {
33148
+ display: flex;
33149
+ align-items: center;
33164
33150
  height: 100%;
33165
- background: #e6f4ff;
33166
- border-top-left-radius: 50%;
33167
- border-bottom-left-radius: 50%;
33151
+ padding: 8px;
33168
33152
  }
33169
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight {
33170
- position: relative;
33171
- background: #fff;
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%;
33172
33158
  }
33173
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight::after {
33174
- content: "";
33175
- position: absolute;
33176
- left: 0;
33177
- top: 0;
33178
- width: calc(50% + 20px);
33159
+ .E_tfzf37v .ant-table-container {
33179
33160
  height: 100%;
33180
- background: #e6f4ff;
33181
- border-top-right-radius: 50%;
33182
- border-bottom-right-radius: 50%;
33183
33161
  }
33184
- .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight:last-child::after {
33185
- width: 40px;
33186
- top: 50%;
33187
- transform: translateY(-50%);
33188
- }
33189
- .E_crprfvb ul .month-container .dates-in-month .date-block + .highlight {
33190
- border-radius: unset;
33162
+ .E_tfzf37v .ant-table-container::before, .E_tfzf37v .ant-table-container::after {
33163
+ box-shadow: none !important;
33191
33164
  }
33192
- .E_crprfvb ul .month-container .dates-in-month .date-block:hover > .date {
33193
- border: 1px solid #0080ff;
33194
- cursor: pointer;
33195
- background: #fff;
33165
+ .E_tfzf37v .ant-table {
33166
+ border-radius: 0px;
33167
+ border-left: none;
33168
+ border-right: none;
33169
+ border-bottom: none;
33170
+ height: 100%;
33171
+ font-size: 12px;
33172
+ background: transparent;
33196
33173
  }
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;
33174
+ .E_tfzf37v .ant-table .ant-table-header {
33206
33175
  position: relative;
33207
- z-index: 1;
33176
+ z-index: 3;
33177
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
33178
+ margin-bottom: -1px;
33208
33179
  }
33209
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.blank {
33210
- background: transparent;
33180
+ .E_tfzf37v .ant-table .time-wrapper .date,
33181
+ .E_tfzf37v .ant-table .value {
33182
+ color: #2d3a56;
33211
33183
  }
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);
33184
+ .E_tfzf37v .ant-table .time-wrapper .time,
33185
+ .E_tfzf37v .ant-table .unit {
33186
+ color: rgba(44, 56, 82, 0.6);
33215
33187
  }
33216
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date.highlight {
33217
- border-color: #e6f4ff;
33188
+ .E_tfzf37v .ant-table .ant-table-selection {
33189
+ position: unset;
33190
+ text-align: center;
33218
33191
  }
33219
- .E_crprfvb ul .month-container .dates-in-month .date-block > .date:hover {
33220
- border-color: #0080ff;
33221
- cursor: pointer;
33192
+ .E_tfzf37v .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
33222
33193
  background: #fff;
33223
33194
  }
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);
33195
+ .E_tfzf37v .ant-table .anticon-setting {
33196
+ cursor: pointer;
33197
+ position: absolute;
33198
+ top: 50%;
33199
+ right: 12px;
33200
+ transform: translateY(-50%);
33233
33201
  }
33234
-
33235
- .E_ipbxcfl {
33236
- display: inline-flex;
33237
- flex-direction: column;
33238
- align-items: flex-start;
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);
33239
33206
  }
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;
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);
33249
33211
  }
33250
- .E_ipbxcfl .input-time.focus {
33251
- border-color: #0080ff;
33252
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
33212
+ .E_tfzf37v .ant-table .ant-table-tbody {
33213
+ position: relative;
33253
33214
  }
33254
- .E_ipbxcfl .input-time.error {
33255
- border-color: #f0483e;
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;
33256
33222
  }
33257
- .E_ipbxcfl .input-time.error.focus {
33258
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.2);
33223
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.header-hover {
33224
+ background: #f2f5fa;
33225
+ border-bottom-color: #f2f5fa;
33259
33226
  }
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;
33227
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
33228
+ height: auto;
33272
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;
33273
33236
  }
33274
- .E_ipbxcfl .input-time input::placeholder {
33275
- color: rgba(0, 21, 64, 0.3);
33237
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
33238
+ color: #0096ff;
33276
33239
  }
33277
- .E_ipbxcfl .input-time input:disabled {
33278
- background: inherit;
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;
33279
33245
  }
33280
- .E_ipbxcfl .input-time input:focus, .E_ipbxcfl .input-time input:active {
33281
- border: none;
33282
- outline: none;
33246
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.cell_status {
33247
+ line-height: 0px;
33283
33248
  }
33284
- .E_ipbxcfl .input-time .connect-symbol {
33285
- margin: 0 2px;
33286
- color: rgba(0, 21, 64, 0.3);
33249
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row td.align-right {
33250
+ padding-right: 25px;
33287
33251
  }
33288
- .E_ipbxcfl .input-time .connect-symbol.inputted {
33289
- color: #00122e;
33252
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
33253
+ border-top-color: transparent;
33290
33254
  }
33291
- .E_ipbxcfl .error-message {
33292
- color: #f0483e;
33293
- margin-top: 4px;
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;
33294
33258
  }
33295
-
33296
- .E_a120uq8m {
33297
- width: 100%;
33298
- height: 100%;
33299
- display: flex;
33300
- flex-direction: column;
33259
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
33260
+ border-radius: 8px 0 0 8px;
33301
33261
  }
33302
- .E_a120uq8m .date-range-picker-calendar {
33303
- flex: 1;
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;
33304
33264
  }
33305
-
33306
- .E_a15s9m0d {
33307
- padding: 8px 12px;
33308
- box-shadow: inset 0px 1px 0px rgba(211, 218, 235, 0.3);
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;
33309
33271
  }
33310
- .E_a15s9m0d .time-input-main {
33311
- display: flex;
33312
- justify-content: space-between;
33313
- align-items: flex-end;
33272
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
33273
+ border-radius: 0 8px 8px 0;
33314
33274
  }
33315
- .E_a15s9m0d .time-input-main .time-input-container {
33316
- display: flex;
33317
- align-items: flex-end;
33318
- gap: 8px;
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;
33279
+ }
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);
33284
+ }
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);
33319
33288
  }
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);
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;
33292
+ height: 100%;
33293
+ background: rgba(225, 230, 241, 0.6);
33324
33294
  }
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;
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);
33329
33298
  }
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;
33299
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
33300
+ display: flex;
33301
+ align-items: center;
33302
+ height: 100%;
33303
+ background: rgba(225, 230, 241, 0.6);
33333
33304
  }
33334
- .E_a15s9m0d .time-input-main .time-input-container .to {
33335
- line-height: 34px;
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);
33336
33307
  }
33337
- .E_a15s9m0d .time-input-main .time-input-container .input-time {
33338
- height: 32px;
33339
- padding: 6px 3px;
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;
33340
33311
  }
33341
- .E_a15s9m0d .time-input-main .ant-btn.validate-failed {
33342
- margin-bottom: 18px;
33312
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
33313
+ border-top-color: white;
33343
33314
  }
33344
- .E_a15s9m0d .time-input-error {
33345
- color: #f0483e;
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;
33346
33319
  }
33347
-
33348
- .E_r5hl59d {
33349
- min-width: 162px;
33320
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
33321
+ border-radius: 8px 0 0 8px;
33350
33322
  }
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;
33323
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
33324
+ border-radius: 0 8px 8px 0;
33356
33325
  }
33357
- .E_r5hl59d .ant-input-affix-wrapper + .past-time-list {
33358
- margin-top: 8px;
33326
+ .E_tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
33327
+ background: rgba(0, 136, 255, 0.1);
33359
33328
  }
33360
- .E_r5hl59d .past-time-list {
33361
- list-style: none;
33362
- padding: 0;
33363
- margin-top: 12px;
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;
33364
33337
  }
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;
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;
33370
33346
  }
33371
- .E_r5hl59d .past-time-list li:hover {
33372
- background: rgba(0, 136, 255, 0.16);
33373
- color: #0080ff;
33347
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank {
33348
+ padding: unset;
33374
33349
  }
33375
- .E_r5hl59d .past-time-list li:active {
33376
- background: rgba(0, 136, 255, 0.2);
33377
- color: #0080ff;
33350
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank:after {
33351
+ display: none;
33378
33352
  }
33379
- .E_r5hl59d .past-time-list li.selected {
33380
- background: rgba(0, 136, 255, 0.2);
33381
- color: #0080ff;
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;
33382
33358
  }
33383
- .E_r5hl59d .past-time-list li.selected .highlight {
33384
- color: #0080ff;
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;
33385
33363
  }
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;
33364
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
33365
+ padding: 15px 25px 15px 8px;
33390
33366
  }
33391
- .E_r5hl59d .past-time-list li + li {
33392
- margin-top: 2px;
33367
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
33368
+ padding: 0;
33393
33369
  }
33394
-
33395
- .E_dhqt3dw {
33396
- min-width: 392px;
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;
33397
33378
  }
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;
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);
33406
33382
  }
33407
- .E_dhqt3dw.date-range-picker .default-calendar-icon {
33408
- display: inline-flex;
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;
33409
33385
  }
33410
- .E_dhqt3dw.date-range-picker .hover-calendar-icon {
33386
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
33411
33387
  display: none;
33412
33388
  }
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);
33389
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
33390
+ transform: translateY(-50%);
33416
33391
  }
33417
- .E_dhqt3dw.date-range-picker:hover .default-calendar-icon, .E_dhqt3dw.date-range-picker.active .default-calendar-icon {
33418
- display: none;
33392
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
33393
+ transform: translateY(-50%) rotateX(180deg);
33419
33394
  }
33420
- .E_dhqt3dw.date-range-picker:hover .hover-calendar-icon, .E_dhqt3dw.date-range-picker.active .hover-calendar-icon {
33421
- display: inline-flex;
33395
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
33396
+ background: #f2f5fa;
33422
33397
  }
33423
- .E_dhqt3dw.date-range-picker.large {
33424
- height: 40px;
33425
- line-height: 40px;
33426
- padding: 0 12px 0 16px;
33398
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
33399
+ display: block;
33427
33400
  }
33428
- .E_dhqt3dw.date-range-picker.medium {
33429
- height: 32px;
33430
- line-height: 32px;
33431
- padding: 0 8px 0 12px;
33401
+ .E_tfzf37v .ant-table .ant-table-thead > tr > th.align-right {
33402
+ padding-right: 25px;
33432
33403
  }
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;
33404
+ .E_tfzf37v .ant-table .ant-table-selection-column {
33405
+ padding: 0 !important;
33439
33406
  }
33440
- .E_dhqt3dw.date-range-picker .date-input-content .concat-symbol-block {
33441
- color: rgba(0, 21, 64, 0.3);
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%);
33442
33412
  }
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;
33413
+ .E_tfzf37v .ant-table .ant-table-selection-column:after {
33414
+ display: none;
33451
33415
  }
33452
- .E_dhqt3dw.date-range-picker .date-input-content input::placeholder {
33453
- color: rgba(0, 21, 64, 0.3);
33454
- text-align: center;
33416
+ .E_tfzf37v .ant-table .ant-table-hide-scrollbar {
33417
+ background: #fff;
33455
33418
  }
33456
- .E_dhqt3dw.date-range-picker .date-input-content input:disabled {
33419
+ .E_tfzf37v .ant-table .ant-table-placeholder {
33457
33420
  background: inherit;
33458
33421
  }
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 {
33422
+ .E_tfzf37v .ant-table .ant-table-placeholder td {
33423
+ position: static;
33460
33424
  border: none;
33461
- outline: none;
33462
- box-shadow: none;
33463
- }
33464
- .E_dhqt3dw.date-range-picker .past-time-icon {
33465
- cursor: pointer;
33466
- }
33467
-
33468
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-bar {
33469
- padding: 12px 12px 0 12px;
33425
+ background: inherit !important;
33426
+ height: 100px;
33427
+ vertical-align: middle;
33470
33428
  }
33471
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item-medium.tab-menu-item:first-child {
33472
- padding-left: 16px;
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);
33473
33434
  }
33474
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item {
33475
- margin-right: 0;
33435
+ .E_tfzf37v .ant-table th.ant-table-cell-scrollbar,
33436
+ .E_tfzf37v .ant-table th.cell__action_ {
33437
+ z-index: 10;
33476
33438
  }
33477
- .E_d956d92 .ant-popover-inner-content .tab-menu .tab-menu-item + .tab-menu-item {
33478
- margin-left: 2px;
33439
+ .E_tfzf37v .ant-table td.cell__action_ {
33440
+ padding: 0 !important;
33441
+ position: relative;
33442
+ background: #fff;
33479
33443
  }
33480
- .E_d956d92 .ant-popover-inner-content .relative-time-container {
33481
- max-height: 470px;
33482
- overflow: auto;
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;
33483
33450
  }
33484
- .E_d956d92 .ant-popover-inner-content .relative-time-container ul {
33485
- padding: 0 12px;
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;
33486
33457
  }
33487
- .E_d956d92 .ant-popover-inner-content .absolute-time-container {
33488
- height: 470px;
33489
- overflow: auto;
33458
+ .E_tfzf37v .ant-table td.cell__action_ .menu-button:hover {
33459
+ background: #fff;
33490
33460
  }
33491
33461
 
33492
- .E_d1tc7lgk {
33493
- min-width: 200px;
33462
+ .E_c1kchka8 {
33463
+ height: 100%;
33464
+ width: 100%;
33465
+ display: flex;
33466
+ flex-direction: column;
33467
+ background: #fff;
33468
+ overflow: auto;
33494
33469
  }
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);
33470
+
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;
33499
33478
  }
33500
- .E_d1tc7lgk ul {
33501
- list-style: none;
33502
- padding: 12px;
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;
33503
33486
  }
33504
- .E_d1tc7lgk ul li {
33505
- padding: 5px 8px;
33506
- border-radius: 5px;
33507
- transition: all 0.2s ease-in-out;
33487
+ .E_ctdb951 .year-number-text {
33508
33488
  cursor: pointer;
33489
+ margin-right: 4px;
33509
33490
  }
33510
- .E_d1tc7lgk ul li:hover {
33511
- background: rgba(0, 136, 255, 0.16);
33512
- color: #0080ff;
33491
+ .E_ctdb951 .year-control {
33492
+ display: flex;
33493
+ align-items: center;
33494
+ gap: 8px;
33513
33495
  }
33514
- .E_d1tc7lgk ul li:active {
33515
- background: rgba(0, 136, 255, 0.2);
33516
- color: #0080ff;
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);
33517
33501
  }
33518
- .E_d1tc7lgk ul li + li {
33519
- margin-top: 2px;
33502
+
33503
+ .E_cvgtyx0 {
33504
+ display: grid;
33505
+ grid-template-columns: repeat(7, auto);
33506
+ list-style: none;
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;
33514
+ }
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);
33520
33521
  }
33521
33522
 
33522
- .E_rzaik16 {
33523
+ .E_crprfvb {
33524
+ flex: 1;
33525
+ overflow: auto;
33526
+ position: relative;
33527
+ }
33528
+ .E_crprfvb ul {
33529
+ list-style: none;
33523
33530
  padding: 0;
33531
+ margin: 0;
33524
33532
  }
33525
- .E_rzaik16 .ant-popover-arrow {
33526
- display: none;
33533
+ .E_crprfvb ul .month-container header {
33534
+ padding: 4px 12px;
33535
+ position: sticky;
33536
+ top: 0;
33537
+ background: #fff;
33538
+ transition: all 0.2s ease-in-out;
33539
+ z-index: 2;
33527
33540
  }
33528
- .E_rzaik16 .ant-popover-inner-content {
33529
- padding: 0;
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);
33530
33543
  }
33531
-
33532
- .E_tc97u5y {
33533
- height: 100%;
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;
33534
33549
  }
33535
-
33536
- .E_tfzf37v {
33550
+ .E_crprfvb ul .month-container .dates-in-month .date-block {
33551
+ width: 100%;
33537
33552
  height: 100%;
33553
+ display: flex;
33554
+ align-items: center;
33555
+ justify-content: center;
33538
33556
  }
33539
- .E_tfzf37v.empty-table .ant-table-content {
33540
- overflow: visible !important;
33541
- height: 100%;
33557
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight {
33558
+ border-color: #e6f4ff;
33559
+ background: #e6f4ff;
33542
33560
  }
33543
- .E_tfzf37v.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
33544
- height: 100%;
33561
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.first-highlight {
33562
+ position: relative;
33563
+ background: #fff;
33545
33564
  }
33546
- .E_tfzf37v.empty-table .ant-table-content table {
33547
- width: 100% !important;
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);
33548
33571
  height: 100%;
33572
+ background: #e6f4ff;
33573
+ border-top-left-radius: 50%;
33574
+ border-bottom-left-radius: 50%;
33549
33575
  }
33550
- .E_tfzf37v.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
33551
- padding: 15px 0;
33576
+ .E_crprfvb ul .month-container .dates-in-month .date-block.highlight.last-highlight {
33577
+ position: relative;
33578
+ background: #fff;
33552
33579
  }
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;
33819
+ }
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);
33787
33823
  }
33788
- .E_tfzf37v .ant-table .ant-table-thead > tr > th.is-blank:after {
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 {
@@ -33947,21 +33986,17 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33947
33986
  color: rgba(44, 56, 82, 0.7490196078);
33948
33987
  }
33949
33988
 
33950
- .E_b14q2gmw {
33951
- 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);
33952
- }
33953
-
33954
- .E_c1eym6el {
33955
- border-radius: 8px;
33956
- background-color: white;
33989
+ .E_suhck3k {
33990
+ height: 24px;
33991
+ width: 24px;
33992
+ border-radius: 6px;
33993
+ padding: 4px;
33957
33994
  }
33958
- .E_c1eym6el.hoverable {
33959
- cursor: pointer;
33995
+ .E_suhck3k:hover {
33996
+ background-color: rgba(0, 136, 255, 0.1);
33960
33997
  }
33961
- .E_c1eym6el.hoverable:hover {
33962
- transition: all 200ms ease;
33963
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
33964
- transform: translateY(-4px);
33998
+ .E_suhck3k:hover svg path {
33999
+ fill: blue;
33965
34000
  }
33966
34001
 
33967
34002
  .E_ryby9ds {
@@ -33980,61 +34015,34 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33980
34015
  margin-right: 6px;
33981
34016
  }
33982
34017
 
33983
- .E_suhck3k {
33984
- height: 24px;
33985
- width: 24px;
33986
- border-radius: 6px;
33987
- padding: 4px;
33988
- }
33989
- .E_suhck3k:hover {
33990
- background-color: rgba(0, 136, 255, 0.1);
33991
- }
33992
- .E_suhck3k:hover svg path {
33993
- fill: blue;
33994
- }
33995
-
33996
- .E_c1yd35n {
33997
- padding: 0 12px 14px 12px;
34018
+ .E_t13ef470 {
34019
+ height: 100%;
33998
34020
  }
33999
-
34000
- .E_c1kghdax {
34001
- color: #2d3a56;
34002
- padding: 7px 12px;
34021
+ .E_t13ef470 .table-loading-item {
34022
+ padding: 12px 4px;
34023
+ border-bottom: 1px solid rgba(204, 212, 227, 0.18);
34003
34024
  display: flex;
34004
- justify-content: space-between;
34005
- align-items: center;
34006
34025
  }
34007
- .E_c1kghdax.has-arrow {
34008
- padding-left: 10px;
34009
- }
34010
- .E_c1kghdax.has-arrow .title-wrapper {
34011
- cursor: pointer;
34012
- color: #00122e;
34026
+ .E_t13ef470 .table-loading-item > * {
34027
+ height: 16px;
34028
+ margin: 4px;
34029
+ background: rgba(204, 212, 227, 0.18);
34030
+ border-radius: 2px;
34013
34031
  }
34014
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
34015
- color: #2d3a56;
34016
- font-weight: 600;
34032
+ .E_t13ef470 .table-loading-item .checkbox-loading {
34033
+ width: 16px;
34017
34034
  }
34018
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34019
- transform: rotate(90deg);
34035
+ .E_t13ef470 .table-loading-item .td-loading {
34036
+ flex: 1;
34020
34037
  }
34021
- .E_c1kghdax .sub-info {
34022
- font-size: 12px;
34023
- line-height: 18px;
34038
+ .E_t13ef470 :nth-child(1) {
34039
+ padding: 8px 4px;
34024
34040
  }
34025
- .E_c1kghdax .title-wrapper {
34026
- display: flex;
34027
- align-items: center;
34028
- user-select: none;
34029
- flex-grow: 1;
34030
- font-size: 12px;
34031
- line-height: 18px;
34032
- color: #2d3a56;
34033
- font-weight: 700;
34041
+ .E_t13ef470 :nth-child(1) > * {
34042
+ background: rgba(107, 125, 153, 0.18);
34034
34043
  }
34035
- .E_c1kghdax .collapse-arrow {
34036
- transition: all 50ms ease-out 0ms;
34037
- margin-right: 2px;
34044
+ .E_t13ef470 :nth-child(1) > * {
34045
+ background: rgba(163, 180, 204, 0.18);
34038
34046
  }
34039
34047
 
34040
34048
  .E_ckui4s7 {
@@ -34101,43 +34109,272 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34101
34109
  margin-left: 24px;
34102
34110
  }
34103
34111
 
34104
- .E_w7ob4th.outside-tag {
34105
- padding-left: 0;
34112
+ .E_c1kghdax {
34113
+ color: #2d3a56;
34114
+ padding: 7px 12px;
34115
+ display: flex;
34116
+ justify-content: space-between;
34117
+ align-items: center;
34106
34118
  }
34107
- .E_w7ob4th.outside-tag .inside-tag {
34108
- border-radius: 4px 0 0 4px;
34109
- padding-right: 4px;
34110
- margin-right: 4px;
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;
34111
34150
  }
34112
34151
 
34113
- .E_t13ef470 {
34114
- height: 100%;
34152
+ .E_c1yd35n {
34153
+ padding: 0 12px 14px 12px;
34115
34154
  }
34116
- .E_t13ef470 .table-loading-item {
34117
- padding: 12px 4px;
34118
- border-bottom: 1px solid rgba(204, 212, 227, 0.18);
34155
+
34156
+ .E_b14q2gmw {
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);
34158
+ }
34159
+
34160
+ .E_c1eym6el {
34161
+ border-radius: 8px;
34162
+ background-color: white;
34163
+ }
34164
+ .E_c1eym6el.hoverable {
34165
+ cursor: pointer;
34166
+ }
34167
+ .E_c1eym6el.hoverable:hover {
34168
+ transition: all 200ms ease;
34169
+ box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
34170
+ transform: translateY(-4px);
34171
+ }
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;
34119
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);
34120
34246
  }
34121
- .E_t13ef470 .table-loading-item > * {
34122
- height: 16px;
34123
- margin: 4px;
34124
- background: rgba(204, 212, 227, 0.18);
34125
- border-radius: 2px;
34247
+ .E_tmoyoag .ant-list .eagle-table-form-header {
34248
+ align-items: inherit;
34126
34249
  }
34127
- .E_t13ef470 .table-loading-item .checkbox-loading {
34128
- width: 16px;
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;
34129
34357
  }
34130
- .E_t13ef470 .table-loading-item .td-loading {
34131
- flex: 1;
34358
+
34359
+ .E_d77i8u0 {
34360
+ width: 24px;
34361
+ height: 24px;
34362
+ padding: 4px;
34363
+ margin-right: 8px;
34132
34364
  }
34133
- .E_t13ef470 :nth-child(1) {
34134
- padding: 8px 4px;
34365
+
34366
+ .E_w7ob4th.outside-tag {
34367
+ padding-left: 0;
34135
34368
  }
34136
- .E_t13ef470 :nth-child(1) > * {
34137
- background: rgba(107, 125, 153, 0.18);
34369
+ .E_w7ob4th.outside-tag .inside-tag {
34370
+ border-radius: 4px 0 0 4px;
34371
+ padding-right: 4px;
34372
+ margin-right: 4px;
34138
34373
  }
34139
- .E_t13ef470 :nth-child(1) > * {
34140
- background: rgba(163, 180, 204, 0.18);
34374
+
34375
+ .E_i1g85yz3 {
34376
+ margin-right: 4px;
34377
+ height: 16px;
34141
34378
  }
34142
34379
 
34143
34380
  .E_slr2ynn {
@@ -34372,204 +34609,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34372
34609
  background: transparent;
34373
34610
  }
34374
34611
 
34375
- .E_i1g85yz3 {
34376
- margin-right: 4px;
34377
- height: 16px;
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;
34437
- }
34438
- .E_tmoyoag .ant-list {
34439
- position: relative;
34440
- }
34441
- .E_tmoyoag .ant-list .eagle-table-form-header {
34442
- position: sticky;
34443
- top: 0;
34444
- z-index: 2;
34445
- 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);
34453
- }
34454
- .E_tmoyoag .ant-list .eagle-table-form-header {
34455
- align-items: inherit;
34456
- }
34457
- .E_tmoyoag .ant-list .eagle-table-form-row {
34458
- display: flex;
34459
- justify-content: flex-start;
34460
- align-items: flex-start;
34461
- flex-wrap: wrap;
34462
- padding: 8px;
34463
- border: none;
34464
- }
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);
34470
- }
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;
34476
- }
34477
- .E_tmoyoag .ant-list .eagle-table-form-row:hover {
34478
- background-color: rgba(237, 241, 250, 0.6);
34479
- }
34480
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
34481
- background-color: rgba(0, 136, 255, 0.1);
34482
- }
34483
- .E_tmoyoag .ant-list .eagle-table-form-cell {
34484
- flex: 1 0 0;
34485
- overflow: hidden;
34486
- }
34487
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
34488
- color: rgba(44, 56, 82, 0.6);
34489
- margin: 0;
34490
- }
34491
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
34492
- text-align: center;
34493
- }
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;
34496
- }
34497
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
34498
- text-align: left;
34499
- }
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;
34502
- }
34503
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
34504
- text-align: right;
34505
- }
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;
34508
- }
34509
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
34510
- margin-right: 8px;
34511
- }
34512
- .E_tmoyoag .ant-list .ant-list-item-action {
34513
- padding: 4px;
34514
- width: 24px;
34515
- height: 24px;
34516
- overflow: hidden;
34517
- }
34518
- .E_tmoyoag .ant-list .ant-list-item-action li {
34519
- padding: 0;
34520
- }
34521
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
34522
- cursor: not-allowed;
34523
- opacity: 0.5;
34524
- }
34525
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
34526
- margin: 0;
34527
- }
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;
34532
- }
34533
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
34534
- font-size: inherit;
34535
- }
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;
34540
- }
34541
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
34542
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34543
- }
34544
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
34545
- background-color: rgba(237, 241, 250, 0.6);
34546
- }
34547
-
34548
- .E_a138syjm {
34549
- display: flex;
34550
- align-items: center;
34551
- margin-top: 8px;
34552
- }
34553
- .E_a138syjm button.ant-btn {
34554
- padding: 2px 8px;
34555
- height: 24px;
34556
- }
34557
- .E_a138syjm > span.maximum-desc {
34558
- display: none;
34559
- margin-left: 8px;
34560
- color: rgba(44, 56, 82, 0.6);
34561
- }
34562
- .E_a138syjm > span.maximum-desc.disabled {
34563
- display: inline;
34564
- }
34565
-
34566
- .E_d77i8u0 {
34567
- width: 24px;
34568
- height: 24px;
34569
- padding: 4px;
34570
- margin-right: 8px;
34571
- }
34572
-
34573
34612
  .E_f7pxqmh {
34574
34613
  width: 100%;
34575
34614
  margin-bottom: 0 !important;
@@ -34660,6 +34699,18 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34660
34699
  padding: 2px 8px;
34661
34700
  }
34662
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
+ }
34713
+
34663
34714
  .E_a1wfy30z .ant-input-number-handler-wrap {
34664
34715
  display: var(--a1wfy30z-0);
34665
34716
  }
@@ -34708,4 +34759,35 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34708
34759
  }
34709
34760
  .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
34710
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
+ }
34711
34793
  }