@cloudtower/eagle 0.27.1-beta.1 → 0.27.1
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/Loading/style.d.ts +4 -0
- package/dist/components.css +989 -1309
- package/dist/esm/index.js +6 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +298 -618
- package/dist/umd/index.js +6 -1
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
package/dist/style.css
CHANGED
|
@@ -28320,102 +28320,6 @@ 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
|
-
|
|
28419
28323
|
@keyframes loading-indicator1 {
|
|
28420
28324
|
0% {
|
|
28421
28325
|
height: 48px;
|
|
@@ -28482,53 +28386,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28482
28386
|
top: 51.8px;
|
|
28483
28387
|
}
|
|
28484
28388
|
}
|
|
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 */
|
|
28532
28389
|
.ant-dropdown,
|
|
28533
28390
|
.ant-dropdown-menu-submenu {
|
|
28534
28391
|
background: #fff;
|
|
@@ -28652,246 +28509,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28652
28509
|
text-overflow: ellipsis;
|
|
28653
28510
|
}
|
|
28654
28511
|
|
|
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;
|
|
28663
|
-
}
|
|
28664
|
-
|
|
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;
|
|
28673
|
-
position: relative;
|
|
28674
|
-
}
|
|
28675
|
-
|
|
28676
|
-
#shortcuts ul {
|
|
28677
|
-
display: none;
|
|
28678
|
-
position: absolute;
|
|
28679
|
-
right: 0px;
|
|
28680
|
-
top: 30px;
|
|
28681
|
-
word-wrap: none;
|
|
28682
|
-
white-space: nowrap;
|
|
28683
|
-
}
|
|
28684
|
-
|
|
28685
|
-
#shortcuts:hover ul {
|
|
28686
|
-
display: inherit;
|
|
28687
|
-
}
|
|
28688
|
-
|
|
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;
|
|
28698
|
-
}
|
|
28699
|
-
|
|
28700
|
-
#sendCtrlAltDelButton:hover {
|
|
28701
|
-
opacity: 1;
|
|
28702
|
-
}
|
|
28703
|
-
|
|
28704
|
-
#screen canvas {
|
|
28705
|
-
margin-top: 0 !important;
|
|
28706
|
-
}
|
|
28707
|
-
|
|
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;
|
|
28763
|
-
}
|
|
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
28512
|
.disable-select {
|
|
28896
28513
|
-webkit-touch-callout: none;
|
|
28897
28514
|
-webkit-user-select: none;
|
|
@@ -29829,6 +29446,20 @@ input[type=submit] {
|
|
|
29829
29446
|
cursor: pointer;
|
|
29830
29447
|
}
|
|
29831
29448
|
|
|
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
|
+
|
|
29832
29463
|
@font-face {
|
|
29833
29464
|
font-family: "Inter";
|
|
29834
29465
|
font-style: normal;
|
|
@@ -30464,6 +30095,61 @@ html body {
|
|
|
30464
30095
|
width: 36px;
|
|
30465
30096
|
}
|
|
30466
30097
|
|
|
30098
|
+
.s34f1qb.ant-switch {
|
|
30099
|
+
min-width: 40px;
|
|
30100
|
+
height: 24px;
|
|
30101
|
+
background: rgba(172, 186, 211, 0.6);
|
|
30102
|
+
overflow: hidden;
|
|
30103
|
+
}
|
|
30104
|
+
.s34f1qb.ant-switch:focus {
|
|
30105
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30106
|
+
}
|
|
30107
|
+
.s34f1qb.ant-switch-small {
|
|
30108
|
+
min-width: 26px;
|
|
30109
|
+
height: 16px;
|
|
30110
|
+
}
|
|
30111
|
+
.s34f1qb.ant-switch-large {
|
|
30112
|
+
min-width: 52px;
|
|
30113
|
+
height: 32px;
|
|
30114
|
+
}
|
|
30115
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
30116
|
+
height: 20px;
|
|
30117
|
+
width: 20px;
|
|
30118
|
+
}
|
|
30119
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
30120
|
+
border-radius: 10px;
|
|
30121
|
+
transition-delay: 120ms;
|
|
30122
|
+
}
|
|
30123
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
30124
|
+
height: 14px;
|
|
30125
|
+
width: 14px;
|
|
30126
|
+
top: 1px;
|
|
30127
|
+
left: 1px;
|
|
30128
|
+
}
|
|
30129
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
30130
|
+
height: 28px;
|
|
30131
|
+
width: 28px;
|
|
30132
|
+
}
|
|
30133
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
30134
|
+
border-radius: 14px;
|
|
30135
|
+
}
|
|
30136
|
+
.s34f1qb.ant-switch-checked {
|
|
30137
|
+
background-color: #00ba5d;
|
|
30138
|
+
}
|
|
30139
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
30140
|
+
left: calc(100% - 20px - 2px);
|
|
30141
|
+
}
|
|
30142
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
30143
|
+
left: calc(100% - 14px - 1px);
|
|
30144
|
+
}
|
|
30145
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
30146
|
+
left: calc(100% - 28px - 2px);
|
|
30147
|
+
}
|
|
30148
|
+
|
|
30149
|
+
.c1to9vb9 {
|
|
30150
|
+
margin-left: 5px;
|
|
30151
|
+
}
|
|
30152
|
+
|
|
30467
30153
|
.cz04yix {
|
|
30468
30154
|
display: flex;
|
|
30469
30155
|
flex-direction: column;
|
|
@@ -31076,65 +30762,6 @@ input.rrg1fkn.ant-input {
|
|
|
31076
30762
|
border-bottom-left-radius: 0;
|
|
31077
30763
|
}
|
|
31078
30764
|
|
|
31079
|
-
.s34f1qb.ant-switch {
|
|
31080
|
-
min-width: 40px;
|
|
31081
|
-
height: 24px;
|
|
31082
|
-
background: rgba(172, 186, 211, 0.6);
|
|
31083
|
-
overflow: hidden;
|
|
31084
|
-
}
|
|
31085
|
-
.s34f1qb.ant-switch:focus {
|
|
31086
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
31087
|
-
}
|
|
31088
|
-
.s34f1qb.ant-switch-small {
|
|
31089
|
-
min-width: 26px;
|
|
31090
|
-
height: 16px;
|
|
31091
|
-
}
|
|
31092
|
-
.s34f1qb.ant-switch-large {
|
|
31093
|
-
min-width: 52px;
|
|
31094
|
-
height: 32px;
|
|
31095
|
-
}
|
|
31096
|
-
.s34f1qb.ant-switch .ant-switch-handle {
|
|
31097
|
-
height: 20px;
|
|
31098
|
-
width: 20px;
|
|
31099
|
-
}
|
|
31100
|
-
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
31101
|
-
border-radius: 10px;
|
|
31102
|
-
transition-delay: 120ms;
|
|
31103
|
-
}
|
|
31104
|
-
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
31105
|
-
height: 14px;
|
|
31106
|
-
width: 14px;
|
|
31107
|
-
top: 1px;
|
|
31108
|
-
left: 1px;
|
|
31109
|
-
}
|
|
31110
|
-
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
31111
|
-
height: 28px;
|
|
31112
|
-
width: 28px;
|
|
31113
|
-
}
|
|
31114
|
-
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
31115
|
-
border-radius: 14px;
|
|
31116
|
-
}
|
|
31117
|
-
.s34f1qb.ant-switch-checked {
|
|
31118
|
-
background-color: #00ba5d;
|
|
31119
|
-
}
|
|
31120
|
-
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
31121
|
-
left: calc(100% - 20px - 2px);
|
|
31122
|
-
}
|
|
31123
|
-
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
31124
|
-
left: calc(100% - 14px - 1px);
|
|
31125
|
-
}
|
|
31126
|
-
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
31127
|
-
left: calc(100% - 28px - 2px);
|
|
31128
|
-
}
|
|
31129
|
-
|
|
31130
|
-
.c1to9vb9 {
|
|
31131
|
-
margin-left: 5px;
|
|
31132
|
-
}
|
|
31133
|
-
|
|
31134
|
-
.i1e4sgug {
|
|
31135
|
-
display: inline-block;
|
|
31136
|
-
}
|
|
31137
|
-
|
|
31138
30765
|
.s1fc623g {
|
|
31139
30766
|
width: 430px !important;
|
|
31140
30767
|
}
|
|
@@ -32055,6 +31682,10 @@ input.rrg1fkn.ant-input {
|
|
|
32055
31682
|
line-height: 12px;
|
|
32056
31683
|
}
|
|
32057
31684
|
|
|
31685
|
+
.i1e4sgug {
|
|
31686
|
+
display: inline-block;
|
|
31687
|
+
}
|
|
31688
|
+
|
|
32058
31689
|
.m15dvk92 {
|
|
32059
31690
|
display: flex;
|
|
32060
31691
|
justify-content: space-between;
|
|
@@ -32254,10 +31885,6 @@ input.rrg1fkn.ant-input {
|
|
|
32254
31885
|
white-space: nowrap;
|
|
32255
31886
|
}
|
|
32256
31887
|
|
|
32257
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32258
|
-
display: flex;
|
|
32259
|
-
}
|
|
32260
|
-
|
|
32261
31888
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
32262
31889
|
border-radius: 6px;
|
|
32263
31890
|
}
|
|
@@ -32315,6 +31942,10 @@ input.rrg1fkn.ant-input {
|
|
|
32315
31942
|
transform: rotate(180deg);
|
|
32316
31943
|
}
|
|
32317
31944
|
|
|
31945
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
31946
|
+
display: flex;
|
|
31947
|
+
}
|
|
31948
|
+
|
|
32318
31949
|
.igz4le8 {
|
|
32319
31950
|
height: 24px;
|
|
32320
31951
|
width: 56px !important;
|
|
@@ -32573,77 +32204,200 @@ input.rrg1fkn.ant-input {
|
|
|
32573
32204
|
width: 8px;
|
|
32574
32205
|
margin-right: 8px;
|
|
32575
32206
|
}
|
|
32576
|
-
|
|
32577
|
-
.e1sdlxq1 .ant-dropdown-menu-item {
|
|
32578
|
-
display: flex;
|
|
32579
|
-
align-items: center;
|
|
32580
|
-
font-size: 12px;
|
|
32581
|
-
margin: 0;
|
|
32207
|
+
|
|
32208
|
+
.e1sdlxq1 .ant-dropdown-menu-item {
|
|
32209
|
+
display: flex;
|
|
32210
|
+
align-items: center;
|
|
32211
|
+
font-size: 12px;
|
|
32212
|
+
margin: 0;
|
|
32213
|
+
}
|
|
32214
|
+
|
|
32215
|
+
.m16f7gpb {
|
|
32216
|
+
position: relative;
|
|
32217
|
+
}
|
|
32218
|
+
.m16f7gpb.hidden-xaxis .pointer-wrapper {
|
|
32219
|
+
bottom: -12px;
|
|
32220
|
+
}
|
|
32221
|
+
.m16f7gpb .metric-toolbar {
|
|
32222
|
+
display: flex;
|
|
32223
|
+
justify-content: space-between;
|
|
32224
|
+
line-height: 30px;
|
|
32225
|
+
margin: 0 16px;
|
|
32226
|
+
}
|
|
32227
|
+
.m16f7gpb .metric-toolbar .metric-extra {
|
|
32228
|
+
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;
|
|
32582
32348
|
}
|
|
32583
|
-
|
|
32584
|
-
|
|
32585
|
-
position: relative;
|
|
32349
|
+
.t1gz6wqf :nth-child(1) {
|
|
32350
|
+
padding: 8px 4px;
|
|
32586
32351
|
}
|
|
32587
|
-
.
|
|
32588
|
-
|
|
32352
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32353
|
+
background: rgba(107, 125, 153, 0.18);
|
|
32589
32354
|
}
|
|
32590
|
-
.
|
|
32591
|
-
|
|
32592
|
-
justify-content: space-between;
|
|
32593
|
-
line-height: 30px;
|
|
32594
|
-
margin: 0 16px;
|
|
32355
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32356
|
+
background: rgba(163, 180, 204, 0.18);
|
|
32595
32357
|
}
|
|
32596
|
-
|
|
32358
|
+
|
|
32359
|
+
.c1udgdh2 {
|
|
32360
|
+
color: #2d3a56;
|
|
32361
|
+
padding: 7px 12px;
|
|
32597
32362
|
display: flex;
|
|
32598
|
-
|
|
32363
|
+
justify-content: space-between;
|
|
32599
32364
|
align-items: center;
|
|
32600
32365
|
}
|
|
32601
|
-
.
|
|
32602
|
-
|
|
32603
|
-
}
|
|
32604
|
-
.m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
|
|
32605
|
-
margin-left: 10px;
|
|
32366
|
+
.c1udgdh2.has-arrow {
|
|
32367
|
+
padding-left: 10px;
|
|
32606
32368
|
}
|
|
32607
|
-
.
|
|
32608
|
-
margin-left: 10px;
|
|
32369
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
32609
32370
|
cursor: pointer;
|
|
32371
|
+
color: #00122e;
|
|
32610
32372
|
}
|
|
32611
|
-
.
|
|
32612
|
-
|
|
32373
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
32374
|
+
color: #2d3a56;
|
|
32375
|
+
font-weight: 600;
|
|
32613
32376
|
}
|
|
32614
|
-
.
|
|
32615
|
-
|
|
32616
|
-
bottom: 10px;
|
|
32617
|
-
padding: 0 8px;
|
|
32618
|
-
border-radius: 4px;
|
|
32619
|
-
font-size: 12px;
|
|
32620
|
-
color: #fff;
|
|
32621
|
-
background: rgba(0, 0, 0, 0.75);
|
|
32622
|
-
transform: translateX(-50%);
|
|
32377
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
32378
|
+
transform: rotate(90deg);
|
|
32623
32379
|
}
|
|
32624
|
-
|
|
32625
|
-
|
|
32626
|
-
|
|
32380
|
+
.c1udgdh2 .sub-info {
|
|
32381
|
+
font-size: 12px;
|
|
32382
|
+
line-height: 18px;
|
|
32627
32383
|
}
|
|
32628
|
-
|
|
32629
|
-
.t1kgldps {
|
|
32384
|
+
.c1udgdh2 .title-wrapper {
|
|
32630
32385
|
display: flex;
|
|
32631
32386
|
align-items: center;
|
|
32632
|
-
|
|
32633
|
-
|
|
32634
|
-
color: #b4beca;
|
|
32387
|
+
user-select: none;
|
|
32388
|
+
flex-grow: 1;
|
|
32635
32389
|
font-size: 12px;
|
|
32636
|
-
|
|
32637
|
-
|
|
32638
|
-
|
|
32639
|
-
padding-top: 3px;
|
|
32390
|
+
line-height: 18px;
|
|
32391
|
+
color: #2d3a56;
|
|
32392
|
+
font-weight: 700;
|
|
32640
32393
|
}
|
|
32641
|
-
.
|
|
32642
|
-
|
|
32394
|
+
.c1udgdh2 .collapse-arrow {
|
|
32395
|
+
transition: all 50ms ease-out 0ms;
|
|
32396
|
+
margin-right: 2px;
|
|
32643
32397
|
}
|
|
32644
|
-
|
|
32645
|
-
|
|
32646
|
-
|
|
32398
|
+
|
|
32399
|
+
.c1k4vanq {
|
|
32400
|
+
padding: 0 12px 14px 12px;
|
|
32647
32401
|
}
|
|
32648
32402
|
|
|
32649
32403
|
.sq6vos1 {
|
|
@@ -32831,78 +32585,21 @@ input.rrg1fkn.ant-input {
|
|
|
32831
32585
|
justify-content: center;
|
|
32832
32586
|
}
|
|
32833
32587
|
|
|
32834
|
-
.
|
|
32835
|
-
|
|
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);
|
|
32862
|
-
}
|
|
32863
|
-
|
|
32864
|
-
.c1k4vanq {
|
|
32865
|
-
padding: 0 12px 14px 12px;
|
|
32588
|
+
.bab9xum {
|
|
32589
|
+
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);
|
|
32866
32590
|
}
|
|
32867
32591
|
|
|
32868
|
-
.
|
|
32869
|
-
|
|
32870
|
-
|
|
32871
|
-
display: flex;
|
|
32872
|
-
justify-content: space-between;
|
|
32873
|
-
align-items: center;
|
|
32874
|
-
}
|
|
32875
|
-
.c1udgdh2.has-arrow {
|
|
32876
|
-
padding-left: 10px;
|
|
32592
|
+
.cav4gt6 {
|
|
32593
|
+
border-radius: 8px;
|
|
32594
|
+
background-color: white;
|
|
32877
32595
|
}
|
|
32878
|
-
.
|
|
32596
|
+
.cav4gt6.hoverable {
|
|
32879
32597
|
cursor: pointer;
|
|
32880
|
-
color: #00122e;
|
|
32881
|
-
}
|
|
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
32598
|
}
|
|
32903
|
-
.
|
|
32904
|
-
transition: all
|
|
32905
|
-
|
|
32599
|
+
.cav4gt6.hoverable:hover {
|
|
32600
|
+
transition: all 200ms ease;
|
|
32601
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32602
|
+
transform: translateY(-4px);
|
|
32906
32603
|
}
|
|
32907
32604
|
|
|
32908
32605
|
.rrwcpby {
|
|
@@ -32921,21 +32618,35 @@ input.rrg1fkn.ant-input {
|
|
|
32921
32618
|
margin-right: 6px;
|
|
32922
32619
|
}
|
|
32923
32620
|
|
|
32924
|
-
.
|
|
32925
|
-
|
|
32621
|
+
.f1p9ti6d {
|
|
32622
|
+
width: 100%;
|
|
32623
|
+
margin-bottom: 0 !important;
|
|
32624
|
+
flex-flow: nowrap !important;
|
|
32625
|
+
line-break: auto;
|
|
32926
32626
|
}
|
|
32927
|
-
|
|
32928
|
-
|
|
32929
|
-
|
|
32930
|
-
background-color: white;
|
|
32627
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
32628
|
+
text-align: left !important;
|
|
32629
|
+
padding-bottom: 0 !important;
|
|
32931
32630
|
}
|
|
32932
|
-
.
|
|
32933
|
-
|
|
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;
|
|
32934
32637
|
}
|
|
32935
|
-
.
|
|
32936
|
-
|
|
32937
|
-
|
|
32938
|
-
|
|
32638
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
32639
|
+
border-color: #ff4d4f !important;
|
|
32640
|
+
}
|
|
32641
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
32642
|
+
margin-top: 4px;
|
|
32643
|
+
font-size: 12px;
|
|
32644
|
+
min-height: 0px;
|
|
32645
|
+
}
|
|
32646
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
32647
|
+
font-size: 12px;
|
|
32648
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32649
|
+
min-height: 0px;
|
|
32939
32650
|
}
|
|
32940
32651
|
|
|
32941
32652
|
.tc40oxa {
|
|
@@ -33131,6 +32842,15 @@ input.rrg1fkn.ant-input {
|
|
|
33131
32842
|
margin-right: 8px;
|
|
33132
32843
|
}
|
|
33133
32844
|
|
|
32845
|
+
.w1xcixj5.outside-tag {
|
|
32846
|
+
padding-left: 0;
|
|
32847
|
+
}
|
|
32848
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
32849
|
+
border-radius: 4px 0 0 4px;
|
|
32850
|
+
padding-right: 4px;
|
|
32851
|
+
margin-right: 4px;
|
|
32852
|
+
}
|
|
32853
|
+
|
|
33134
32854
|
.sut42l0 {
|
|
33135
32855
|
padding: 0 8px;
|
|
33136
32856
|
height: 18px;
|
|
@@ -33155,46 +32875,6 @@ input.rrg1fkn.ant-input {
|
|
|
33155
32875
|
height: 16px;
|
|
33156
32876
|
}
|
|
33157
32877
|
|
|
33158
|
-
.f1p9ti6d {
|
|
33159
|
-
width: 100%;
|
|
33160
|
-
margin-bottom: 0 !important;
|
|
33161
|
-
flex-flow: nowrap !important;
|
|
33162
|
-
line-break: auto;
|
|
33163
|
-
}
|
|
33164
|
-
.f1p9ti6d > .ant-form-item-label {
|
|
33165
|
-
text-align: left !important;
|
|
33166
|
-
padding-bottom: 0 !important;
|
|
33167
|
-
}
|
|
33168
|
-
.f1p9ti6d > .ant-form-item-label > label {
|
|
33169
|
-
min-height: 32px;
|
|
33170
|
-
height: auto;
|
|
33171
|
-
font-size: 13px;
|
|
33172
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33173
|
-
white-space: normal;
|
|
33174
|
-
}
|
|
33175
|
-
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
33176
|
-
border-color: #ff4d4f !important;
|
|
33177
|
-
}
|
|
33178
|
-
.f1p9ti6d .ant-form-item-explain {
|
|
33179
|
-
margin-top: 4px;
|
|
33180
|
-
font-size: 12px;
|
|
33181
|
-
min-height: 0px;
|
|
33182
|
-
}
|
|
33183
|
-
.f1p9ti6d .ant-form-item-extra {
|
|
33184
|
-
font-size: 12px;
|
|
33185
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33186
|
-
min-height: 0px;
|
|
33187
|
-
}
|
|
33188
|
-
|
|
33189
|
-
.w1xcixj5.outside-tag {
|
|
33190
|
-
padding-left: 0;
|
|
33191
|
-
}
|
|
33192
|
-
.w1xcixj5.outside-tag .inside-tag {
|
|
33193
|
-
border-radius: 4px 0 0 4px;
|
|
33194
|
-
padding-right: 4px;
|
|
33195
|
-
margin-right: 4px;
|
|
33196
|
-
}
|
|
33197
|
-
|
|
33198
32878
|
.at4ovwe .ant-input-number-handler-wrap {
|
|
33199
32879
|
display: var(--at4ovwe-0);
|
|
33200
32880
|
}
|