@cloudtower/eagle 0.27.1 → 0.27.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.css +1521 -1201
- package/dist/esm/index.js +1 -6
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +1355 -1035
- package/dist/umd/index.js +1 -6
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
- package/dist/components/Loading/style.d.ts +0 -4
package/dist/style.css
CHANGED
|
@@ -28320,6 +28320,102 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28320
28320
|
transform: rotate(360deg);
|
|
28321
28321
|
}
|
|
28322
28322
|
}
|
|
28323
|
+
/* // basic */
|
|
28324
|
+
/* FishEye Color Variables and Functions */
|
|
28325
|
+
/*
|
|
28326
|
+
--------------------------- Primary Color ---------------------------
|
|
28327
|
+
*/
|
|
28328
|
+
/*
|
|
28329
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28330
|
+
*/
|
|
28331
|
+
/* computed */
|
|
28332
|
+
/* blue */
|
|
28333
|
+
/* green */
|
|
28334
|
+
/* yellow */
|
|
28335
|
+
/* red */
|
|
28336
|
+
/* purple */
|
|
28337
|
+
/* palette global token*/
|
|
28338
|
+
/* color opaque */
|
|
28339
|
+
/* color transparent */
|
|
28340
|
+
/* blue transparent */
|
|
28341
|
+
/* green transparent */
|
|
28342
|
+
/* yellow transparent */
|
|
28343
|
+
/* red transparent */
|
|
28344
|
+
/* gray transparent */
|
|
28345
|
+
/* white transparent */
|
|
28346
|
+
/* gradient opaque */
|
|
28347
|
+
/* blue radial gradient */
|
|
28348
|
+
/* blue linear gradient */
|
|
28349
|
+
/* green radial gradient */
|
|
28350
|
+
/* yellow radial gradient */
|
|
28351
|
+
/* red radial gradient */
|
|
28352
|
+
/* gray radial gradient */
|
|
28353
|
+
/* white to gray radial gradient */
|
|
28354
|
+
/* white to gray linear gradient */
|
|
28355
|
+
/* gradient transparent */
|
|
28356
|
+
/* secondary palette */
|
|
28357
|
+
/* purple radial gradient */
|
|
28358
|
+
/* refine alias color */
|
|
28359
|
+
/* text */
|
|
28360
|
+
/* link */
|
|
28361
|
+
/* fill */
|
|
28362
|
+
/* fill element */
|
|
28363
|
+
/* fill interaction */
|
|
28364
|
+
/* stroke */
|
|
28365
|
+
/* background */
|
|
28366
|
+
/* dim */
|
|
28367
|
+
/* box shadow */
|
|
28368
|
+
/* fisheye */
|
|
28369
|
+
/* z-index */
|
|
28370
|
+
.loading {
|
|
28371
|
+
width: 64px;
|
|
28372
|
+
height: 64px;
|
|
28373
|
+
display: flex;
|
|
28374
|
+
align-items: center;
|
|
28375
|
+
justify-content: center;
|
|
28376
|
+
position: relative;
|
|
28377
|
+
opacity: 0.2;
|
|
28378
|
+
}
|
|
28379
|
+
|
|
28380
|
+
.loading-indicator__line1 {
|
|
28381
|
+
position: absolute;
|
|
28382
|
+
width: 5px;
|
|
28383
|
+
height: 48px;
|
|
28384
|
+
left: 9.33px;
|
|
28385
|
+
top: 40.5px;
|
|
28386
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28387
|
+
border-radius: 5px;
|
|
28388
|
+
transform: rotate(-128deg);
|
|
28389
|
+
transform-origin: top left;
|
|
28390
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
28391
|
+
}
|
|
28392
|
+
|
|
28393
|
+
.loading-indicator__line2 {
|
|
28394
|
+
position: absolute;
|
|
28395
|
+
width: 5px;
|
|
28396
|
+
height: 48px;
|
|
28397
|
+
left: 40.8px;
|
|
28398
|
+
top: 8.4px;
|
|
28399
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28400
|
+
border-radius: 5px;
|
|
28401
|
+
transform: rotate(-8deg);
|
|
28402
|
+
transform-origin: top left;
|
|
28403
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
28404
|
+
}
|
|
28405
|
+
|
|
28406
|
+
.loading-indicator__line3 {
|
|
28407
|
+
position: absolute;
|
|
28408
|
+
width: 5px;
|
|
28409
|
+
height: 48px;
|
|
28410
|
+
left: 52.9px;
|
|
28411
|
+
top: 51.8px;
|
|
28412
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28413
|
+
border-radius: 5px;
|
|
28414
|
+
transform: rotate(112deg);
|
|
28415
|
+
transform-origin: top left;
|
|
28416
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
28417
|
+
}
|
|
28418
|
+
|
|
28323
28419
|
@keyframes loading-indicator1 {
|
|
28324
28420
|
0% {
|
|
28325
28421
|
height: 48px;
|
|
@@ -28386,6 +28482,53 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28386
28482
|
top: 51.8px;
|
|
28387
28483
|
}
|
|
28388
28484
|
}
|
|
28485
|
+
/* // basic */
|
|
28486
|
+
/* FishEye Color Variables and Functions */
|
|
28487
|
+
/*
|
|
28488
|
+
--------------------------- Primary Color ---------------------------
|
|
28489
|
+
*/
|
|
28490
|
+
/*
|
|
28491
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28492
|
+
*/
|
|
28493
|
+
/* computed */
|
|
28494
|
+
/* blue */
|
|
28495
|
+
/* green */
|
|
28496
|
+
/* yellow */
|
|
28497
|
+
/* red */
|
|
28498
|
+
/* purple */
|
|
28499
|
+
/* palette global token*/
|
|
28500
|
+
/* color opaque */
|
|
28501
|
+
/* color transparent */
|
|
28502
|
+
/* blue transparent */
|
|
28503
|
+
/* green transparent */
|
|
28504
|
+
/* yellow transparent */
|
|
28505
|
+
/* red transparent */
|
|
28506
|
+
/* gray transparent */
|
|
28507
|
+
/* white transparent */
|
|
28508
|
+
/* gradient opaque */
|
|
28509
|
+
/* blue radial gradient */
|
|
28510
|
+
/* blue linear gradient */
|
|
28511
|
+
/* green radial gradient */
|
|
28512
|
+
/* yellow radial gradient */
|
|
28513
|
+
/* red radial gradient */
|
|
28514
|
+
/* gray radial gradient */
|
|
28515
|
+
/* white to gray radial gradient */
|
|
28516
|
+
/* white to gray linear gradient */
|
|
28517
|
+
/* gradient transparent */
|
|
28518
|
+
/* secondary palette */
|
|
28519
|
+
/* purple radial gradient */
|
|
28520
|
+
/* refine alias color */
|
|
28521
|
+
/* text */
|
|
28522
|
+
/* link */
|
|
28523
|
+
/* fill */
|
|
28524
|
+
/* fill element */
|
|
28525
|
+
/* fill interaction */
|
|
28526
|
+
/* stroke */
|
|
28527
|
+
/* background */
|
|
28528
|
+
/* dim */
|
|
28529
|
+
/* box shadow */
|
|
28530
|
+
/* fisheye */
|
|
28531
|
+
/* z-index */
|
|
28389
28532
|
.ant-dropdown,
|
|
28390
28533
|
.ant-dropdown-menu-submenu {
|
|
28391
28534
|
background: #fff;
|
|
@@ -28509,71 +28652,311 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28509
28652
|
text-overflow: ellipsis;
|
|
28510
28653
|
}
|
|
28511
28654
|
|
|
28512
|
-
|
|
28513
|
-
|
|
28514
|
-
-
|
|
28515
|
-
-
|
|
28516
|
-
|
|
28517
|
-
|
|
28518
|
-
|
|
28655
|
+
#top_bar {
|
|
28656
|
+
display: flex;
|
|
28657
|
+
align-items: center;
|
|
28658
|
+
justify-content: space-between;
|
|
28659
|
+
background: #222;
|
|
28660
|
+
color: #cec17e;
|
|
28661
|
+
height: 36px;
|
|
28662
|
+
padding: 0 4px;
|
|
28519
28663
|
}
|
|
28520
28664
|
|
|
28521
|
-
|
|
28665
|
+
#shortcuts {
|
|
28666
|
+
padding: 4px 6px;
|
|
28667
|
+
color: #eee;
|
|
28668
|
+
cursor: pointer;
|
|
28669
|
+
outline: none;
|
|
28670
|
+
border-radius: 2px;
|
|
28671
|
+
border: 0;
|
|
28672
|
+
background: #525252;
|
|
28522
28673
|
position: relative;
|
|
28523
28674
|
}
|
|
28524
28675
|
|
|
28525
|
-
|
|
28676
|
+
#shortcuts ul {
|
|
28677
|
+
display: none;
|
|
28526
28678
|
position: absolute;
|
|
28527
|
-
right:
|
|
28528
|
-
top:
|
|
28529
|
-
|
|
28530
|
-
|
|
28531
|
-
height: 100%;
|
|
28532
|
-
cursor: col-resize;
|
|
28679
|
+
right: 0px;
|
|
28680
|
+
top: 30px;
|
|
28681
|
+
word-wrap: none;
|
|
28682
|
+
white-space: nowrap;
|
|
28533
28683
|
}
|
|
28534
28684
|
|
|
28535
|
-
|
|
28536
|
-
|
|
28537
|
-
}
|
|
28538
|
-
.table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
|
|
28539
|
-
right: 0 !important;
|
|
28540
|
-
}
|
|
28541
|
-
.table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
|
|
28542
|
-
display: none;
|
|
28543
|
-
}
|
|
28544
|
-
.table-wrapper.table-sticky-header .ant-table-header {
|
|
28545
|
-
position: sticky;
|
|
28546
|
-
top: 0px;
|
|
28547
|
-
}
|
|
28548
|
-
.table-wrapper.table-sticky-header .ant-table-body {
|
|
28549
|
-
overflow: auto visible !important;
|
|
28685
|
+
#shortcuts:hover ul {
|
|
28686
|
+
display: inherit;
|
|
28550
28687
|
}
|
|
28551
28688
|
|
|
28552
|
-
|
|
28553
|
-
|
|
28689
|
+
#sendCtrlAltDelButton {
|
|
28690
|
+
padding: 4px 6px;
|
|
28691
|
+
color: #eee;
|
|
28692
|
+
cursor: pointer;
|
|
28693
|
+
outline: none;
|
|
28694
|
+
border-radius: 2px;
|
|
28695
|
+
border: 0;
|
|
28696
|
+
background: #525252;
|
|
28697
|
+
opacity: 0.8;
|
|
28554
28698
|
}
|
|
28555
28699
|
|
|
28556
|
-
|
|
28557
|
-
|
|
28558
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
28559
|
-
}
|
|
28560
|
-
.ant-picker.error:not(.ant-picker-disabled) {
|
|
28561
|
-
border-color: #e75a3a;
|
|
28700
|
+
#sendCtrlAltDelButton:hover {
|
|
28701
|
+
opacity: 1;
|
|
28562
28702
|
}
|
|
28563
28703
|
|
|
28564
|
-
|
|
28565
|
-
|
|
28704
|
+
#screen canvas {
|
|
28705
|
+
margin-top: 0 !important;
|
|
28566
28706
|
}
|
|
28567
28707
|
|
|
28568
|
-
|
|
28569
|
-
|
|
28570
|
-
|
|
28571
|
-
|
|
28572
|
-
|
|
28708
|
+
/* // basic */
|
|
28709
|
+
/* FishEye Color Variables and Functions */
|
|
28710
|
+
/*
|
|
28711
|
+
--------------------------- Primary Color ---------------------------
|
|
28712
|
+
*/
|
|
28713
|
+
/*
|
|
28714
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28715
|
+
*/
|
|
28716
|
+
/* computed */
|
|
28717
|
+
/* blue */
|
|
28718
|
+
/* green */
|
|
28719
|
+
/* yellow */
|
|
28720
|
+
/* red */
|
|
28721
|
+
/* purple */
|
|
28722
|
+
/* palette global token*/
|
|
28723
|
+
/* color opaque */
|
|
28724
|
+
/* color transparent */
|
|
28725
|
+
/* blue transparent */
|
|
28726
|
+
/* green transparent */
|
|
28727
|
+
/* yellow transparent */
|
|
28728
|
+
/* red transparent */
|
|
28729
|
+
/* gray transparent */
|
|
28730
|
+
/* white transparent */
|
|
28731
|
+
/* gradient opaque */
|
|
28732
|
+
/* blue radial gradient */
|
|
28733
|
+
/* blue linear gradient */
|
|
28734
|
+
/* green radial gradient */
|
|
28735
|
+
/* yellow radial gradient */
|
|
28736
|
+
/* red radial gradient */
|
|
28737
|
+
/* gray radial gradient */
|
|
28738
|
+
/* white to gray radial gradient */
|
|
28739
|
+
/* white to gray linear gradient */
|
|
28740
|
+
/* gradient transparent */
|
|
28741
|
+
/* secondary palette */
|
|
28742
|
+
/* purple radial gradient */
|
|
28743
|
+
/* refine alias color */
|
|
28744
|
+
/* text */
|
|
28745
|
+
/* link */
|
|
28746
|
+
/* fill */
|
|
28747
|
+
/* fill element */
|
|
28748
|
+
/* fill interaction */
|
|
28749
|
+
/* stroke */
|
|
28750
|
+
/* background */
|
|
28751
|
+
/* dim */
|
|
28752
|
+
/* box shadow */
|
|
28753
|
+
/* fisheye */
|
|
28754
|
+
/* z-index */
|
|
28755
|
+
.ant-dropdown,
|
|
28756
|
+
.ant-dropdown-menu-submenu {
|
|
28757
|
+
background: #fff;
|
|
28758
|
+
border-radius: 3px;
|
|
28759
|
+
min-width: 130px;
|
|
28760
|
+
box-sizing: content-box !important;
|
|
28761
|
+
box-shadow: none;
|
|
28762
|
+
border: none;
|
|
28573
28763
|
}
|
|
28574
|
-
.ant-
|
|
28575
|
-
|
|
28576
|
-
|
|
28764
|
+
.ant-dropdown > .ant-dropdown-menu,
|
|
28765
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu {
|
|
28766
|
+
border: 1px solid #dfe4eb;
|
|
28767
|
+
box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
|
|
28768
|
+
}
|
|
28769
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-title,
|
|
28770
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-title {
|
|
28771
|
+
font-family: Inter;
|
|
28772
|
+
font-style: normal;
|
|
28773
|
+
font-weight: normal;
|
|
28774
|
+
text-transform: uppercase;
|
|
28775
|
+
font-feature-settings: "cpsp" on;
|
|
28776
|
+
font-size: 12px;
|
|
28777
|
+
line-height: 18px;
|
|
28778
|
+
padding: 4px 16px;
|
|
28779
|
+
color: rgba(129, 138, 153, 0.6);
|
|
28780
|
+
}
|
|
28781
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-list,
|
|
28782
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-list {
|
|
28783
|
+
margin: 0;
|
|
28784
|
+
}
|
|
28785
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28786
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
28787
|
+
min-width: 128px;
|
|
28788
|
+
}
|
|
28789
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28790
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
|
|
28791
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28792
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
|
|
28793
|
+
display: flex;
|
|
28794
|
+
padding: 4px 22px 4px 10px;
|
|
28795
|
+
font-family: Inter;
|
|
28796
|
+
font-style: normal;
|
|
28797
|
+
font-weight: normal;
|
|
28798
|
+
font-size: 14px;
|
|
28799
|
+
line-height: 22px;
|
|
28800
|
+
color: #2d3a56;
|
|
28801
|
+
}
|
|
28802
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28803
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28804
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28805
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover {
|
|
28806
|
+
background-color: rgba(0, 128, 255, 0.1);
|
|
28807
|
+
color: #005ed1;
|
|
28808
|
+
}
|
|
28809
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
|
|
28810
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
|
|
28811
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
|
|
28812
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled {
|
|
28813
|
+
opacity: 0.5;
|
|
28814
|
+
}
|
|
28815
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
|
|
28816
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
|
|
28817
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
|
|
28818
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
|
|
28819
|
+
color: #f0483e;
|
|
28820
|
+
}
|
|
28821
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
|
|
28822
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
|
|
28823
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
|
|
28824
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
|
|
28825
|
+
background-color: rgba(240, 72, 62, 0.1);
|
|
28826
|
+
color: #f0483e;
|
|
28827
|
+
}
|
|
28828
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
|
|
28829
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled,
|
|
28830
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
|
|
28831
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled {
|
|
28832
|
+
color: #f0483e;
|
|
28833
|
+
opacity: 0.5;
|
|
28834
|
+
}
|
|
28835
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
|
|
28836
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider,
|
|
28837
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
|
|
28838
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider {
|
|
28839
|
+
margin-left: 0;
|
|
28840
|
+
margin-right: 0;
|
|
28841
|
+
background: rgba(213, 219, 227, 0.6);
|
|
28842
|
+
}
|
|
28843
|
+
.ant-dropdown > .ant-dropdown-menu .icon-wrapper,
|
|
28844
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper {
|
|
28845
|
+
display: flex;
|
|
28846
|
+
width: 100%;
|
|
28847
|
+
}
|
|
28848
|
+
.ant-dropdown > .ant-dropdown-menu .icon-wrapper .icon-inner,
|
|
28849
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper .icon-inner {
|
|
28850
|
+
margin-right: 4px;
|
|
28851
|
+
}
|
|
28852
|
+
|
|
28853
|
+
.ant-dropdown-menu-submenu.ant-dropdown-menu {
|
|
28854
|
+
padding: 0;
|
|
28855
|
+
}
|
|
28856
|
+
.ant-dropdown-menu-submenu.ant-dropdown-menu > [role=menu] {
|
|
28857
|
+
margin: 0;
|
|
28858
|
+
}
|
|
28859
|
+
|
|
28860
|
+
.ant-dropdown.no-animation-enter {
|
|
28861
|
+
display: block;
|
|
28862
|
+
opacity: 1 !important;
|
|
28863
|
+
}
|
|
28864
|
+
|
|
28865
|
+
.ant-dropdown.no-animation-leave {
|
|
28866
|
+
display: none;
|
|
28867
|
+
}
|
|
28868
|
+
|
|
28869
|
+
.ant-message-notice-content {
|
|
28870
|
+
max-width: 800px;
|
|
28871
|
+
}
|
|
28872
|
+
.ant-message-notice-content .ant-message-custom-content {
|
|
28873
|
+
overflow: hidden;
|
|
28874
|
+
white-space: nowrap;
|
|
28875
|
+
text-overflow: ellipsis;
|
|
28876
|
+
}
|
|
28877
|
+
|
|
28878
|
+
body {
|
|
28879
|
+
font-feature-settings: normal;
|
|
28880
|
+
-webkit-font-feature-settings: normal;
|
|
28881
|
+
font-variant: normal;
|
|
28882
|
+
min-width: 1280px;
|
|
28883
|
+
overflow: hidden;
|
|
28884
|
+
}
|
|
28885
|
+
|
|
28886
|
+
p {
|
|
28887
|
+
margin: 0;
|
|
28888
|
+
}
|
|
28889
|
+
|
|
28890
|
+
#root {
|
|
28891
|
+
width: 100vw;
|
|
28892
|
+
overflow-x: auto;
|
|
28893
|
+
}
|
|
28894
|
+
|
|
28895
|
+
.disable-select {
|
|
28896
|
+
-webkit-touch-callout: none;
|
|
28897
|
+
-webkit-user-select: none;
|
|
28898
|
+
-khtml-user-select: none;
|
|
28899
|
+
-moz-user-select: none;
|
|
28900
|
+
-ms-user-select: none;
|
|
28901
|
+
user-select: none;
|
|
28902
|
+
}
|
|
28903
|
+
|
|
28904
|
+
.relative {
|
|
28905
|
+
position: relative;
|
|
28906
|
+
}
|
|
28907
|
+
|
|
28908
|
+
.drag {
|
|
28909
|
+
position: absolute;
|
|
28910
|
+
right: -4px;
|
|
28911
|
+
top: 0;
|
|
28912
|
+
width: 8px;
|
|
28913
|
+
z-index: 9;
|
|
28914
|
+
height: 100%;
|
|
28915
|
+
cursor: col-resize;
|
|
28916
|
+
}
|
|
28917
|
+
|
|
28918
|
+
.table-wrapper {
|
|
28919
|
+
position: relative;
|
|
28920
|
+
}
|
|
28921
|
+
.table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
|
|
28922
|
+
right: 0 !important;
|
|
28923
|
+
}
|
|
28924
|
+
.table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
|
|
28925
|
+
display: none;
|
|
28926
|
+
}
|
|
28927
|
+
.table-wrapper.table-sticky-header .ant-table-header {
|
|
28928
|
+
position: sticky;
|
|
28929
|
+
top: 0px;
|
|
28930
|
+
}
|
|
28931
|
+
.table-wrapper.table-sticky-header .ant-table-body {
|
|
28932
|
+
overflow: auto visible !important;
|
|
28933
|
+
}
|
|
28934
|
+
|
|
28935
|
+
.table-wrapper.dragging .ant-table-column-has-sorters {
|
|
28936
|
+
pointer-events: none;
|
|
28937
|
+
}
|
|
28938
|
+
|
|
28939
|
+
.ant-picker.ant-picker-disabled {
|
|
28940
|
+
background: rgba(211, 218, 235, 0.6);
|
|
28941
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
28942
|
+
}
|
|
28943
|
+
.ant-picker.error:not(.ant-picker-disabled) {
|
|
28944
|
+
border-color: #e75a3a;
|
|
28945
|
+
}
|
|
28946
|
+
|
|
28947
|
+
.ant-picker-cell {
|
|
28948
|
+
vertical-align: middle;
|
|
28949
|
+
}
|
|
28950
|
+
|
|
28951
|
+
.ant-modal {
|
|
28952
|
+
margin: 0 auto;
|
|
28953
|
+
max-width: 100%;
|
|
28954
|
+
top: 50%;
|
|
28955
|
+
transform: translateY(-50%);
|
|
28956
|
+
}
|
|
28957
|
+
.ant-modal .ant-modal-close-x {
|
|
28958
|
+
width: 20px;
|
|
28959
|
+
height: 20px;
|
|
28577
28960
|
line-height: 20px;
|
|
28578
28961
|
font-size: 20px;
|
|
28579
28962
|
color: #3e4652;
|
|
@@ -29446,20 +29829,6 @@ input[type=submit] {
|
|
|
29446
29829
|
cursor: pointer;
|
|
29447
29830
|
}
|
|
29448
29831
|
|
|
29449
|
-
/* move from override.csss */
|
|
29450
|
-
body {
|
|
29451
|
-
font-feature-settings: normal;
|
|
29452
|
-
-webkit-font-feature-settings: normal;
|
|
29453
|
-
font-variant: normal;
|
|
29454
|
-
min-width: 1280px;
|
|
29455
|
-
overflow: hidden;
|
|
29456
|
-
}
|
|
29457
|
-
|
|
29458
|
-
#root {
|
|
29459
|
-
width: 100vw;
|
|
29460
|
-
overflow-x: auto;
|
|
29461
|
-
}
|
|
29462
|
-
|
|
29463
29832
|
@font-face {
|
|
29464
29833
|
font-family: "Inter";
|
|
29465
29834
|
font-style: normal;
|
|
@@ -30843,847 +31212,847 @@ input.rrg1fkn.ant-input {
|
|
|
30843
31212
|
opacity: 0;
|
|
30844
31213
|
}
|
|
30845
31214
|
|
|
30846
|
-
.
|
|
30847
|
-
|
|
31215
|
+
.i1e4sgug {
|
|
31216
|
+
display: inline-block;
|
|
30848
31217
|
}
|
|
30849
31218
|
|
|
30850
|
-
.
|
|
30851
|
-
|
|
30852
|
-
|
|
30853
|
-
|
|
30854
|
-
|
|
30855
|
-
height:
|
|
30856
|
-
}
|
|
30857
|
-
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
30858
|
-
height: 100%;
|
|
31219
|
+
.d6j0lbj {
|
|
31220
|
+
font-family: Inter;
|
|
31221
|
+
font-style: normal;
|
|
31222
|
+
font-weight: bold;
|
|
31223
|
+
font-size: 32px;
|
|
31224
|
+
line-height: 40px;
|
|
30859
31225
|
}
|
|
30860
|
-
|
|
30861
|
-
|
|
30862
|
-
|
|
31226
|
+
|
|
31227
|
+
.d1xhvvxe {
|
|
31228
|
+
font-family: Inter;
|
|
31229
|
+
font-style: normal;
|
|
31230
|
+
font-weight: bold;
|
|
31231
|
+
font-size: 24px;
|
|
31232
|
+
line-height: 32px;
|
|
30863
31233
|
}
|
|
30864
|
-
|
|
30865
|
-
|
|
31234
|
+
|
|
31235
|
+
.dk10mxq {
|
|
31236
|
+
font-family: Inter;
|
|
31237
|
+
font-style: normal;
|
|
31238
|
+
font-weight: normal;
|
|
31239
|
+
font-size: 32px;
|
|
31240
|
+
line-height: 40px;
|
|
30866
31241
|
}
|
|
30867
|
-
|
|
30868
|
-
|
|
31242
|
+
|
|
31243
|
+
.dxsait {
|
|
31244
|
+
font-family: Inter;
|
|
31245
|
+
font-style: normal;
|
|
31246
|
+
font-weight: bold;
|
|
31247
|
+
font-size: 20px;
|
|
31248
|
+
line-height: 24px;
|
|
30869
31249
|
}
|
|
30870
|
-
|
|
30871
|
-
|
|
30872
|
-
|
|
30873
|
-
|
|
30874
|
-
font-weight:
|
|
30875
|
-
|
|
30876
|
-
|
|
30877
|
-
height: 100%;
|
|
30878
|
-
}
|
|
30879
|
-
.tta5kd2 .ant-spin-nested-loading .ant-spin-container {
|
|
30880
|
-
height: 100%;
|
|
30881
|
-
overflow: visible;
|
|
30882
|
-
}
|
|
30883
|
-
.tta5kd2 .ant-spin-nested-loading .ant-spin {
|
|
30884
|
-
max-height: none;
|
|
30885
|
-
}
|
|
30886
|
-
.tta5kd2.table-init-loading .ant-spin-blur thead,
|
|
30887
|
-
.tta5kd2.table-init-loading .ant-spin-blur tbody {
|
|
30888
|
-
display: none;
|
|
31250
|
+
|
|
31251
|
+
.dokn0h3 {
|
|
31252
|
+
font-family: Inter;
|
|
31253
|
+
font-style: normal;
|
|
31254
|
+
font-weight: normal;
|
|
31255
|
+
font-size: 20px;
|
|
31256
|
+
line-height: 24px;
|
|
30889
31257
|
}
|
|
30890
|
-
|
|
30891
|
-
|
|
31258
|
+
|
|
31259
|
+
.dobau4p {
|
|
31260
|
+
font-family: Inter;
|
|
31261
|
+
font-style: normal;
|
|
31262
|
+
font-weight: bold;
|
|
31263
|
+
font-size: 18px;
|
|
31264
|
+
line-height: 22px;
|
|
30892
31265
|
}
|
|
30893
|
-
|
|
30894
|
-
.
|
|
30895
|
-
|
|
30896
|
-
|
|
31266
|
+
|
|
31267
|
+
.dvolwok {
|
|
31268
|
+
font-family: Inter;
|
|
31269
|
+
font-style: normal;
|
|
31270
|
+
font-weight: normal;
|
|
31271
|
+
font-size: 18px;
|
|
31272
|
+
line-height: 22px;
|
|
30897
31273
|
}
|
|
30898
|
-
|
|
30899
|
-
.
|
|
30900
|
-
|
|
30901
|
-
|
|
30902
|
-
|
|
30903
|
-
|
|
31274
|
+
|
|
31275
|
+
.h181qhg4 {
|
|
31276
|
+
font-family: Inter;
|
|
31277
|
+
font-style: normal;
|
|
31278
|
+
font-weight: bold;
|
|
31279
|
+
font-size: 16px;
|
|
31280
|
+
line-height: 22px;
|
|
30904
31281
|
}
|
|
30905
|
-
|
|
30906
|
-
.
|
|
30907
|
-
|
|
30908
|
-
|
|
30909
|
-
|
|
31282
|
+
|
|
31283
|
+
.h1phgmcq {
|
|
31284
|
+
font-family: Inter;
|
|
31285
|
+
font-style: normal;
|
|
31286
|
+
font-weight: normal;
|
|
31287
|
+
font-size: 16px;
|
|
31288
|
+
line-height: 22px;
|
|
30910
31289
|
}
|
|
30911
|
-
|
|
30912
|
-
|
|
31290
|
+
|
|
31291
|
+
.h173xnl1 {
|
|
31292
|
+
font-family: Inter;
|
|
31293
|
+
font-style: normal;
|
|
31294
|
+
font-weight: bold;
|
|
31295
|
+
font-size: 14px;
|
|
31296
|
+
line-height: 20px;
|
|
30913
31297
|
}
|
|
30914
|
-
|
|
30915
|
-
|
|
31298
|
+
|
|
31299
|
+
.hedm4pz {
|
|
31300
|
+
font-family: Inter;
|
|
31301
|
+
font-style: normal;
|
|
31302
|
+
font-weight: normal;
|
|
31303
|
+
font-size: 14px;
|
|
31304
|
+
line-height: 20px;
|
|
30916
31305
|
}
|
|
30917
|
-
|
|
30918
|
-
|
|
30919
|
-
|
|
30920
|
-
|
|
30921
|
-
|
|
30922
|
-
height: 100%;
|
|
31306
|
+
|
|
31307
|
+
.h1kd8xld {
|
|
31308
|
+
font-family: Inter;
|
|
31309
|
+
font-style: normal;
|
|
31310
|
+
font-weight: bold;
|
|
30923
31311
|
font-size: 12px;
|
|
30924
|
-
|
|
30925
|
-
}
|
|
30926
|
-
.tta5kd2 .ant-table .ant-table-header {
|
|
30927
|
-
position: relative;
|
|
30928
|
-
z-index: 3;
|
|
30929
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
30930
|
-
margin-bottom: -1px;
|
|
30931
|
-
}
|
|
30932
|
-
.tta5kd2 .ant-table .time-wrapper .date,
|
|
30933
|
-
.tta5kd2 .ant-table .value {
|
|
30934
|
-
color: #2d3a56;
|
|
30935
|
-
}
|
|
30936
|
-
.tta5kd2 .ant-table .time-wrapper .time,
|
|
30937
|
-
.tta5kd2 .ant-table .unit {
|
|
30938
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30939
|
-
}
|
|
30940
|
-
.tta5kd2 .ant-table .ant-table-selection {
|
|
30941
|
-
position: unset;
|
|
30942
|
-
text-align: center;
|
|
30943
|
-
}
|
|
30944
|
-
.tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
30945
|
-
background: #fff;
|
|
30946
|
-
}
|
|
30947
|
-
.tta5kd2 .ant-table .anticon-setting {
|
|
30948
|
-
cursor: pointer;
|
|
30949
|
-
position: absolute;
|
|
30950
|
-
top: 50%;
|
|
30951
|
-
right: 12px;
|
|
30952
|
-
transform: translateY(-50%);
|
|
30953
|
-
}
|
|
30954
|
-
.tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
30955
|
-
box-shadow: none;
|
|
30956
|
-
width: 1px;
|
|
30957
|
-
background: rgba(213, 219, 227, 0.6);
|
|
30958
|
-
}
|
|
30959
|
-
.tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
30960
|
-
box-shadow: none;
|
|
30961
|
-
width: 1px;
|
|
30962
|
-
background: rgba(213, 219, 227, 0.6);
|
|
30963
|
-
}
|
|
30964
|
-
.tta5kd2 .ant-table .ant-table-tbody {
|
|
30965
|
-
position: relative;
|
|
30966
|
-
}
|
|
30967
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
|
|
30968
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30969
|
-
border-bottom: 1px solid white;
|
|
30970
|
-
height: 40px;
|
|
30971
|
-
vertical-align: middle;
|
|
30972
|
-
transition: background 0ms;
|
|
30973
|
-
color: #00122e;
|
|
30974
|
-
}
|
|
30975
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
30976
|
-
background: #f2f5fa;
|
|
30977
|
-
border-bottom-color: #f2f5fa;
|
|
31312
|
+
line-height: 18px;
|
|
30978
31313
|
}
|
|
30979
|
-
|
|
30980
|
-
|
|
30981
|
-
|
|
31314
|
+
|
|
31315
|
+
.hp14fr {
|
|
31316
|
+
font-family: Inter;
|
|
31317
|
+
font-style: normal;
|
|
31318
|
+
font-weight: normal;
|
|
30982
31319
|
font-size: 12px;
|
|
30983
|
-
|
|
30984
|
-
transition: none;
|
|
30985
|
-
overflow: hidden;
|
|
30986
|
-
text-overflow: ellipsis;
|
|
30987
|
-
white-space: nowrap;
|
|
30988
|
-
}
|
|
30989
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
30990
|
-
color: #0096ff;
|
|
30991
|
-
}
|
|
30992
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
30993
|
-
overflow: hidden;
|
|
30994
|
-
text-overflow: ellipsis;
|
|
30995
|
-
width: 100%;
|
|
30996
|
-
vertical-align: middle;
|
|
30997
|
-
}
|
|
30998
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
30999
|
-
line-height: 0px;
|
|
31000
|
-
}
|
|
31001
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.align-right {
|
|
31002
|
-
padding-right: 25px;
|
|
31003
|
-
}
|
|
31004
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
31005
|
-
border-top-color: transparent;
|
|
31006
|
-
}
|
|
31007
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
31008
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31009
|
-
border-color: transparent transparent white;
|
|
31010
|
-
}
|
|
31011
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
31012
|
-
border-radius: 8px 0 0 8px;
|
|
31013
|
-
}
|
|
31014
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
31015
|
-
border-radius: 8px 0 0 8px;
|
|
31016
|
-
}
|
|
31017
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
31018
|
-
content: "";
|
|
31019
|
-
width: 4px;
|
|
31020
|
-
top: -1px;
|
|
31021
|
-
bottom: -1px;
|
|
31022
|
-
background: white;
|
|
31023
|
-
}
|
|
31024
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
31025
|
-
border-radius: 0 8px 8px 0;
|
|
31026
|
-
}
|
|
31027
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
31028
|
-
border-radius: 0;
|
|
31029
|
-
background: white;
|
|
31030
|
-
border-top: none;
|
|
31031
|
-
}
|
|
31032
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
31033
|
-
border-top: 1px solid transparent;
|
|
31034
|
-
border-radius: 0 8px 8px 0;
|
|
31035
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31036
|
-
}
|
|
31037
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
31038
|
-
background: white;
|
|
31039
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31040
|
-
}
|
|
31041
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
31042
|
-
display: flex;
|
|
31043
|
-
align-items: center;
|
|
31044
|
-
height: 100%;
|
|
31045
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31046
|
-
}
|
|
31047
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
31048
|
-
background: white;
|
|
31049
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31050
|
-
}
|
|
31051
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
31052
|
-
display: flex;
|
|
31053
|
-
align-items: center;
|
|
31054
|
-
height: 100%;
|
|
31055
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31056
|
-
}
|
|
31057
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
31058
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
31059
|
-
}
|
|
31060
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
|
|
31061
|
-
box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
|
|
31062
|
-
border-radius: 8px;
|
|
31320
|
+
line-height: 18px;
|
|
31063
31321
|
}
|
|
31064
|
-
|
|
31065
|
-
|
|
31322
|
+
|
|
31323
|
+
.hgrg7mn {
|
|
31324
|
+
font-family: Inter;
|
|
31325
|
+
font-style: normal;
|
|
31326
|
+
font-weight: bold;
|
|
31327
|
+
text-transform: uppercase;
|
|
31328
|
+
font-feature-settings: "cpsp" on;
|
|
31329
|
+
font-size: 12px;
|
|
31330
|
+
line-height: 18px;
|
|
31066
31331
|
}
|
|
31067
|
-
|
|
31068
|
-
|
|
31069
|
-
|
|
31070
|
-
|
|
31332
|
+
|
|
31333
|
+
.h6zme9x {
|
|
31334
|
+
font-family: Inter;
|
|
31335
|
+
font-style: normal;
|
|
31336
|
+
font-weight: normal;
|
|
31337
|
+
text-transform: uppercase;
|
|
31338
|
+
font-feature-settings: "cpsp" on;
|
|
31339
|
+
font-size: 12px;
|
|
31340
|
+
line-height: 18px;
|
|
31071
31341
|
}
|
|
31072
|
-
|
|
31073
|
-
|
|
31342
|
+
|
|
31343
|
+
.locjvsv {
|
|
31344
|
+
font-family: Inter;
|
|
31345
|
+
font-style: normal;
|
|
31346
|
+
font-weight: normal;
|
|
31347
|
+
font-size: 16px;
|
|
31348
|
+
line-height: 24px;
|
|
31074
31349
|
}
|
|
31075
|
-
|
|
31076
|
-
|
|
31350
|
+
|
|
31351
|
+
.l13gi131 {
|
|
31352
|
+
font-family: Inter;
|
|
31353
|
+
font-style: normal;
|
|
31354
|
+
font-weight: bold;
|
|
31355
|
+
font-size: 16px;
|
|
31356
|
+
line-height: 24px;
|
|
31077
31357
|
}
|
|
31078
|
-
|
|
31079
|
-
|
|
31358
|
+
|
|
31359
|
+
.l1ynemsu {
|
|
31360
|
+
font-family: Inter;
|
|
31361
|
+
font-style: normal;
|
|
31362
|
+
font-weight: normal;
|
|
31363
|
+
font-size: 16px;
|
|
31364
|
+
line-height: 24px;
|
|
31080
31365
|
}
|
|
31081
|
-
|
|
31082
|
-
|
|
31083
|
-
font-
|
|
31084
|
-
|
|
31085
|
-
|
|
31086
|
-
|
|
31087
|
-
|
|
31088
|
-
padding: 15px 8px 15px 8px;
|
|
31366
|
+
|
|
31367
|
+
.l1cft1cx {
|
|
31368
|
+
font-family: Inter;
|
|
31369
|
+
font-style: normal;
|
|
31370
|
+
font-weight: bold;
|
|
31371
|
+
font-size: 16px;
|
|
31372
|
+
line-height: 24px;
|
|
31089
31373
|
}
|
|
31090
|
-
|
|
31091
|
-
|
|
31092
|
-
|
|
31093
|
-
|
|
31094
|
-
|
|
31095
|
-
|
|
31096
|
-
|
|
31097
|
-
|
|
31374
|
+
|
|
31375
|
+
.l17tqc8p {
|
|
31376
|
+
font-family: Inter;
|
|
31377
|
+
font-style: normal;
|
|
31378
|
+
font-weight: normal;
|
|
31379
|
+
text-transform: uppercase;
|
|
31380
|
+
font-feature-settings: "cpsp" on;
|
|
31381
|
+
font-size: 16px;
|
|
31382
|
+
line-height: 24px;
|
|
31098
31383
|
}
|
|
31099
|
-
|
|
31100
|
-
|
|
31384
|
+
|
|
31385
|
+
.l1j1e5w7 {
|
|
31386
|
+
font-family: Inter;
|
|
31387
|
+
font-style: normal;
|
|
31388
|
+
font-weight: bold;
|
|
31389
|
+
text-transform: uppercase;
|
|
31390
|
+
font-feature-settings: "cpsp" on;
|
|
31391
|
+
font-size: 16px;
|
|
31392
|
+
line-height: 24px;
|
|
31101
31393
|
}
|
|
31102
|
-
|
|
31103
|
-
|
|
31394
|
+
|
|
31395
|
+
.l1gf91jb {
|
|
31396
|
+
font-family: Inter;
|
|
31397
|
+
font-style: normal;
|
|
31398
|
+
font-weight: normal;
|
|
31399
|
+
font-size: 14px;
|
|
31400
|
+
line-height: 22px;
|
|
31104
31401
|
}
|
|
31105
|
-
|
|
31106
|
-
|
|
31107
|
-
|
|
31108
|
-
|
|
31109
|
-
|
|
31402
|
+
|
|
31403
|
+
.lu7hlr6 {
|
|
31404
|
+
font-family: Inter;
|
|
31405
|
+
font-style: normal;
|
|
31406
|
+
font-weight: 500;
|
|
31407
|
+
font-size: 14px;
|
|
31408
|
+
line-height: 22px;
|
|
31110
31409
|
}
|
|
31111
|
-
|
|
31112
|
-
|
|
31113
|
-
|
|
31114
|
-
|
|
31410
|
+
|
|
31411
|
+
.l3l3jf0 {
|
|
31412
|
+
font-family: Inter;
|
|
31413
|
+
font-style: normal;
|
|
31414
|
+
font-weight: bold;
|
|
31415
|
+
font-size: 14px;
|
|
31416
|
+
line-height: 22px;
|
|
31115
31417
|
}
|
|
31116
|
-
|
|
31117
|
-
|
|
31418
|
+
|
|
31419
|
+
.l12j5nqp {
|
|
31420
|
+
font-family: Inter;
|
|
31421
|
+
font-style: normal;
|
|
31422
|
+
font-weight: normal;
|
|
31423
|
+
font-size: 14px;
|
|
31424
|
+
line-height: 22px;
|
|
31118
31425
|
}
|
|
31119
|
-
|
|
31120
|
-
|
|
31426
|
+
|
|
31427
|
+
.l1tecqht {
|
|
31428
|
+
font-family: Inter;
|
|
31429
|
+
font-style: normal;
|
|
31430
|
+
font-weight: bold;
|
|
31431
|
+
font-size: 14px;
|
|
31432
|
+
line-height: 22px;
|
|
31121
31433
|
}
|
|
31122
|
-
|
|
31123
|
-
|
|
31124
|
-
|
|
31125
|
-
|
|
31126
|
-
|
|
31127
|
-
|
|
31128
|
-
|
|
31129
|
-
|
|
31434
|
+
|
|
31435
|
+
.l6sa990 {
|
|
31436
|
+
font-family: Inter;
|
|
31437
|
+
font-style: normal;
|
|
31438
|
+
font-weight: normal;
|
|
31439
|
+
text-transform: uppercase;
|
|
31440
|
+
font-feature-settings: "cpsp" on;
|
|
31441
|
+
font-size: 14px;
|
|
31442
|
+
line-height: 22px;
|
|
31130
31443
|
}
|
|
31131
|
-
|
|
31132
|
-
|
|
31133
|
-
|
|
31444
|
+
|
|
31445
|
+
.lckqe8j {
|
|
31446
|
+
font-family: Inter;
|
|
31447
|
+
font-style: normal;
|
|
31448
|
+
font-weight: bold;
|
|
31449
|
+
text-transform: uppercase;
|
|
31450
|
+
font-feature-settings: "cpsp" on;
|
|
31451
|
+
font-size: 14px;
|
|
31452
|
+
line-height: 22px;
|
|
31134
31453
|
}
|
|
31135
|
-
|
|
31136
|
-
|
|
31454
|
+
|
|
31455
|
+
.l1kuminb {
|
|
31456
|
+
font-family: Inter;
|
|
31457
|
+
font-style: normal;
|
|
31458
|
+
font-weight: normal;
|
|
31459
|
+
font-size: 13px;
|
|
31460
|
+
line-height: 20px;
|
|
31137
31461
|
}
|
|
31138
|
-
|
|
31139
|
-
|
|
31462
|
+
|
|
31463
|
+
.l1pbuf5j {
|
|
31464
|
+
font-family: Inter;
|
|
31465
|
+
font-style: normal;
|
|
31466
|
+
font-weight: 600;
|
|
31467
|
+
font-size: 13px;
|
|
31468
|
+
line-height: 20px;
|
|
31140
31469
|
}
|
|
31141
|
-
|
|
31142
|
-
|
|
31470
|
+
|
|
31471
|
+
.l1r4ztu {
|
|
31472
|
+
font-family: Inter;
|
|
31473
|
+
font-style: normal;
|
|
31474
|
+
font-weight: bold;
|
|
31475
|
+
font-size: 13px;
|
|
31476
|
+
line-height: 20px;
|
|
31143
31477
|
}
|
|
31144
|
-
|
|
31145
|
-
|
|
31478
|
+
|
|
31479
|
+
.ly8vzok {
|
|
31480
|
+
font-family: Inter;
|
|
31481
|
+
font-style: normal;
|
|
31482
|
+
font-weight: normal;
|
|
31483
|
+
font-size: 13px;
|
|
31484
|
+
line-height: 20px;
|
|
31146
31485
|
}
|
|
31147
|
-
|
|
31148
|
-
|
|
31486
|
+
|
|
31487
|
+
.lumfmf {
|
|
31488
|
+
font-family: Inter;
|
|
31489
|
+
font-style: normal;
|
|
31490
|
+
font-weight: 600;
|
|
31491
|
+
font-size: 13px;
|
|
31492
|
+
line-height: 20px;
|
|
31149
31493
|
}
|
|
31150
|
-
|
|
31151
|
-
|
|
31494
|
+
|
|
31495
|
+
.l16ujwmv {
|
|
31496
|
+
font-family: Inter;
|
|
31497
|
+
font-style: normal;
|
|
31498
|
+
font-weight: bold;
|
|
31499
|
+
font-size: 13px;
|
|
31500
|
+
line-height: 20px;
|
|
31152
31501
|
}
|
|
31153
|
-
|
|
31154
|
-
|
|
31502
|
+
|
|
31503
|
+
.l17o1ffr {
|
|
31504
|
+
font-family: Inter;
|
|
31505
|
+
font-style: normal;
|
|
31506
|
+
font-weight: normal;
|
|
31507
|
+
text-transform: uppercase;
|
|
31508
|
+
font-feature-settings: "cpsp" on;
|
|
31509
|
+
font-size: 13px;
|
|
31510
|
+
line-height: 20px;
|
|
31155
31511
|
}
|
|
31156
|
-
|
|
31157
|
-
|
|
31512
|
+
|
|
31513
|
+
.lngllvn {
|
|
31514
|
+
font-family: Inter;
|
|
31515
|
+
font-style: normal;
|
|
31516
|
+
font-weight: bold;
|
|
31517
|
+
text-transform: uppercase;
|
|
31518
|
+
font-feature-settings: "cpsp" on;
|
|
31519
|
+
font-size: 13px;
|
|
31520
|
+
line-height: 20px;
|
|
31158
31521
|
}
|
|
31159
|
-
|
|
31160
|
-
|
|
31161
|
-
|
|
31162
|
-
|
|
31163
|
-
|
|
31522
|
+
|
|
31523
|
+
.l2i7fo9 {
|
|
31524
|
+
font-family: Inter;
|
|
31525
|
+
font-style: normal;
|
|
31526
|
+
font-weight: normal;
|
|
31527
|
+
font-size: 12px;
|
|
31528
|
+
line-height: 18px;
|
|
31164
31529
|
}
|
|
31165
|
-
|
|
31166
|
-
|
|
31530
|
+
|
|
31531
|
+
.l1x7hscx {
|
|
31532
|
+
font-family: Inter;
|
|
31533
|
+
font-style: normal;
|
|
31534
|
+
font-weight: 500;
|
|
31535
|
+
font-size: 12px;
|
|
31536
|
+
line-height: 18px;
|
|
31167
31537
|
}
|
|
31168
|
-
|
|
31169
|
-
|
|
31538
|
+
|
|
31539
|
+
.le1jwan {
|
|
31540
|
+
font-family: Inter;
|
|
31541
|
+
font-style: normal;
|
|
31542
|
+
font-weight: bold;
|
|
31543
|
+
font-size: 12px;
|
|
31544
|
+
line-height: 18px;
|
|
31170
31545
|
}
|
|
31171
|
-
|
|
31172
|
-
|
|
31546
|
+
|
|
31547
|
+
.lyxynfj {
|
|
31548
|
+
font-family: Inter;
|
|
31549
|
+
font-style: normal;
|
|
31550
|
+
font-weight: normal;
|
|
31551
|
+
font-size: 12px;
|
|
31552
|
+
line-height: 18px;
|
|
31173
31553
|
}
|
|
31174
|
-
|
|
31175
|
-
|
|
31176
|
-
|
|
31177
|
-
|
|
31178
|
-
|
|
31179
|
-
|
|
31554
|
+
|
|
31555
|
+
.lpb2nxv {
|
|
31556
|
+
font-family: Inter;
|
|
31557
|
+
font-style: normal;
|
|
31558
|
+
font-weight: 500;
|
|
31559
|
+
font-size: 12px;
|
|
31560
|
+
line-height: 18px;
|
|
31180
31561
|
}
|
|
31181
|
-
|
|
31182
|
-
.
|
|
31562
|
+
|
|
31563
|
+
.l1r8o3vv {
|
|
31564
|
+
font-family: Inter;
|
|
31565
|
+
font-style: normal;
|
|
31183
31566
|
font-weight: bold;
|
|
31184
|
-
font-size:
|
|
31185
|
-
|
|
31567
|
+
font-size: 12px;
|
|
31568
|
+
line-height: 18px;
|
|
31186
31569
|
}
|
|
31187
|
-
|
|
31188
|
-
|
|
31189
|
-
|
|
31190
|
-
|
|
31570
|
+
|
|
31571
|
+
.lemnjy2 {
|
|
31572
|
+
font-family: Inter;
|
|
31573
|
+
font-style: normal;
|
|
31574
|
+
font-weight: normal;
|
|
31575
|
+
text-transform: uppercase;
|
|
31576
|
+
font-feature-settings: "cpsp" on;
|
|
31577
|
+
font-size: 12px;
|
|
31578
|
+
line-height: 18px;
|
|
31191
31579
|
}
|
|
31192
|
-
|
|
31193
|
-
|
|
31194
|
-
|
|
31195
|
-
|
|
31196
|
-
|
|
31197
|
-
|
|
31580
|
+
|
|
31581
|
+
.lrc42gb {
|
|
31582
|
+
font-family: Inter;
|
|
31583
|
+
font-style: normal;
|
|
31584
|
+
font-weight: bold;
|
|
31585
|
+
text-transform: uppercase;
|
|
31586
|
+
font-feature-settings: "cpsp" on;
|
|
31587
|
+
font-size: 12px;
|
|
31588
|
+
line-height: 18px;
|
|
31198
31589
|
}
|
|
31199
|
-
|
|
31200
|
-
|
|
31201
|
-
|
|
31202
|
-
|
|
31203
|
-
|
|
31204
|
-
|
|
31590
|
+
|
|
31591
|
+
.fqaz4mb {
|
|
31592
|
+
font-family: Inter;
|
|
31593
|
+
font-style: normal;
|
|
31594
|
+
font-weight: normal;
|
|
31595
|
+
font-size: 13px;
|
|
31596
|
+
line-height: 20px;
|
|
31205
31597
|
}
|
|
31206
|
-
|
|
31207
|
-
|
|
31598
|
+
|
|
31599
|
+
.f13we5o {
|
|
31600
|
+
font-family: Inter;
|
|
31601
|
+
font-style: normal;
|
|
31602
|
+
font-weight: normal;
|
|
31603
|
+
font-size: 13px;
|
|
31604
|
+
line-height: 20px;
|
|
31208
31605
|
}
|
|
31209
31606
|
|
|
31210
|
-
.
|
|
31607
|
+
.ffmjua2 {
|
|
31211
31608
|
font-family: Inter;
|
|
31212
31609
|
font-style: normal;
|
|
31213
|
-
font-weight:
|
|
31214
|
-
font-size:
|
|
31215
|
-
line-height:
|
|
31610
|
+
font-weight: normal;
|
|
31611
|
+
font-size: 12px;
|
|
31612
|
+
line-height: 18px;
|
|
31216
31613
|
}
|
|
31217
31614
|
|
|
31218
|
-
.
|
|
31615
|
+
.fz2mxw0 {
|
|
31219
31616
|
font-family: Inter;
|
|
31220
31617
|
font-style: normal;
|
|
31221
|
-
font-weight:
|
|
31222
|
-
font-size:
|
|
31223
|
-
line-height:
|
|
31618
|
+
font-weight: normal;
|
|
31619
|
+
font-size: 12px;
|
|
31620
|
+
line-height: 18px;
|
|
31224
31621
|
}
|
|
31225
31622
|
|
|
31226
|
-
.
|
|
31623
|
+
.t1ertzoh {
|
|
31227
31624
|
font-family: Inter;
|
|
31228
31625
|
font-style: normal;
|
|
31229
31626
|
font-weight: normal;
|
|
31230
|
-
font-
|
|
31231
|
-
|
|
31627
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31628
|
+
font-size: 13px;
|
|
31629
|
+
line-height: 20px;
|
|
31232
31630
|
}
|
|
31233
31631
|
|
|
31234
|
-
.
|
|
31632
|
+
.t19bge8r {
|
|
31235
31633
|
font-family: Inter;
|
|
31236
31634
|
font-style: normal;
|
|
31237
|
-
font-weight:
|
|
31238
|
-
font-
|
|
31239
|
-
|
|
31635
|
+
font-weight: normal;
|
|
31636
|
+
font-feature-settings: "zero" on;
|
|
31637
|
+
font-size: 13px;
|
|
31638
|
+
line-height: 20px;
|
|
31240
31639
|
}
|
|
31241
31640
|
|
|
31242
|
-
.
|
|
31641
|
+
.tjrzfyl {
|
|
31243
31642
|
font-family: Inter;
|
|
31244
31643
|
font-style: normal;
|
|
31245
31644
|
font-weight: normal;
|
|
31246
|
-
font-
|
|
31247
|
-
|
|
31645
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31646
|
+
font-size: 12px;
|
|
31647
|
+
line-height: 18px;
|
|
31248
31648
|
}
|
|
31249
31649
|
|
|
31250
|
-
.
|
|
31650
|
+
.tm6s7bo {
|
|
31251
31651
|
font-family: Inter;
|
|
31252
31652
|
font-style: normal;
|
|
31253
|
-
font-weight:
|
|
31254
|
-
font-
|
|
31255
|
-
|
|
31653
|
+
font-weight: 500;
|
|
31654
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31655
|
+
font-size: 12px;
|
|
31656
|
+
line-height: 18px;
|
|
31256
31657
|
}
|
|
31257
31658
|
|
|
31258
|
-
.
|
|
31659
|
+
.t19zq6ic {
|
|
31259
31660
|
font-family: Inter;
|
|
31260
31661
|
font-style: normal;
|
|
31261
31662
|
font-weight: normal;
|
|
31262
|
-
font-
|
|
31263
|
-
|
|
31663
|
+
font-feature-settings: "zero" on;
|
|
31664
|
+
font-size: 12px;
|
|
31665
|
+
line-height: 18px;
|
|
31264
31666
|
}
|
|
31265
31667
|
|
|
31266
|
-
.
|
|
31668
|
+
.t1gduru8 {
|
|
31669
|
+
font-family: Inter;
|
|
31670
|
+
font-style: normal;
|
|
31671
|
+
font-weight: 500;
|
|
31672
|
+
font-feature-settings: "zero" on;
|
|
31673
|
+
font-size: 12px;
|
|
31674
|
+
line-height: 18px;
|
|
31675
|
+
}
|
|
31676
|
+
|
|
31677
|
+
.t55raab {
|
|
31267
31678
|
font-family: Inter;
|
|
31268
31679
|
font-style: normal;
|
|
31269
31680
|
font-weight: bold;
|
|
31681
|
+
font-feature-settings: "zero" on;
|
|
31270
31682
|
font-size: 16px;
|
|
31271
|
-
line-height:
|
|
31683
|
+
line-height: 24px;
|
|
31684
|
+
}
|
|
31685
|
+
|
|
31686
|
+
.u1w9abfe {
|
|
31687
|
+
font-family: Inter;
|
|
31688
|
+
font-style: normal;
|
|
31689
|
+
font-weight: normal;
|
|
31690
|
+
font-size: 10px;
|
|
31691
|
+
line-height: 12px;
|
|
31692
|
+
}
|
|
31693
|
+
|
|
31694
|
+
.t1upn1sz {
|
|
31695
|
+
height: 100%;
|
|
31696
|
+
}
|
|
31697
|
+
|
|
31698
|
+
.tta5kd2 {
|
|
31699
|
+
height: 100%;
|
|
31700
|
+
}
|
|
31701
|
+
.tta5kd2.empty-table .ant-table-content {
|
|
31702
|
+
overflow: visible !important;
|
|
31703
|
+
height: 100%;
|
|
31704
|
+
}
|
|
31705
|
+
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
31706
|
+
height: 100%;
|
|
31707
|
+
}
|
|
31708
|
+
.tta5kd2.empty-table .ant-table-content table {
|
|
31709
|
+
width: 100% !important;
|
|
31710
|
+
height: 100%;
|
|
31711
|
+
}
|
|
31712
|
+
.tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31713
|
+
padding: 15px 0;
|
|
31714
|
+
}
|
|
31715
|
+
.tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
|
|
31716
|
+
display: none;
|
|
31717
|
+
}
|
|
31718
|
+
.tta5kd2 .active-row td:nth-child(1) {
|
|
31719
|
+
font-weight: 700;
|
|
31720
|
+
}
|
|
31721
|
+
.tta5kd2.has-selection .active-row td:nth-child(2) {
|
|
31722
|
+
font-weight: 700;
|
|
31723
|
+
}
|
|
31724
|
+
.tta5kd2 .ant-spin-nested-loading {
|
|
31725
|
+
height: 100%;
|
|
31726
|
+
}
|
|
31727
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin-container {
|
|
31728
|
+
height: 100%;
|
|
31729
|
+
overflow: visible;
|
|
31730
|
+
}
|
|
31731
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin {
|
|
31732
|
+
max-height: none;
|
|
31733
|
+
}
|
|
31734
|
+
.tta5kd2.table-init-loading .ant-spin-blur thead,
|
|
31735
|
+
.tta5kd2.table-init-loading .ant-spin-blur tbody {
|
|
31736
|
+
display: none;
|
|
31737
|
+
}
|
|
31738
|
+
.tta5kd2 td.ant-table-column-sort {
|
|
31739
|
+
background: transparent;
|
|
31740
|
+
}
|
|
31741
|
+
.tta5kd2 td.ant-table-cell-fix-left,
|
|
31742
|
+
.tta5kd2 td.ant-table-cell-fix-right {
|
|
31743
|
+
background: #fff;
|
|
31744
|
+
padding: 0 !important;
|
|
31745
|
+
}
|
|
31746
|
+
.tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
|
|
31747
|
+
.tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
31748
|
+
display: flex;
|
|
31749
|
+
align-items: center;
|
|
31750
|
+
height: 100%;
|
|
31751
|
+
padding: 8px;
|
|
31752
|
+
}
|
|
31753
|
+
.tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
|
|
31754
|
+
.tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
|
|
31755
|
+
overflow: hidden;
|
|
31756
|
+
text-overflow: ellipsis;
|
|
31757
|
+
width: 100%;
|
|
31758
|
+
}
|
|
31759
|
+
.tta5kd2 .ant-table-container {
|
|
31760
|
+
height: 100%;
|
|
31761
|
+
}
|
|
31762
|
+
.tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
|
|
31763
|
+
box-shadow: none !important;
|
|
31764
|
+
}
|
|
31765
|
+
.tta5kd2 .ant-table {
|
|
31766
|
+
border-radius: 0px;
|
|
31767
|
+
border-left: none;
|
|
31768
|
+
border-right: none;
|
|
31769
|
+
border-bottom: none;
|
|
31770
|
+
height: 100%;
|
|
31771
|
+
font-size: 12px;
|
|
31772
|
+
background: transparent;
|
|
31773
|
+
}
|
|
31774
|
+
.tta5kd2 .ant-table .ant-table-header {
|
|
31775
|
+
position: relative;
|
|
31776
|
+
z-index: 3;
|
|
31777
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
31778
|
+
margin-bottom: -1px;
|
|
31779
|
+
}
|
|
31780
|
+
.tta5kd2 .ant-table .time-wrapper .date,
|
|
31781
|
+
.tta5kd2 .ant-table .value {
|
|
31782
|
+
color: #2d3a56;
|
|
31783
|
+
}
|
|
31784
|
+
.tta5kd2 .ant-table .time-wrapper .time,
|
|
31785
|
+
.tta5kd2 .ant-table .unit {
|
|
31786
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31787
|
+
}
|
|
31788
|
+
.tta5kd2 .ant-table .ant-table-selection {
|
|
31789
|
+
position: unset;
|
|
31790
|
+
text-align: center;
|
|
31791
|
+
}
|
|
31792
|
+
.tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
31793
|
+
background: #fff;
|
|
31794
|
+
}
|
|
31795
|
+
.tta5kd2 .ant-table .anticon-setting {
|
|
31796
|
+
cursor: pointer;
|
|
31797
|
+
position: absolute;
|
|
31798
|
+
top: 50%;
|
|
31799
|
+
right: 12px;
|
|
31800
|
+
transform: translateY(-50%);
|
|
31801
|
+
}
|
|
31802
|
+
.tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
31803
|
+
box-shadow: none;
|
|
31804
|
+
width: 1px;
|
|
31805
|
+
background: rgba(213, 219, 227, 0.6);
|
|
31806
|
+
}
|
|
31807
|
+
.tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
31808
|
+
box-shadow: none;
|
|
31809
|
+
width: 1px;
|
|
31810
|
+
background: rgba(213, 219, 227, 0.6);
|
|
31811
|
+
}
|
|
31812
|
+
.tta5kd2 .ant-table .ant-table-tbody {
|
|
31813
|
+
position: relative;
|
|
31814
|
+
}
|
|
31815
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
|
|
31816
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31817
|
+
border-bottom: 1px solid white;
|
|
31818
|
+
height: 40px;
|
|
31819
|
+
vertical-align: middle;
|
|
31820
|
+
transition: background 0ms;
|
|
31821
|
+
color: #00122e;
|
|
31822
|
+
}
|
|
31823
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
31824
|
+
background: #f2f5fa;
|
|
31825
|
+
border-bottom-color: #f2f5fa;
|
|
31826
|
+
}
|
|
31827
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
|
|
31828
|
+
height: auto;
|
|
31829
|
+
color: #00122e;
|
|
31830
|
+
font-size: 12px;
|
|
31831
|
+
text-align: left;
|
|
31832
|
+
transition: none;
|
|
31833
|
+
overflow: hidden;
|
|
31834
|
+
text-overflow: ellipsis;
|
|
31835
|
+
white-space: nowrap;
|
|
31272
31836
|
}
|
|
31273
|
-
|
|
31274
|
-
|
|
31275
|
-
font-family: Inter;
|
|
31276
|
-
font-style: normal;
|
|
31277
|
-
font-weight: normal;
|
|
31278
|
-
font-size: 16px;
|
|
31279
|
-
line-height: 22px;
|
|
31837
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
31838
|
+
color: #0096ff;
|
|
31280
31839
|
}
|
|
31281
|
-
|
|
31282
|
-
|
|
31283
|
-
|
|
31284
|
-
|
|
31285
|
-
|
|
31286
|
-
font-size: 14px;
|
|
31287
|
-
line-height: 20px;
|
|
31840
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
31841
|
+
overflow: hidden;
|
|
31842
|
+
text-overflow: ellipsis;
|
|
31843
|
+
width: 100%;
|
|
31844
|
+
vertical-align: middle;
|
|
31288
31845
|
}
|
|
31289
|
-
|
|
31290
|
-
|
|
31291
|
-
font-family: Inter;
|
|
31292
|
-
font-style: normal;
|
|
31293
|
-
font-weight: normal;
|
|
31294
|
-
font-size: 14px;
|
|
31295
|
-
line-height: 20px;
|
|
31846
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
31847
|
+
line-height: 0px;
|
|
31296
31848
|
}
|
|
31297
|
-
|
|
31298
|
-
|
|
31299
|
-
font-family: Inter;
|
|
31300
|
-
font-style: normal;
|
|
31301
|
-
font-weight: bold;
|
|
31302
|
-
font-size: 12px;
|
|
31303
|
-
line-height: 18px;
|
|
31849
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.align-right {
|
|
31850
|
+
padding-right: 25px;
|
|
31304
31851
|
}
|
|
31305
|
-
|
|
31306
|
-
|
|
31307
|
-
font-family: Inter;
|
|
31308
|
-
font-style: normal;
|
|
31309
|
-
font-weight: normal;
|
|
31310
|
-
font-size: 12px;
|
|
31311
|
-
line-height: 18px;
|
|
31852
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
31853
|
+
border-top-color: transparent;
|
|
31312
31854
|
}
|
|
31313
|
-
|
|
31314
|
-
.
|
|
31315
|
-
|
|
31316
|
-
font-style: normal;
|
|
31317
|
-
font-weight: bold;
|
|
31318
|
-
text-transform: uppercase;
|
|
31319
|
-
font-feature-settings: "cpsp" on;
|
|
31320
|
-
font-size: 12px;
|
|
31321
|
-
line-height: 18px;
|
|
31855
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
31856
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31857
|
+
border-color: transparent transparent white;
|
|
31322
31858
|
}
|
|
31323
|
-
|
|
31324
|
-
|
|
31325
|
-
font-family: Inter;
|
|
31326
|
-
font-style: normal;
|
|
31327
|
-
font-weight: normal;
|
|
31328
|
-
text-transform: uppercase;
|
|
31329
|
-
font-feature-settings: "cpsp" on;
|
|
31330
|
-
font-size: 12px;
|
|
31331
|
-
line-height: 18px;
|
|
31859
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
31860
|
+
border-radius: 8px 0 0 8px;
|
|
31332
31861
|
}
|
|
31333
|
-
|
|
31334
|
-
|
|
31335
|
-
font-family: Inter;
|
|
31336
|
-
font-style: normal;
|
|
31337
|
-
font-weight: normal;
|
|
31338
|
-
font-size: 16px;
|
|
31339
|
-
line-height: 24px;
|
|
31862
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
31863
|
+
border-radius: 8px 0 0 8px;
|
|
31340
31864
|
}
|
|
31341
|
-
|
|
31342
|
-
|
|
31343
|
-
|
|
31344
|
-
|
|
31345
|
-
|
|
31346
|
-
|
|
31347
|
-
line-height: 24px;
|
|
31865
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
31866
|
+
content: "";
|
|
31867
|
+
width: 4px;
|
|
31868
|
+
top: -1px;
|
|
31869
|
+
bottom: -1px;
|
|
31870
|
+
background: white;
|
|
31348
31871
|
}
|
|
31349
|
-
|
|
31350
|
-
|
|
31351
|
-
font-family: Inter;
|
|
31352
|
-
font-style: normal;
|
|
31353
|
-
font-weight: normal;
|
|
31354
|
-
font-size: 16px;
|
|
31355
|
-
line-height: 24px;
|
|
31872
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
31873
|
+
border-radius: 0 8px 8px 0;
|
|
31356
31874
|
}
|
|
31357
|
-
|
|
31358
|
-
|
|
31359
|
-
|
|
31360
|
-
|
|
31361
|
-
font-weight: bold;
|
|
31362
|
-
font-size: 16px;
|
|
31363
|
-
line-height: 24px;
|
|
31875
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
31876
|
+
border-radius: 0;
|
|
31877
|
+
background: white;
|
|
31878
|
+
border-top: none;
|
|
31364
31879
|
}
|
|
31365
|
-
|
|
31366
|
-
|
|
31367
|
-
|
|
31368
|
-
|
|
31369
|
-
font-weight: normal;
|
|
31370
|
-
text-transform: uppercase;
|
|
31371
|
-
font-feature-settings: "cpsp" on;
|
|
31372
|
-
font-size: 16px;
|
|
31373
|
-
line-height: 24px;
|
|
31880
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
31881
|
+
border-top: 1px solid transparent;
|
|
31882
|
+
border-radius: 0 8px 8px 0;
|
|
31883
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31374
31884
|
}
|
|
31375
|
-
|
|
31376
|
-
|
|
31377
|
-
|
|
31378
|
-
font-style: normal;
|
|
31379
|
-
font-weight: bold;
|
|
31380
|
-
text-transform: uppercase;
|
|
31381
|
-
font-feature-settings: "cpsp" on;
|
|
31382
|
-
font-size: 16px;
|
|
31383
|
-
line-height: 24px;
|
|
31885
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
31886
|
+
background: white;
|
|
31887
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31384
31888
|
}
|
|
31385
|
-
|
|
31386
|
-
|
|
31387
|
-
|
|
31388
|
-
|
|
31389
|
-
|
|
31390
|
-
font-size: 14px;
|
|
31391
|
-
line-height: 22px;
|
|
31889
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
31890
|
+
display: flex;
|
|
31891
|
+
align-items: center;
|
|
31892
|
+
height: 100%;
|
|
31893
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31392
31894
|
}
|
|
31393
|
-
|
|
31394
|
-
|
|
31395
|
-
|
|
31396
|
-
font-style: normal;
|
|
31397
|
-
font-weight: 500;
|
|
31398
|
-
font-size: 14px;
|
|
31399
|
-
line-height: 22px;
|
|
31895
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
31896
|
+
background: white;
|
|
31897
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31400
31898
|
}
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31404
|
-
|
|
31405
|
-
|
|
31406
|
-
font-size: 14px;
|
|
31407
|
-
line-height: 22px;
|
|
31899
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
31900
|
+
display: flex;
|
|
31901
|
+
align-items: center;
|
|
31902
|
+
height: 100%;
|
|
31903
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31408
31904
|
}
|
|
31409
|
-
|
|
31410
|
-
.
|
|
31411
|
-
font-family: Inter;
|
|
31412
|
-
font-style: normal;
|
|
31413
|
-
font-weight: normal;
|
|
31414
|
-
font-size: 14px;
|
|
31415
|
-
line-height: 22px;
|
|
31905
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
31906
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
31416
31907
|
}
|
|
31417
|
-
|
|
31418
|
-
.
|
|
31419
|
-
|
|
31420
|
-
font-style: normal;
|
|
31421
|
-
font-weight: bold;
|
|
31422
|
-
font-size: 14px;
|
|
31423
|
-
line-height: 22px;
|
|
31908
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
|
|
31909
|
+
box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
|
|
31910
|
+
border-radius: 8px;
|
|
31424
31911
|
}
|
|
31425
|
-
|
|
31426
|
-
|
|
31427
|
-
font-family: Inter;
|
|
31428
|
-
font-style: normal;
|
|
31429
|
-
font-weight: normal;
|
|
31430
|
-
text-transform: uppercase;
|
|
31431
|
-
font-feature-settings: "cpsp" on;
|
|
31432
|
-
font-size: 14px;
|
|
31433
|
-
line-height: 22px;
|
|
31912
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
|
|
31913
|
+
border-top-color: white;
|
|
31434
31914
|
}
|
|
31435
|
-
|
|
31436
|
-
.
|
|
31437
|
-
|
|
31438
|
-
|
|
31439
|
-
font-weight: bold;
|
|
31440
|
-
text-transform: uppercase;
|
|
31441
|
-
font-feature-settings: "cpsp" on;
|
|
31442
|
-
font-size: 14px;
|
|
31443
|
-
line-height: 22px;
|
|
31915
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
|
|
31916
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31917
|
+
border-bottom-color: transparent;
|
|
31918
|
+
border-top-color: transparent;
|
|
31444
31919
|
}
|
|
31445
|
-
|
|
31446
|
-
|
|
31447
|
-
font-family: Inter;
|
|
31448
|
-
font-style: normal;
|
|
31449
|
-
font-weight: normal;
|
|
31450
|
-
font-size: 13px;
|
|
31451
|
-
line-height: 20px;
|
|
31920
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
|
|
31921
|
+
border-radius: 8px 0 0 8px;
|
|
31452
31922
|
}
|
|
31453
|
-
|
|
31454
|
-
|
|
31455
|
-
font-family: Inter;
|
|
31456
|
-
font-style: normal;
|
|
31457
|
-
font-weight: 600;
|
|
31458
|
-
font-size: 13px;
|
|
31459
|
-
line-height: 20px;
|
|
31923
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
|
|
31924
|
+
border-radius: 0 8px 8px 0;
|
|
31460
31925
|
}
|
|
31461
|
-
|
|
31462
|
-
.
|
|
31463
|
-
font-family: Inter;
|
|
31464
|
-
font-style: normal;
|
|
31465
|
-
font-weight: bold;
|
|
31466
|
-
font-size: 13px;
|
|
31467
|
-
line-height: 20px;
|
|
31926
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
|
|
31927
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31468
31928
|
}
|
|
31469
|
-
|
|
31470
|
-
|
|
31471
|
-
font-
|
|
31472
|
-
|
|
31473
|
-
|
|
31474
|
-
|
|
31475
|
-
|
|
31929
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th {
|
|
31930
|
+
background: #fff;
|
|
31931
|
+
font-weight: 400;
|
|
31932
|
+
position: relative;
|
|
31933
|
+
border-bottom: none;
|
|
31934
|
+
color: #00122e;
|
|
31935
|
+
transition: none;
|
|
31936
|
+
padding: 15px 8px 15px 8px;
|
|
31476
31937
|
}
|
|
31477
|
-
|
|
31478
|
-
|
|
31479
|
-
|
|
31480
|
-
|
|
31481
|
-
|
|
31482
|
-
|
|
31483
|
-
|
|
31938
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
|
|
31939
|
+
content: "";
|
|
31940
|
+
width: 1px;
|
|
31941
|
+
top: 0;
|
|
31942
|
+
bottom: 0;
|
|
31943
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31944
|
+
position: absolute;
|
|
31945
|
+
right: 0;
|
|
31484
31946
|
}
|
|
31485
|
-
|
|
31486
|
-
|
|
31487
|
-
font-family: Inter;
|
|
31488
|
-
font-style: normal;
|
|
31489
|
-
font-weight: bold;
|
|
31490
|
-
font-size: 13px;
|
|
31491
|
-
line-height: 20px;
|
|
31947
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
|
|
31948
|
+
padding: unset;
|
|
31492
31949
|
}
|
|
31493
|
-
|
|
31494
|
-
|
|
31495
|
-
font-family: Inter;
|
|
31496
|
-
font-style: normal;
|
|
31497
|
-
font-weight: normal;
|
|
31498
|
-
text-transform: uppercase;
|
|
31499
|
-
font-feature-settings: "cpsp" on;
|
|
31500
|
-
font-size: 13px;
|
|
31501
|
-
line-height: 20px;
|
|
31950
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
|
|
31951
|
+
display: none;
|
|
31502
31952
|
}
|
|
31503
|
-
|
|
31504
|
-
|
|
31505
|
-
|
|
31506
|
-
|
|
31507
|
-
|
|
31508
|
-
text-transform: uppercase;
|
|
31509
|
-
font-feature-settings: "cpsp" on;
|
|
31510
|
-
font-size: 13px;
|
|
31511
|
-
line-height: 20px;
|
|
31953
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
31954
|
+
width: 100%;
|
|
31955
|
+
overflow: hidden;
|
|
31956
|
+
white-space: nowrap;
|
|
31957
|
+
text-overflow: ellipsis;
|
|
31512
31958
|
}
|
|
31513
|
-
|
|
31514
|
-
|
|
31515
|
-
|
|
31516
|
-
|
|
31517
|
-
font-weight: normal;
|
|
31518
|
-
font-size: 12px;
|
|
31519
|
-
line-height: 18px;
|
|
31959
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
|
|
31960
|
+
overflow: hidden;
|
|
31961
|
+
text-overflow: ellipsis;
|
|
31962
|
+
flex: 1;
|
|
31520
31963
|
}
|
|
31521
|
-
|
|
31522
|
-
|
|
31523
|
-
font-family: Inter;
|
|
31524
|
-
font-style: normal;
|
|
31525
|
-
font-weight: 500;
|
|
31526
|
-
font-size: 12px;
|
|
31527
|
-
line-height: 18px;
|
|
31964
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
|
|
31965
|
+
padding: 15px 25px 15px 8px;
|
|
31528
31966
|
}
|
|
31529
|
-
|
|
31530
|
-
|
|
31531
|
-
font-family: Inter;
|
|
31532
|
-
font-style: normal;
|
|
31533
|
-
font-weight: bold;
|
|
31534
|
-
font-size: 12px;
|
|
31535
|
-
line-height: 18px;
|
|
31967
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
31968
|
+
padding: 0;
|
|
31536
31969
|
}
|
|
31537
|
-
|
|
31538
|
-
|
|
31539
|
-
|
|
31540
|
-
|
|
31541
|
-
|
|
31542
|
-
|
|
31543
|
-
|
|
31970
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
|
|
31971
|
+
position: absolute;
|
|
31972
|
+
right: 6px;
|
|
31973
|
+
top: 50%;
|
|
31974
|
+
transform: translateY(-50%);
|
|
31975
|
+
height: 16px;
|
|
31976
|
+
display: none;
|
|
31977
|
+
transition: transform 320ms ease;
|
|
31544
31978
|
}
|
|
31545
|
-
|
|
31546
|
-
|
|
31547
|
-
|
|
31548
|
-
font-style: normal;
|
|
31549
|
-
font-weight: 500;
|
|
31550
|
-
font-size: 12px;
|
|
31551
|
-
line-height: 18px;
|
|
31979
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
|
|
31980
|
+
display: block;
|
|
31981
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
31552
31982
|
}
|
|
31553
|
-
|
|
31554
|
-
|
|
31555
|
-
font-family: Inter;
|
|
31556
|
-
font-style: normal;
|
|
31557
|
-
font-weight: bold;
|
|
31558
|
-
font-size: 12px;
|
|
31559
|
-
line-height: 18px;
|
|
31983
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
|
|
31984
|
+
display: block;
|
|
31560
31985
|
}
|
|
31561
|
-
|
|
31562
|
-
|
|
31563
|
-
font-family: Inter;
|
|
31564
|
-
font-style: normal;
|
|
31565
|
-
font-weight: normal;
|
|
31566
|
-
text-transform: uppercase;
|
|
31567
|
-
font-feature-settings: "cpsp" on;
|
|
31568
|
-
font-size: 12px;
|
|
31569
|
-
line-height: 18px;
|
|
31986
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
|
|
31987
|
+
display: none;
|
|
31570
31988
|
}
|
|
31571
|
-
|
|
31572
|
-
|
|
31573
|
-
font-family: Inter;
|
|
31574
|
-
font-style: normal;
|
|
31575
|
-
font-weight: bold;
|
|
31576
|
-
text-transform: uppercase;
|
|
31577
|
-
font-feature-settings: "cpsp" on;
|
|
31578
|
-
font-size: 12px;
|
|
31579
|
-
line-height: 18px;
|
|
31989
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
|
|
31990
|
+
transform: translateY(-50%);
|
|
31580
31991
|
}
|
|
31581
|
-
|
|
31582
|
-
|
|
31583
|
-
font-family: Inter;
|
|
31584
|
-
font-style: normal;
|
|
31585
|
-
font-weight: normal;
|
|
31586
|
-
font-size: 13px;
|
|
31587
|
-
line-height: 20px;
|
|
31992
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
|
|
31993
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
31588
31994
|
}
|
|
31589
|
-
|
|
31590
|
-
|
|
31591
|
-
font-family: Inter;
|
|
31592
|
-
font-style: normal;
|
|
31593
|
-
font-weight: normal;
|
|
31594
|
-
font-size: 13px;
|
|
31595
|
-
line-height: 20px;
|
|
31995
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
31996
|
+
background: #f2f5fa;
|
|
31596
31997
|
}
|
|
31597
|
-
|
|
31598
|
-
|
|
31599
|
-
font-family: Inter;
|
|
31600
|
-
font-style: normal;
|
|
31601
|
-
font-weight: normal;
|
|
31602
|
-
font-size: 12px;
|
|
31603
|
-
line-height: 18px;
|
|
31998
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
31999
|
+
display: block;
|
|
31604
32000
|
}
|
|
31605
|
-
|
|
31606
|
-
|
|
31607
|
-
font-family: Inter;
|
|
31608
|
-
font-style: normal;
|
|
31609
|
-
font-weight: normal;
|
|
31610
|
-
font-size: 12px;
|
|
31611
|
-
line-height: 18px;
|
|
32001
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
|
|
32002
|
+
padding-right: 25px;
|
|
31612
32003
|
}
|
|
31613
|
-
|
|
31614
|
-
|
|
31615
|
-
font-family: Inter;
|
|
31616
|
-
font-style: normal;
|
|
31617
|
-
font-weight: normal;
|
|
31618
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31619
|
-
font-size: 13px;
|
|
31620
|
-
line-height: 20px;
|
|
32004
|
+
.tta5kd2 .ant-table .ant-table-selection-column {
|
|
32005
|
+
padding: 0 !important;
|
|
31621
32006
|
}
|
|
31622
|
-
|
|
31623
|
-
|
|
31624
|
-
|
|
31625
|
-
|
|
31626
|
-
|
|
31627
|
-
font-feature-settings: "zero" on;
|
|
31628
|
-
font-size: 13px;
|
|
31629
|
-
line-height: 20px;
|
|
32007
|
+
.tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
32008
|
+
position: absolute;
|
|
32009
|
+
left: 50%;
|
|
32010
|
+
top: 50%;
|
|
32011
|
+
transform: translate(-50%, -50%);
|
|
31630
32012
|
}
|
|
31631
|
-
|
|
31632
|
-
|
|
31633
|
-
font-family: Inter;
|
|
31634
|
-
font-style: normal;
|
|
31635
|
-
font-weight: normal;
|
|
31636
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31637
|
-
font-size: 12px;
|
|
31638
|
-
line-height: 18px;
|
|
32013
|
+
.tta5kd2 .ant-table .ant-table-selection-column:after {
|
|
32014
|
+
display: none;
|
|
31639
32015
|
}
|
|
31640
|
-
|
|
31641
|
-
|
|
31642
|
-
font-family: Inter;
|
|
31643
|
-
font-style: normal;
|
|
31644
|
-
font-weight: 500;
|
|
31645
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31646
|
-
font-size: 12px;
|
|
31647
|
-
line-height: 18px;
|
|
32016
|
+
.tta5kd2 .ant-table .ant-table-hide-scrollbar {
|
|
32017
|
+
background: #fff;
|
|
31648
32018
|
}
|
|
31649
|
-
|
|
31650
|
-
|
|
31651
|
-
font-family: Inter;
|
|
31652
|
-
font-style: normal;
|
|
31653
|
-
font-weight: normal;
|
|
31654
|
-
font-feature-settings: "zero" on;
|
|
31655
|
-
font-size: 12px;
|
|
31656
|
-
line-height: 18px;
|
|
32019
|
+
.tta5kd2 .ant-table .ant-table-placeholder {
|
|
32020
|
+
background: inherit;
|
|
31657
32021
|
}
|
|
31658
|
-
|
|
31659
|
-
|
|
31660
|
-
|
|
31661
|
-
|
|
31662
|
-
|
|
31663
|
-
|
|
31664
|
-
font-size: 12px;
|
|
31665
|
-
line-height: 18px;
|
|
32022
|
+
.tta5kd2 .ant-table .ant-table-placeholder td {
|
|
32023
|
+
position: static;
|
|
32024
|
+
border: none;
|
|
32025
|
+
background: inherit !important;
|
|
32026
|
+
height: 100px;
|
|
32027
|
+
vertical-align: middle;
|
|
31666
32028
|
}
|
|
31667
|
-
|
|
31668
|
-
.
|
|
31669
|
-
font-family: Inter;
|
|
31670
|
-
font-style: normal;
|
|
32029
|
+
.tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
|
|
32030
|
+
.tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31671
32031
|
font-weight: bold;
|
|
31672
|
-
font-
|
|
31673
|
-
|
|
31674
|
-
line-height: 24px;
|
|
32032
|
+
font-size: 20px;
|
|
32033
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31675
32034
|
}
|
|
31676
|
-
|
|
31677
|
-
|
|
31678
|
-
|
|
31679
|
-
|
|
31680
|
-
font-weight: normal;
|
|
31681
|
-
font-size: 10px;
|
|
31682
|
-
line-height: 12px;
|
|
32035
|
+
.tta5kd2 .ant-table td.cell__action_ {
|
|
32036
|
+
padding: 0 !important;
|
|
32037
|
+
position: relative;
|
|
32038
|
+
background: #fff;
|
|
31683
32039
|
}
|
|
31684
|
-
|
|
31685
|
-
|
|
31686
|
-
display:
|
|
32040
|
+
.tta5kd2 .ant-table td.cell__action_ > * {
|
|
32041
|
+
height: 100%;
|
|
32042
|
+
display: flex;
|
|
32043
|
+
align-items: center;
|
|
32044
|
+
justify-content: flex-end;
|
|
32045
|
+
padding-right: 8px;
|
|
32046
|
+
}
|
|
32047
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button {
|
|
32048
|
+
width: 24px;
|
|
32049
|
+
height: 24px;
|
|
32050
|
+
cursor: pointer;
|
|
32051
|
+
justify-content: center;
|
|
32052
|
+
border-radius: 4px;
|
|
32053
|
+
}
|
|
32054
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
|
|
32055
|
+
background: #fff;
|
|
31687
32056
|
}
|
|
31688
32057
|
|
|
31689
32058
|
.m15dvk92 {
|
|
@@ -31719,6 +32088,22 @@ input.rrg1fkn.ant-input {
|
|
|
31719
32088
|
padding: 8px 12px;
|
|
31720
32089
|
}
|
|
31721
32090
|
|
|
32091
|
+
.berrcjl {
|
|
32092
|
+
color: rgba(10, 37, 85, 0.6);
|
|
32093
|
+
margin-bottom: 4px;
|
|
32094
|
+
}
|
|
32095
|
+
.berrcjl .breadcrumb-link {
|
|
32096
|
+
color: rgba(10, 37, 85, 0.6);
|
|
32097
|
+
cursor: pointer;
|
|
32098
|
+
transition: color 160ms ease;
|
|
32099
|
+
}
|
|
32100
|
+
.berrcjl .breadcrumb-link:hover {
|
|
32101
|
+
color: #0080ff;
|
|
32102
|
+
}
|
|
32103
|
+
.berrcjl .breadcrumb-link:active {
|
|
32104
|
+
color: #005ed1;
|
|
32105
|
+
}
|
|
32106
|
+
|
|
31722
32107
|
.c1uzzomf {
|
|
31723
32108
|
margin-bottom: 16px;
|
|
31724
32109
|
}
|
|
@@ -31741,22 +32126,6 @@ input.rrg1fkn.ant-input {
|
|
|
31741
32126
|
text-align: center;
|
|
31742
32127
|
}
|
|
31743
32128
|
|
|
31744
|
-
.berrcjl {
|
|
31745
|
-
color: rgba(10, 37, 85, 0.6);
|
|
31746
|
-
margin-bottom: 4px;
|
|
31747
|
-
}
|
|
31748
|
-
.berrcjl .breadcrumb-link {
|
|
31749
|
-
color: rgba(10, 37, 85, 0.6);
|
|
31750
|
-
cursor: pointer;
|
|
31751
|
-
transition: color 160ms ease;
|
|
31752
|
-
}
|
|
31753
|
-
.berrcjl .breadcrumb-link:hover {
|
|
31754
|
-
color: #0080ff;
|
|
31755
|
-
}
|
|
31756
|
-
.berrcjl .breadcrumb-link:active {
|
|
31757
|
-
color: #005ed1;
|
|
31758
|
-
}
|
|
31759
|
-
|
|
31760
32129
|
.tje3huy {
|
|
31761
32130
|
width: 100%;
|
|
31762
32131
|
overflow: inherit;
|
|
@@ -31764,6 +32133,35 @@ input.rrg1fkn.ant-input {
|
|
|
31764
32133
|
text-overflow: ellipsis;
|
|
31765
32134
|
}
|
|
31766
32135
|
|
|
32136
|
+
.cav9p2m .ant-collapse-item {
|
|
32137
|
+
border: 0px;
|
|
32138
|
+
background-color: #fff;
|
|
32139
|
+
}
|
|
32140
|
+
.cav9p2m .ant-collapse-item .ant-collapse-header {
|
|
32141
|
+
padding-top: 0px;
|
|
32142
|
+
padding-bottom: 0px;
|
|
32143
|
+
padding-left: 0px !important;
|
|
32144
|
+
padding-right: 24px;
|
|
32145
|
+
}
|
|
32146
|
+
.cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
32147
|
+
right: 0px;
|
|
32148
|
+
}
|
|
32149
|
+
.cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
32150
|
+
padding: 0px;
|
|
32151
|
+
}
|
|
32152
|
+
|
|
32153
|
+
.csf0p6c .ant-collapse-item .ant-collapse-header {
|
|
32154
|
+
padding-right: 0px;
|
|
32155
|
+
cursor: default;
|
|
32156
|
+
}
|
|
32157
|
+
|
|
32158
|
+
.c10crapj {
|
|
32159
|
+
border-radius: 8px;
|
|
32160
|
+
}
|
|
32161
|
+
.c10crapj .ant-card-body {
|
|
32162
|
+
padding: 20px 24px 24px 24px;
|
|
32163
|
+
}
|
|
32164
|
+
|
|
31767
32165
|
.c198s9j3 {
|
|
31768
32166
|
color: #2d3a56;
|
|
31769
32167
|
line-height: 22px;
|
|
@@ -31835,35 +32233,6 @@ input.rrg1fkn.ant-input {
|
|
|
31835
32233
|
margin-left: 24px;
|
|
31836
32234
|
}
|
|
31837
32235
|
|
|
31838
|
-
.c10crapj {
|
|
31839
|
-
border-radius: 8px;
|
|
31840
|
-
}
|
|
31841
|
-
.c10crapj .ant-card-body {
|
|
31842
|
-
padding: 20px 24px 24px 24px;
|
|
31843
|
-
}
|
|
31844
|
-
|
|
31845
|
-
.cav9p2m .ant-collapse-item {
|
|
31846
|
-
border: 0px;
|
|
31847
|
-
background-color: #fff;
|
|
31848
|
-
}
|
|
31849
|
-
.cav9p2m .ant-collapse-item .ant-collapse-header {
|
|
31850
|
-
padding-top: 0px;
|
|
31851
|
-
padding-bottom: 0px;
|
|
31852
|
-
padding-left: 0px !important;
|
|
31853
|
-
padding-right: 24px;
|
|
31854
|
-
}
|
|
31855
|
-
.cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
31856
|
-
right: 0px;
|
|
31857
|
-
}
|
|
31858
|
-
.cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
31859
|
-
padding: 0px;
|
|
31860
|
-
}
|
|
31861
|
-
|
|
31862
|
-
.csf0p6c .ant-collapse-item .ant-collapse-header {
|
|
31863
|
-
padding-right: 0px;
|
|
31864
|
-
cursor: default;
|
|
31865
|
-
}
|
|
31866
|
-
|
|
31867
32236
|
.n3qomhu {
|
|
31868
32237
|
font-size: 90%;
|
|
31869
32238
|
font-weight: bold;
|
|
@@ -31876,6 +32245,10 @@ input.rrg1fkn.ant-input {
|
|
|
31876
32245
|
word-break: break-all;
|
|
31877
32246
|
}
|
|
31878
32247
|
|
|
32248
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32249
|
+
display: flex;
|
|
32250
|
+
}
|
|
32251
|
+
|
|
31879
32252
|
.o8ocss1 {
|
|
31880
32253
|
overflow: hidden;
|
|
31881
32254
|
text-overflow: ellipsis;
|
|
@@ -31942,10 +32315,6 @@ input.rrg1fkn.ant-input {
|
|
|
31942
32315
|
transform: rotate(180deg);
|
|
31943
32316
|
}
|
|
31944
32317
|
|
|
31945
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
31946
|
-
display: flex;
|
|
31947
|
-
}
|
|
31948
|
-
|
|
31949
32318
|
.igz4le8 {
|
|
31950
32319
|
height: 24px;
|
|
31951
32320
|
width: 56px !important;
|
|
@@ -32226,178 +32595,55 @@ input.rrg1fkn.ant-input {
|
|
|
32226
32595
|
}
|
|
32227
32596
|
.m16f7gpb .metric-toolbar .metric-extra {
|
|
32228
32597
|
display: flex;
|
|
32229
|
-
font-size: 12px;
|
|
32230
|
-
align-items: center;
|
|
32231
|
-
}
|
|
32232
|
-
.m16f7gpb .metric-toolbar .metric-extra .info-item {
|
|
32233
|
-
color: #a3b4cc;
|
|
32234
|
-
}
|
|
32235
|
-
.m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
|
|
32236
|
-
margin-left: 10px;
|
|
32237
|
-
}
|
|
32238
|
-
.m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
|
|
32239
|
-
margin-left: 10px;
|
|
32240
|
-
cursor: pointer;
|
|
32241
|
-
}
|
|
32242
|
-
.m16f7gpb .recharts-xAxis {
|
|
32243
|
-
font-size: 12px;
|
|
32244
|
-
}
|
|
32245
|
-
.m16f7gpb .pointer-wrapper {
|
|
32246
|
-
position: absolute;
|
|
32247
|
-
bottom: 10px;
|
|
32248
|
-
padding: 0 8px;
|
|
32249
|
-
border-radius: 4px;
|
|
32250
|
-
font-size: 12px;
|
|
32251
|
-
color: #fff;
|
|
32252
|
-
background: rgba(0, 0, 0, 0.75);
|
|
32253
|
-
transform: translateX(-50%);
|
|
32254
|
-
}
|
|
32255
|
-
|
|
32256
|
-
.t1ipvk51 {
|
|
32257
|
-
min-width: 200px;
|
|
32258
|
-
}
|
|
32259
|
-
|
|
32260
|
-
.t1kgldps {
|
|
32261
|
-
display: flex;
|
|
32262
|
-
align-items: center;
|
|
32263
|
-
justify-content: space-between;
|
|
32264
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
32265
|
-
color: #b4beca;
|
|
32266
|
-
font-size: 12px;
|
|
32267
|
-
padding: 3px 6px;
|
|
32268
|
-
}
|
|
32269
|
-
.t1kgldps:first-child {
|
|
32270
|
-
padding-top: 3px;
|
|
32271
|
-
}
|
|
32272
|
-
.t1kgldps:last-child {
|
|
32273
|
-
padding-bottom: 3px;
|
|
32274
|
-
}
|
|
32275
|
-
.t1kgldps .column-value {
|
|
32276
|
-
color: #fff;
|
|
32277
|
-
margin-left: 8px;
|
|
32278
|
-
}
|
|
32279
|
-
|
|
32280
|
-
.l4bld33 {
|
|
32281
|
-
width: 64px;
|
|
32282
|
-
height: 64px;
|
|
32283
|
-
display: flex;
|
|
32284
|
-
align-items: center;
|
|
32285
|
-
justify-content: center;
|
|
32286
|
-
position: relative;
|
|
32287
|
-
opacity: 0.2;
|
|
32288
|
-
}
|
|
32289
|
-
|
|
32290
|
-
.lgitjoj {
|
|
32291
|
-
position: absolute;
|
|
32292
|
-
width: 5px;
|
|
32293
|
-
height: 48px;
|
|
32294
|
-
left: 9.33px;
|
|
32295
|
-
top: 40.5px;
|
|
32296
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32297
|
-
border-radius: 5px;
|
|
32298
|
-
transform: rotate(-128deg);
|
|
32299
|
-
transform-origin: top left;
|
|
32300
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
32301
|
-
}
|
|
32302
|
-
|
|
32303
|
-
.l13g0exg {
|
|
32304
|
-
position: absolute;
|
|
32305
|
-
width: 5px;
|
|
32306
|
-
height: 48px;
|
|
32307
|
-
left: 40.8px;
|
|
32308
|
-
top: 8.4px;
|
|
32309
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32310
|
-
border-radius: 5px;
|
|
32311
|
-
transform: rotate(-8deg);
|
|
32312
|
-
transform-origin: top left;
|
|
32313
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
32314
|
-
}
|
|
32315
|
-
|
|
32316
|
-
.l1exo3h6 {
|
|
32317
|
-
position: absolute;
|
|
32318
|
-
width: 5px;
|
|
32319
|
-
height: 48px;
|
|
32320
|
-
left: 52.9px;
|
|
32321
|
-
top: 51.8px;
|
|
32322
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32323
|
-
border-radius: 5px;
|
|
32324
|
-
transform: rotate(112deg);
|
|
32325
|
-
transform-origin: top left;
|
|
32326
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
32327
|
-
}
|
|
32328
|
-
|
|
32329
|
-
.t1gz6wqf {
|
|
32330
|
-
height: 100%;
|
|
32331
|
-
}
|
|
32332
|
-
.t1gz6wqf .table-loading-item {
|
|
32333
|
-
padding: 12px 4px;
|
|
32334
|
-
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32335
|
-
display: flex;
|
|
32336
|
-
}
|
|
32337
|
-
.t1gz6wqf .table-loading-item > * {
|
|
32338
|
-
height: 16px;
|
|
32339
|
-
margin: 4px;
|
|
32340
|
-
background: rgba(204, 212, 227, 0.18);
|
|
32341
|
-
border-radius: 2px;
|
|
32342
|
-
}
|
|
32343
|
-
.t1gz6wqf .table-loading-item .checkbox-loading {
|
|
32344
|
-
width: 16px;
|
|
32345
|
-
}
|
|
32346
|
-
.t1gz6wqf .table-loading-item .td-loading {
|
|
32347
|
-
flex: 1;
|
|
32348
|
-
}
|
|
32349
|
-
.t1gz6wqf :nth-child(1) {
|
|
32350
|
-
padding: 8px 4px;
|
|
32351
|
-
}
|
|
32352
|
-
.t1gz6wqf :nth-child(1) > * {
|
|
32353
|
-
background: rgba(107, 125, 153, 0.18);
|
|
32354
|
-
}
|
|
32355
|
-
.t1gz6wqf :nth-child(1) > * {
|
|
32356
|
-
background: rgba(163, 180, 204, 0.18);
|
|
32357
|
-
}
|
|
32358
|
-
|
|
32359
|
-
.c1udgdh2 {
|
|
32360
|
-
color: #2d3a56;
|
|
32361
|
-
padding: 7px 12px;
|
|
32362
|
-
display: flex;
|
|
32363
|
-
justify-content: space-between;
|
|
32598
|
+
font-size: 12px;
|
|
32364
32599
|
align-items: center;
|
|
32365
32600
|
}
|
|
32366
|
-
.
|
|
32367
|
-
|
|
32601
|
+
.m16f7gpb .metric-toolbar .metric-extra .info-item {
|
|
32602
|
+
color: #a3b4cc;
|
|
32368
32603
|
}
|
|
32369
|
-
.
|
|
32370
|
-
|
|
32371
|
-
color: #00122e;
|
|
32604
|
+
.m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
|
|
32605
|
+
margin-left: 10px;
|
|
32372
32606
|
}
|
|
32373
|
-
.
|
|
32374
|
-
|
|
32375
|
-
|
|
32607
|
+
.m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
|
|
32608
|
+
margin-left: 10px;
|
|
32609
|
+
cursor: pointer;
|
|
32376
32610
|
}
|
|
32377
|
-
.
|
|
32378
|
-
|
|
32611
|
+
.m16f7gpb .recharts-xAxis {
|
|
32612
|
+
font-size: 12px;
|
|
32379
32613
|
}
|
|
32380
|
-
.
|
|
32614
|
+
.m16f7gpb .pointer-wrapper {
|
|
32615
|
+
position: absolute;
|
|
32616
|
+
bottom: 10px;
|
|
32617
|
+
padding: 0 8px;
|
|
32618
|
+
border-radius: 4px;
|
|
32381
32619
|
font-size: 12px;
|
|
32382
|
-
|
|
32620
|
+
color: #fff;
|
|
32621
|
+
background: rgba(0, 0, 0, 0.75);
|
|
32622
|
+
transform: translateX(-50%);
|
|
32383
32623
|
}
|
|
32384
|
-
|
|
32624
|
+
|
|
32625
|
+
.t1ipvk51 {
|
|
32626
|
+
min-width: 200px;
|
|
32627
|
+
}
|
|
32628
|
+
|
|
32629
|
+
.t1kgldps {
|
|
32385
32630
|
display: flex;
|
|
32386
32631
|
align-items: center;
|
|
32387
|
-
|
|
32388
|
-
|
|
32632
|
+
justify-content: space-between;
|
|
32633
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
32634
|
+
color: #b4beca;
|
|
32389
32635
|
font-size: 12px;
|
|
32390
|
-
|
|
32391
|
-
color: #2d3a56;
|
|
32392
|
-
font-weight: 700;
|
|
32636
|
+
padding: 3px 6px;
|
|
32393
32637
|
}
|
|
32394
|
-
.
|
|
32395
|
-
|
|
32396
|
-
margin-right: 2px;
|
|
32638
|
+
.t1kgldps:first-child {
|
|
32639
|
+
padding-top: 3px;
|
|
32397
32640
|
}
|
|
32398
|
-
|
|
32399
|
-
|
|
32400
|
-
|
|
32641
|
+
.t1kgldps:last-child {
|
|
32642
|
+
padding-bottom: 3px;
|
|
32643
|
+
}
|
|
32644
|
+
.t1kgldps .column-value {
|
|
32645
|
+
color: #fff;
|
|
32646
|
+
margin-left: 8px;
|
|
32401
32647
|
}
|
|
32402
32648
|
|
|
32403
32649
|
.sq6vos1 {
|
|
@@ -32585,21 +32831,78 @@ input.rrg1fkn.ant-input {
|
|
|
32585
32831
|
justify-content: center;
|
|
32586
32832
|
}
|
|
32587
32833
|
|
|
32588
|
-
.
|
|
32589
|
-
|
|
32834
|
+
.t1gz6wqf {
|
|
32835
|
+
height: 100%;
|
|
32836
|
+
}
|
|
32837
|
+
.t1gz6wqf .table-loading-item {
|
|
32838
|
+
padding: 12px 4px;
|
|
32839
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32840
|
+
display: flex;
|
|
32841
|
+
}
|
|
32842
|
+
.t1gz6wqf .table-loading-item > * {
|
|
32843
|
+
height: 16px;
|
|
32844
|
+
margin: 4px;
|
|
32845
|
+
background: rgba(204, 212, 227, 0.18);
|
|
32846
|
+
border-radius: 2px;
|
|
32847
|
+
}
|
|
32848
|
+
.t1gz6wqf .table-loading-item .checkbox-loading {
|
|
32849
|
+
width: 16px;
|
|
32850
|
+
}
|
|
32851
|
+
.t1gz6wqf .table-loading-item .td-loading {
|
|
32852
|
+
flex: 1;
|
|
32853
|
+
}
|
|
32854
|
+
.t1gz6wqf :nth-child(1) {
|
|
32855
|
+
padding: 8px 4px;
|
|
32856
|
+
}
|
|
32857
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32858
|
+
background: rgba(107, 125, 153, 0.18);
|
|
32859
|
+
}
|
|
32860
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32861
|
+
background: rgba(163, 180, 204, 0.18);
|
|
32590
32862
|
}
|
|
32591
32863
|
|
|
32592
|
-
.
|
|
32593
|
-
|
|
32594
|
-
background-color: white;
|
|
32864
|
+
.c1k4vanq {
|
|
32865
|
+
padding: 0 12px 14px 12px;
|
|
32595
32866
|
}
|
|
32596
|
-
|
|
32867
|
+
|
|
32868
|
+
.c1udgdh2 {
|
|
32869
|
+
color: #2d3a56;
|
|
32870
|
+
padding: 7px 12px;
|
|
32871
|
+
display: flex;
|
|
32872
|
+
justify-content: space-between;
|
|
32873
|
+
align-items: center;
|
|
32874
|
+
}
|
|
32875
|
+
.c1udgdh2.has-arrow {
|
|
32876
|
+
padding-left: 10px;
|
|
32877
|
+
}
|
|
32878
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
32597
32879
|
cursor: pointer;
|
|
32880
|
+
color: #00122e;
|
|
32598
32881
|
}
|
|
32599
|
-
.
|
|
32600
|
-
|
|
32601
|
-
|
|
32602
|
-
|
|
32882
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
32883
|
+
color: #2d3a56;
|
|
32884
|
+
font-weight: 600;
|
|
32885
|
+
}
|
|
32886
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
32887
|
+
transform: rotate(90deg);
|
|
32888
|
+
}
|
|
32889
|
+
.c1udgdh2 .sub-info {
|
|
32890
|
+
font-size: 12px;
|
|
32891
|
+
line-height: 18px;
|
|
32892
|
+
}
|
|
32893
|
+
.c1udgdh2 .title-wrapper {
|
|
32894
|
+
display: flex;
|
|
32895
|
+
align-items: center;
|
|
32896
|
+
user-select: none;
|
|
32897
|
+
flex-grow: 1;
|
|
32898
|
+
font-size: 12px;
|
|
32899
|
+
line-height: 18px;
|
|
32900
|
+
color: #2d3a56;
|
|
32901
|
+
font-weight: 700;
|
|
32902
|
+
}
|
|
32903
|
+
.c1udgdh2 .collapse-arrow {
|
|
32904
|
+
transition: all 50ms ease-out 0ms;
|
|
32905
|
+
margin-right: 2px;
|
|
32603
32906
|
}
|
|
32604
32907
|
|
|
32605
32908
|
.rrwcpby {
|
|
@@ -32618,35 +32921,21 @@ input.rrg1fkn.ant-input {
|
|
|
32618
32921
|
margin-right: 6px;
|
|
32619
32922
|
}
|
|
32620
32923
|
|
|
32621
|
-
.
|
|
32622
|
-
|
|
32623
|
-
margin-bottom: 0 !important;
|
|
32624
|
-
flex-flow: nowrap !important;
|
|
32625
|
-
line-break: auto;
|
|
32626
|
-
}
|
|
32627
|
-
.f1p9ti6d > .ant-form-item-label {
|
|
32628
|
-
text-align: left !important;
|
|
32629
|
-
padding-bottom: 0 !important;
|
|
32630
|
-
}
|
|
32631
|
-
.f1p9ti6d > .ant-form-item-label > label {
|
|
32632
|
-
min-height: 32px;
|
|
32633
|
-
height: auto;
|
|
32634
|
-
font-size: 13px;
|
|
32635
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32636
|
-
white-space: normal;
|
|
32924
|
+
.bab9xum {
|
|
32925
|
+
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);
|
|
32637
32926
|
}
|
|
32638
|
-
|
|
32639
|
-
|
|
32927
|
+
|
|
32928
|
+
.cav4gt6 {
|
|
32929
|
+
border-radius: 8px;
|
|
32930
|
+
background-color: white;
|
|
32640
32931
|
}
|
|
32641
|
-
.
|
|
32642
|
-
|
|
32643
|
-
font-size: 12px;
|
|
32644
|
-
min-height: 0px;
|
|
32932
|
+
.cav4gt6.hoverable {
|
|
32933
|
+
cursor: pointer;
|
|
32645
32934
|
}
|
|
32646
|
-
.
|
|
32647
|
-
|
|
32648
|
-
|
|
32649
|
-
|
|
32935
|
+
.cav4gt6.hoverable:hover {
|
|
32936
|
+
transition: all 200ms ease;
|
|
32937
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32938
|
+
transform: translateY(-4px);
|
|
32650
32939
|
}
|
|
32651
32940
|
|
|
32652
32941
|
.tc40oxa {
|
|
@@ -32842,13 +33131,35 @@ input.rrg1fkn.ant-input {
|
|
|
32842
33131
|
margin-right: 8px;
|
|
32843
33132
|
}
|
|
32844
33133
|
|
|
32845
|
-
.
|
|
32846
|
-
|
|
33134
|
+
.f1p9ti6d {
|
|
33135
|
+
width: 100%;
|
|
33136
|
+
margin-bottom: 0 !important;
|
|
33137
|
+
flex-flow: nowrap !important;
|
|
33138
|
+
line-break: auto;
|
|
32847
33139
|
}
|
|
32848
|
-
.
|
|
32849
|
-
|
|
32850
|
-
padding-
|
|
32851
|
-
|
|
33140
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
33141
|
+
text-align: left !important;
|
|
33142
|
+
padding-bottom: 0 !important;
|
|
33143
|
+
}
|
|
33144
|
+
.f1p9ti6d > .ant-form-item-label > label {
|
|
33145
|
+
min-height: 32px;
|
|
33146
|
+
height: auto;
|
|
33147
|
+
font-size: 13px;
|
|
33148
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33149
|
+
white-space: normal;
|
|
33150
|
+
}
|
|
33151
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
33152
|
+
border-color: #ff4d4f !important;
|
|
33153
|
+
}
|
|
33154
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
33155
|
+
margin-top: 4px;
|
|
33156
|
+
font-size: 12px;
|
|
33157
|
+
min-height: 0px;
|
|
33158
|
+
}
|
|
33159
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
33160
|
+
font-size: 12px;
|
|
33161
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33162
|
+
min-height: 0px;
|
|
32852
33163
|
}
|
|
32853
33164
|
|
|
32854
33165
|
.sut42l0 {
|
|
@@ -32870,6 +33181,15 @@ input.rrg1fkn.ant-input {
|
|
|
32870
33181
|
height: 16px;
|
|
32871
33182
|
}
|
|
32872
33183
|
|
|
33184
|
+
.w1xcixj5.outside-tag {
|
|
33185
|
+
padding-left: 0;
|
|
33186
|
+
}
|
|
33187
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
33188
|
+
border-radius: 4px 0 0 4px;
|
|
33189
|
+
padding-right: 4px;
|
|
33190
|
+
margin-right: 4px;
|
|
33191
|
+
}
|
|
33192
|
+
|
|
32873
33193
|
.iwsze0q {
|
|
32874
33194
|
margin-right: 4px;
|
|
32875
33195
|
height: 16px;
|
|
@@ -32925,6 +33245,25 @@ input.rrg1fkn.ant-input {
|
|
|
32925
33245
|
font-size: inherit;
|
|
32926
33246
|
}
|
|
32927
33247
|
|
|
33248
|
+
.feau332.ant-form-item {
|
|
33249
|
+
margin-bottom: 0;
|
|
33250
|
+
}
|
|
33251
|
+
.feau332 .ant-form-item-explain {
|
|
33252
|
+
display: none;
|
|
33253
|
+
min-height: 18px;
|
|
33254
|
+
margin-top: 5px;
|
|
33255
|
+
font-family: "Inter";
|
|
33256
|
+
font-weight: 400;
|
|
33257
|
+
font-size: 12px;
|
|
33258
|
+
line-height: 18px;
|
|
33259
|
+
}
|
|
33260
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
33261
|
+
white-space: pre-wrap;
|
|
33262
|
+
}
|
|
33263
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
33264
|
+
display: block;
|
|
33265
|
+
}
|
|
33266
|
+
|
|
32928
33267
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
32929
33268
|
display: var(--a6dbbkm-0);
|
|
32930
33269
|
}
|
|
@@ -32954,23 +33293,4 @@ input.rrg1fkn.ant-input {
|
|
|
32954
33293
|
margin: 0;
|
|
32955
33294
|
height: auto;
|
|
32956
33295
|
font-size: inherit;
|
|
32957
|
-
}
|
|
32958
|
-
|
|
32959
|
-
.feau332.ant-form-item {
|
|
32960
|
-
margin-bottom: 0;
|
|
32961
|
-
}
|
|
32962
|
-
.feau332 .ant-form-item-explain {
|
|
32963
|
-
display: none;
|
|
32964
|
-
min-height: 18px;
|
|
32965
|
-
margin-top: 5px;
|
|
32966
|
-
font-family: "Inter";
|
|
32967
|
-
font-weight: 400;
|
|
32968
|
-
font-size: 12px;
|
|
32969
|
-
line-height: 18px;
|
|
32970
|
-
}
|
|
32971
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
32972
|
-
white-space: pre-wrap;
|
|
32973
|
-
}
|
|
32974
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
32975
|
-
display: block;
|
|
32976
33296
|
}
|