@cloudtower/eagle 0.26.24-dry-1 → 0.26.25-dry-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/Card/CardWrapper.d.ts +1 -1
- package/dist/components/Modal/AsideModal.d.ts +7 -0
- package/dist/components.css +231 -218
- package/dist/esm/index.js +474 -451
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +1 -1
- package/dist/style.css +936 -923
- package/dist/umd/index.js +470 -447
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +17 -1
- package/package.json +5 -5
|
@@ -4,7 +4,7 @@ interface IProps {
|
|
|
4
4
|
className?: string;
|
|
5
5
|
style?: CSSProperties;
|
|
6
6
|
}
|
|
7
|
-
declare const CardWrapper: import("@linaria/react").StyledMeta & React.ForwardRefExoticComponent<IProps & {
|
|
7
|
+
declare const CardWrapper: import("@linaria/react").StyledMeta & React.ForwardRefExoticComponent<IProps & React.DOMAttributes<HTMLDivElement> & {
|
|
8
8
|
children?: React.ReactNode;
|
|
9
9
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
10
10
|
export default CardWrapper;
|
package/dist/components.css
CHANGED
|
@@ -28278,6 +28278,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28278
28278
|
/* green */
|
|
28279
28279
|
/* yellow */
|
|
28280
28280
|
/* red */
|
|
28281
|
+
/* purple */
|
|
28281
28282
|
/* palette global token*/
|
|
28282
28283
|
/* color opaque */
|
|
28283
28284
|
/* color transparent */
|
|
@@ -28310,6 +28311,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28310
28311
|
/* dim */
|
|
28311
28312
|
/* box shadow */
|
|
28312
28313
|
/* fisheye */
|
|
28314
|
+
/* z-index */
|
|
28313
28315
|
@keyframes rotate {
|
|
28314
28316
|
from {
|
|
28315
28317
|
transform: rotate(0deg);
|
|
@@ -28331,6 +28333,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28331
28333
|
/* green */
|
|
28332
28334
|
/* yellow */
|
|
28333
28335
|
/* red */
|
|
28336
|
+
/* purple */
|
|
28334
28337
|
/* palette global token*/
|
|
28335
28338
|
/* color opaque */
|
|
28336
28339
|
/* color transparent */
|
|
@@ -28363,6 +28366,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28363
28366
|
/* dim */
|
|
28364
28367
|
/* box shadow */
|
|
28365
28368
|
/* fisheye */
|
|
28369
|
+
/* z-index */
|
|
28366
28370
|
.loading {
|
|
28367
28371
|
width: 64px;
|
|
28368
28372
|
height: 64px;
|
|
@@ -28491,6 +28495,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28491
28495
|
/* green */
|
|
28492
28496
|
/* yellow */
|
|
28493
28497
|
/* red */
|
|
28498
|
+
/* purple */
|
|
28494
28499
|
/* palette global token*/
|
|
28495
28500
|
/* color opaque */
|
|
28496
28501
|
/* color transparent */
|
|
@@ -28523,6 +28528,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28523
28528
|
/* dim */
|
|
28524
28529
|
/* box shadow */
|
|
28525
28530
|
/* fisheye */
|
|
28531
|
+
/* z-index */
|
|
28526
28532
|
.ant-dropdown,
|
|
28527
28533
|
.ant-dropdown-menu-submenu {
|
|
28528
28534
|
background: #fff;
|
|
@@ -28712,6 +28718,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28712
28718
|
/* green */
|
|
28713
28719
|
/* yellow */
|
|
28714
28720
|
/* red */
|
|
28721
|
+
/* purple */
|
|
28715
28722
|
/* palette global token*/
|
|
28716
28723
|
/* color opaque */
|
|
28717
28724
|
/* color transparent */
|
|
@@ -28744,6 +28751,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28744
28751
|
/* dim */
|
|
28745
28752
|
/* box shadow */
|
|
28746
28753
|
/* fisheye */
|
|
28754
|
+
/* z-index */
|
|
28747
28755
|
.ant-dropdown,
|
|
28748
28756
|
.ant-dropdown-menu-submenu {
|
|
28749
28757
|
background: #fff;
|
|
@@ -29832,6 +29840,21 @@ html body {
|
|
|
29832
29840
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29833
29841
|
}
|
|
29834
29842
|
}
|
|
29843
|
+
.fde5mpd {
|
|
29844
|
+
width: 100%;
|
|
29845
|
+
height: 100%;
|
|
29846
|
+
min-height: 124px;
|
|
29847
|
+
display: flex;
|
|
29848
|
+
flex-direction: column;
|
|
29849
|
+
justify-content: center;
|
|
29850
|
+
align-items: center;
|
|
29851
|
+
}
|
|
29852
|
+
.fde5mpd .error-text {
|
|
29853
|
+
color: rgba(10, 37, 85, 0.6);
|
|
29854
|
+
margin-bottom: 16px;
|
|
29855
|
+
font-size: 18px;
|
|
29856
|
+
}
|
|
29857
|
+
|
|
29835
29858
|
.buj61ew.ant-btn-icon-only {
|
|
29836
29859
|
justify-content: center;
|
|
29837
29860
|
}
|
|
@@ -29839,6 +29862,9 @@ html body {
|
|
|
29839
29862
|
padding: 0;
|
|
29840
29863
|
}
|
|
29841
29864
|
.buj61ew.ant-btn {
|
|
29865
|
+
display: inline-flex;
|
|
29866
|
+
align-items: center;
|
|
29867
|
+
justify-content: center;
|
|
29842
29868
|
padding: 5px 12px;
|
|
29843
29869
|
height: 32px;
|
|
29844
29870
|
border-radius: 6px;
|
|
@@ -30068,11 +30094,6 @@ html body {
|
|
|
30068
30094
|
--background-color-focus: #fff;
|
|
30069
30095
|
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
30070
30096
|
}
|
|
30071
|
-
.buj61ew.has-icon {
|
|
30072
|
-
display: inline-flex;
|
|
30073
|
-
align-items: center;
|
|
30074
|
-
justify-content: center;
|
|
30075
|
-
}
|
|
30076
30097
|
.buj61ew .button-prefix-icon {
|
|
30077
30098
|
margin-right: 8px;
|
|
30078
30099
|
display: inline-flex;
|
|
@@ -30119,19 +30140,17 @@ html body {
|
|
|
30119
30140
|
border-radius: unset;
|
|
30120
30141
|
}
|
|
30121
30142
|
|
|
30122
|
-
.
|
|
30123
|
-
|
|
30124
|
-
height:
|
|
30125
|
-
|
|
30143
|
+
.iap75of {
|
|
30144
|
+
height: 18px;
|
|
30145
|
+
line-height: 18px;
|
|
30146
|
+
padding: 0 4px;
|
|
30147
|
+
border-radius: 4px;
|
|
30148
|
+
background: rgba(235, 239, 245, 0.6);
|
|
30149
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30126
30150
|
display: flex;
|
|
30127
|
-
flex-direction: column;
|
|
30128
|
-
justify-content: center;
|
|
30129
30151
|
align-items: center;
|
|
30130
|
-
|
|
30131
|
-
|
|
30132
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30133
|
-
margin-bottom: 16px;
|
|
30134
|
-
font-size: 18px;
|
|
30152
|
+
white-space: nowrap;
|
|
30153
|
+
margin-right: 4px;
|
|
30135
30154
|
}
|
|
30136
30155
|
|
|
30137
30156
|
.i1mrf09m {
|
|
@@ -30152,19 +30171,6 @@ html body {
|
|
|
30152
30171
|
animation: rotate 680ms linear infinite;
|
|
30153
30172
|
}
|
|
30154
30173
|
|
|
30155
|
-
.iap75of {
|
|
30156
|
-
height: 18px;
|
|
30157
|
-
line-height: 18px;
|
|
30158
|
-
padding: 0 4px;
|
|
30159
|
-
border-radius: 4px;
|
|
30160
|
-
background: rgba(235, 239, 245, 0.6);
|
|
30161
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30162
|
-
display: flex;
|
|
30163
|
-
align-items: center;
|
|
30164
|
-
white-space: nowrap;
|
|
30165
|
-
margin-right: 4px;
|
|
30166
|
-
}
|
|
30167
|
-
|
|
30168
30174
|
.obf05yr {
|
|
30169
30175
|
display: inline-block;
|
|
30170
30176
|
}
|
|
@@ -30174,61 +30180,59 @@ html body {
|
|
|
30174
30180
|
position: absolute;
|
|
30175
30181
|
}
|
|
30176
30182
|
|
|
30177
|
-
.
|
|
30178
|
-
|
|
30179
|
-
|
|
30180
|
-
|
|
30181
|
-
|
|
30182
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30183
|
-
font-size: 12px;
|
|
30184
|
-
line-height: 24px;
|
|
30183
|
+
.s34f1qb.ant-switch {
|
|
30184
|
+
min-width: 40px;
|
|
30185
|
+
height: 24px;
|
|
30186
|
+
background: rgba(172, 186, 211, 0.6);
|
|
30187
|
+
overflow: hidden;
|
|
30185
30188
|
}
|
|
30186
|
-
.
|
|
30187
|
-
|
|
30189
|
+
.s34f1qb.ant-switch:focus {
|
|
30190
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30188
30191
|
}
|
|
30189
|
-
.
|
|
30190
|
-
|
|
30191
|
-
|
|
30192
|
-
border-radius: 6px;
|
|
30193
|
-
cursor: pointer;
|
|
30194
|
-
transition: all 0.3s ease;
|
|
30192
|
+
.s34f1qb.ant-switch-small {
|
|
30193
|
+
min-width: 26px;
|
|
30194
|
+
height: 16px;
|
|
30195
30195
|
}
|
|
30196
|
-
.
|
|
30197
|
-
|
|
30198
|
-
|
|
30196
|
+
.s34f1qb.ant-switch-large {
|
|
30197
|
+
min-width: 52px;
|
|
30198
|
+
height: 32px;
|
|
30199
30199
|
}
|
|
30200
|
-
.
|
|
30201
|
-
|
|
30200
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
30201
|
+
height: 20px;
|
|
30202
|
+
width: 20px;
|
|
30202
30203
|
}
|
|
30203
|
-
.
|
|
30204
|
-
|
|
30205
|
-
|
|
30206
|
-
color: #0080ff;
|
|
30207
|
-
font-weight: bold;
|
|
30204
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
30205
|
+
border-radius: 10px;
|
|
30206
|
+
transition-delay: 120ms;
|
|
30208
30207
|
}
|
|
30209
|
-
.
|
|
30210
|
-
|
|
30208
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
30209
|
+
height: 14px;
|
|
30210
|
+
width: 14px;
|
|
30211
|
+
top: 1px;
|
|
30212
|
+
left: 1px;
|
|
30211
30213
|
}
|
|
30212
|
-
.
|
|
30213
|
-
|
|
30214
|
-
|
|
30214
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
30215
|
+
height: 28px;
|
|
30216
|
+
width: 28px;
|
|
30215
30217
|
}
|
|
30216
|
-
.
|
|
30217
|
-
|
|
30218
|
-
color: #0080ff;
|
|
30218
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
30219
|
+
border-radius: 14px;
|
|
30219
30220
|
}
|
|
30220
|
-
.
|
|
30221
|
-
|
|
30221
|
+
.s34f1qb.ant-switch-checked {
|
|
30222
|
+
background-color: #00ba5d;
|
|
30222
30223
|
}
|
|
30223
|
-
|
|
30224
|
-
|
|
30225
|
-
max-height: calc(100vh - 128px);
|
|
30226
|
-
overflow-y: auto;
|
|
30224
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
30225
|
+
left: calc(100% - 20px - 2px);
|
|
30227
30226
|
}
|
|
30228
|
-
.
|
|
30229
|
-
|
|
30230
|
-
|
|
30231
|
-
|
|
30227
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
30228
|
+
left: calc(100% - 14px - 1px);
|
|
30229
|
+
}
|
|
30230
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
30231
|
+
left: calc(100% - 28px - 2px);
|
|
30232
|
+
}
|
|
30233
|
+
|
|
30234
|
+
.c1to9vb9 {
|
|
30235
|
+
margin-left: 5px;
|
|
30232
30236
|
}
|
|
30233
30237
|
|
|
30234
30238
|
.rxbeqvl.ant-radio-wrapper {
|
|
@@ -30377,6 +30381,63 @@ html body {
|
|
|
30377
30381
|
width: 36px;
|
|
30378
30382
|
}
|
|
30379
30383
|
|
|
30384
|
+
.p12gwtiw {
|
|
30385
|
+
display: flex;
|
|
30386
|
+
justify-content: space-between;
|
|
30387
|
+
align-items: center;
|
|
30388
|
+
padding: 10px 0;
|
|
30389
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30390
|
+
font-size: 12px;
|
|
30391
|
+
line-height: 24px;
|
|
30392
|
+
}
|
|
30393
|
+
.p12gwtiw .pagination-left {
|
|
30394
|
+
padding: 2px 8px;
|
|
30395
|
+
}
|
|
30396
|
+
.p12gwtiw .dropdown-trigger {
|
|
30397
|
+
display: flex;
|
|
30398
|
+
align-items: center;
|
|
30399
|
+
border-radius: 6px;
|
|
30400
|
+
cursor: pointer;
|
|
30401
|
+
transition: all 0.3s ease;
|
|
30402
|
+
}
|
|
30403
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
30404
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30405
|
+
color: #0080ff;
|
|
30406
|
+
}
|
|
30407
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
30408
|
+
margin-left: 4px;
|
|
30409
|
+
}
|
|
30410
|
+
.p12gwtiw .pagination-right {
|
|
30411
|
+
display: flex;
|
|
30412
|
+
align-items: center;
|
|
30413
|
+
color: #0080ff;
|
|
30414
|
+
font-weight: bold;
|
|
30415
|
+
}
|
|
30416
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
30417
|
+
margin-left: 4px;
|
|
30418
|
+
}
|
|
30419
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
30420
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
30421
|
+
padding: 0 8px;
|
|
30422
|
+
}
|
|
30423
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
30424
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
30425
|
+
color: #0080ff;
|
|
30426
|
+
}
|
|
30427
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
30428
|
+
transform: rotate(180deg);
|
|
30429
|
+
}
|
|
30430
|
+
|
|
30431
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
30432
|
+
max-height: calc(100vh - 128px);
|
|
30433
|
+
overflow-y: auto;
|
|
30434
|
+
}
|
|
30435
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
30436
|
+
padding: 4px 20px;
|
|
30437
|
+
font-size: 12px;
|
|
30438
|
+
line-height: 18px;
|
|
30439
|
+
}
|
|
30440
|
+
|
|
30380
30441
|
.cz04yix {
|
|
30381
30442
|
display: flex;
|
|
30382
30443
|
flex-direction: column;
|
|
@@ -30988,61 +31049,6 @@ input.rrg1fkn.ant-input {
|
|
|
30988
31049
|
border-bottom-left-radius: 0;
|
|
30989
31050
|
}
|
|
30990
31051
|
|
|
30991
|
-
.s34f1qb.ant-switch {
|
|
30992
|
-
min-width: 40px;
|
|
30993
|
-
height: 24px;
|
|
30994
|
-
background: rgba(172, 186, 211, 0.6);
|
|
30995
|
-
overflow: hidden;
|
|
30996
|
-
}
|
|
30997
|
-
.s34f1qb.ant-switch:focus {
|
|
30998
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30999
|
-
}
|
|
31000
|
-
.s34f1qb.ant-switch-small {
|
|
31001
|
-
min-width: 26px;
|
|
31002
|
-
height: 16px;
|
|
31003
|
-
}
|
|
31004
|
-
.s34f1qb.ant-switch-large {
|
|
31005
|
-
min-width: 52px;
|
|
31006
|
-
height: 32px;
|
|
31007
|
-
}
|
|
31008
|
-
.s34f1qb.ant-switch .ant-switch-handle {
|
|
31009
|
-
height: 20px;
|
|
31010
|
-
width: 20px;
|
|
31011
|
-
}
|
|
31012
|
-
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
31013
|
-
border-radius: 10px;
|
|
31014
|
-
transition-delay: 120ms;
|
|
31015
|
-
}
|
|
31016
|
-
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
31017
|
-
height: 14px;
|
|
31018
|
-
width: 14px;
|
|
31019
|
-
top: 1px;
|
|
31020
|
-
left: 1px;
|
|
31021
|
-
}
|
|
31022
|
-
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
31023
|
-
height: 28px;
|
|
31024
|
-
width: 28px;
|
|
31025
|
-
}
|
|
31026
|
-
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
31027
|
-
border-radius: 14px;
|
|
31028
|
-
}
|
|
31029
|
-
.s34f1qb.ant-switch-checked {
|
|
31030
|
-
background-color: #00ba5d;
|
|
31031
|
-
}
|
|
31032
|
-
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
31033
|
-
left: calc(100% - 20px - 2px);
|
|
31034
|
-
}
|
|
31035
|
-
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
31036
|
-
left: calc(100% - 14px - 1px);
|
|
31037
|
-
}
|
|
31038
|
-
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
31039
|
-
left: calc(100% - 28px - 2px);
|
|
31040
|
-
}
|
|
31041
|
-
|
|
31042
|
-
.c1to9vb9 {
|
|
31043
|
-
margin-left: 5px;
|
|
31044
|
-
}
|
|
31045
|
-
|
|
31046
31052
|
.t1upn1sz {
|
|
31047
31053
|
height: 100%;
|
|
31048
31054
|
}
|
|
@@ -32147,10 +32153,6 @@ input.rrg1fkn.ant-input {
|
|
|
32147
32153
|
color: rgba(44, 56, 82, 0.6);
|
|
32148
32154
|
}
|
|
32149
32155
|
|
|
32150
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32151
|
-
display: flex;
|
|
32152
|
-
}
|
|
32153
|
-
|
|
32154
32156
|
.s14dk8r1 {
|
|
32155
32157
|
margin: 0;
|
|
32156
32158
|
border-radius: 20px;
|
|
@@ -32225,6 +32227,10 @@ input.rrg1fkn.ant-input {
|
|
|
32225
32227
|
display: inline-block;
|
|
32226
32228
|
}
|
|
32227
32229
|
|
|
32230
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32231
|
+
display: flex;
|
|
32232
|
+
}
|
|
32233
|
+
|
|
32228
32234
|
.s1uupxds {
|
|
32229
32235
|
padding: 0 8px;
|
|
32230
32236
|
border-radius: 4px;
|
|
@@ -32281,6 +32287,10 @@ input.rrg1fkn.ant-input {
|
|
|
32281
32287
|
color: #1d326c;
|
|
32282
32288
|
background-color: rgba(225, 230, 241, 0.6);
|
|
32283
32289
|
}
|
|
32290
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32291
|
+
color: #7E41FF;
|
|
32292
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32293
|
+
}
|
|
32284
32294
|
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32285
32295
|
color: #fff;
|
|
32286
32296
|
}
|
|
@@ -32299,6 +32309,9 @@ input.rrg1fkn.ant-input {
|
|
|
32299
32309
|
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32300
32310
|
background-color: #6b7d99;
|
|
32301
32311
|
}
|
|
32312
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32313
|
+
background-color: #7E41FF;
|
|
32314
|
+
}
|
|
32302
32315
|
|
|
32303
32316
|
.o8ocss1 {
|
|
32304
32317
|
overflow: hidden;
|
|
@@ -32470,6 +32483,10 @@ input.rrg1fkn.ant-input {
|
|
|
32470
32483
|
margin-left: 8px;
|
|
32471
32484
|
}
|
|
32472
32485
|
|
|
32486
|
+
.c1k4vanq {
|
|
32487
|
+
padding: 0 12px 14px 12px;
|
|
32488
|
+
}
|
|
32489
|
+
|
|
32473
32490
|
.sq6vos1 {
|
|
32474
32491
|
--item-min-width: 60px;
|
|
32475
32492
|
}
|
|
@@ -32685,13 +32702,9 @@ input.rrg1fkn.ant-input {
|
|
|
32685
32702
|
background: rgba(163, 180, 204, 0.18);
|
|
32686
32703
|
}
|
|
32687
32704
|
|
|
32688
|
-
.c1k4vanq {
|
|
32689
|
-
padding: 0 16px 14px 16px;
|
|
32690
|
-
}
|
|
32691
|
-
|
|
32692
32705
|
.c1udgdh2 {
|
|
32693
32706
|
color: #2d3a56;
|
|
32694
|
-
padding: 12px
|
|
32707
|
+
padding: 7px 12px;
|
|
32695
32708
|
display: flex;
|
|
32696
32709
|
justify-content: space-between;
|
|
32697
32710
|
align-items: center;
|
|
@@ -32745,43 +32758,12 @@ input.rrg1fkn.ant-input {
|
|
|
32745
32758
|
margin-right: 6px;
|
|
32746
32759
|
}
|
|
32747
32760
|
|
|
32748
|
-
.f1p9ti6d {
|
|
32749
|
-
width: 100%;
|
|
32750
|
-
margin-bottom: 0 !important;
|
|
32751
|
-
flex-flow: nowrap !important;
|
|
32752
|
-
line-break: auto;
|
|
32753
|
-
}
|
|
32754
|
-
.f1p9ti6d > .ant-form-item-label {
|
|
32755
|
-
text-align: left !important;
|
|
32756
|
-
padding-bottom: 0 !important;
|
|
32757
|
-
}
|
|
32758
|
-
.f1p9ti6d > .ant-form-item-label > label {
|
|
32759
|
-
min-height: 32px;
|
|
32760
|
-
height: auto;
|
|
32761
|
-
font-size: 13px;
|
|
32762
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32763
|
-
white-space: normal;
|
|
32764
|
-
}
|
|
32765
|
-
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
32766
|
-
border-color: #ff4d4f !important;
|
|
32767
|
-
}
|
|
32768
|
-
.f1p9ti6d .ant-form-item-explain {
|
|
32769
|
-
margin-top: 4px;
|
|
32770
|
-
font-size: 12px;
|
|
32771
|
-
min-height: 0px;
|
|
32772
|
-
}
|
|
32773
|
-
.f1p9ti6d .ant-form-item-extra {
|
|
32774
|
-
font-size: 12px;
|
|
32775
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32776
|
-
min-height: 0px;
|
|
32777
|
-
}
|
|
32778
|
-
|
|
32779
32761
|
.bab9xum {
|
|
32780
32762
|
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);
|
|
32781
32763
|
}
|
|
32782
32764
|
|
|
32783
32765
|
.cav4gt6 {
|
|
32784
|
-
border-radius:
|
|
32766
|
+
border-radius: 8px;
|
|
32785
32767
|
background-color: white;
|
|
32786
32768
|
}
|
|
32787
32769
|
.cav4gt6.hoverable {
|
|
@@ -32793,55 +32775,6 @@ input.rrg1fkn.ant-input {
|
|
|
32793
32775
|
transform: translateY(-4px);
|
|
32794
32776
|
}
|
|
32795
32777
|
|
|
32796
|
-
.at4ovwe .ant-input-number-handler-wrap {
|
|
32797
|
-
display: var(--at4ovwe-0);
|
|
32798
|
-
}
|
|
32799
|
-
.at4ovwe .ant-input-number-input-wrap {
|
|
32800
|
-
padding: 5px 12px;
|
|
32801
|
-
display: inline-flex;
|
|
32802
|
-
line-height: 1.5715;
|
|
32803
|
-
height: 100%;
|
|
32804
|
-
width: 100%;
|
|
32805
|
-
}
|
|
32806
|
-
.at4ovwe .ant-input-number-input-wrap::after {
|
|
32807
|
-
content: var(--at4ovwe-1);
|
|
32808
|
-
display: var(--at4ovwe-2);
|
|
32809
|
-
flex: none;
|
|
32810
|
-
align-items: center;
|
|
32811
|
-
margin-left: 4px;
|
|
32812
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32813
|
-
}
|
|
32814
|
-
.at4ovwe .ant-input-number-input-wrap::before {
|
|
32815
|
-
content: var(--at4ovwe-3);
|
|
32816
|
-
display: var(--at4ovwe-4);
|
|
32817
|
-
flex: none;
|
|
32818
|
-
align-items: center;
|
|
32819
|
-
margin-right: 4px;
|
|
32820
|
-
cursor: auto;
|
|
32821
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32822
|
-
}
|
|
32823
|
-
.ant-input-group.ant-input-group-compact > .at4ovwe {
|
|
32824
|
-
border-radius: 0;
|
|
32825
|
-
}
|
|
32826
|
-
.at4ovwe.ant-input-number {
|
|
32827
|
-
width: 100%;
|
|
32828
|
-
border-radius: 6px;
|
|
32829
|
-
}
|
|
32830
|
-
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
32831
|
-
border-color: #0096ff;
|
|
32832
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
32833
|
-
}
|
|
32834
|
-
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
32835
|
-
border-color: #e75a3a;
|
|
32836
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
32837
|
-
}
|
|
32838
|
-
.at4ovwe .ant-input-number-input {
|
|
32839
|
-
padding: 0;
|
|
32840
|
-
margin: 0;
|
|
32841
|
-
height: auto;
|
|
32842
|
-
font-size: inherit;
|
|
32843
|
-
}
|
|
32844
|
-
|
|
32845
32778
|
.tc40oxa {
|
|
32846
32779
|
margin-bottom: 4px;
|
|
32847
32780
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -33035,6 +32968,86 @@ input.rrg1fkn.ant-input {
|
|
|
33035
32968
|
margin-right: 8px;
|
|
33036
32969
|
}
|
|
33037
32970
|
|
|
32971
|
+
.at4ovwe .ant-input-number-handler-wrap {
|
|
32972
|
+
display: var(--at4ovwe-0);
|
|
32973
|
+
}
|
|
32974
|
+
.at4ovwe .ant-input-number-input-wrap {
|
|
32975
|
+
padding: 5px 12px;
|
|
32976
|
+
display: inline-flex;
|
|
32977
|
+
line-height: 1.5715;
|
|
32978
|
+
height: 100%;
|
|
32979
|
+
width: 100%;
|
|
32980
|
+
}
|
|
32981
|
+
.at4ovwe .ant-input-number-input-wrap::after {
|
|
32982
|
+
content: var(--at4ovwe-1);
|
|
32983
|
+
display: var(--at4ovwe-2);
|
|
32984
|
+
flex: none;
|
|
32985
|
+
align-items: center;
|
|
32986
|
+
margin-left: 4px;
|
|
32987
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32988
|
+
}
|
|
32989
|
+
.at4ovwe .ant-input-number-input-wrap::before {
|
|
32990
|
+
content: var(--at4ovwe-3);
|
|
32991
|
+
display: var(--at4ovwe-4);
|
|
32992
|
+
flex: none;
|
|
32993
|
+
align-items: center;
|
|
32994
|
+
margin-right: 4px;
|
|
32995
|
+
cursor: auto;
|
|
32996
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32997
|
+
}
|
|
32998
|
+
.ant-input-group.ant-input-group-compact > .at4ovwe {
|
|
32999
|
+
border-radius: 0;
|
|
33000
|
+
}
|
|
33001
|
+
.at4ovwe.ant-input-number {
|
|
33002
|
+
width: 100%;
|
|
33003
|
+
border-radius: 6px;
|
|
33004
|
+
}
|
|
33005
|
+
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
33006
|
+
border-color: #0096ff;
|
|
33007
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
33008
|
+
}
|
|
33009
|
+
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
33010
|
+
border-color: #e75a3a;
|
|
33011
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
33012
|
+
}
|
|
33013
|
+
.at4ovwe .ant-input-number-input {
|
|
33014
|
+
padding: 0;
|
|
33015
|
+
margin: 0;
|
|
33016
|
+
height: auto;
|
|
33017
|
+
font-size: inherit;
|
|
33018
|
+
}
|
|
33019
|
+
|
|
33020
|
+
.f1p9ti6d {
|
|
33021
|
+
width: 100%;
|
|
33022
|
+
margin-bottom: 0 !important;
|
|
33023
|
+
flex-flow: nowrap !important;
|
|
33024
|
+
line-break: auto;
|
|
33025
|
+
}
|
|
33026
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
33027
|
+
text-align: left !important;
|
|
33028
|
+
padding-bottom: 0 !important;
|
|
33029
|
+
}
|
|
33030
|
+
.f1p9ti6d > .ant-form-item-label > label {
|
|
33031
|
+
min-height: 32px;
|
|
33032
|
+
height: auto;
|
|
33033
|
+
font-size: 13px;
|
|
33034
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33035
|
+
white-space: normal;
|
|
33036
|
+
}
|
|
33037
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
33038
|
+
border-color: #ff4d4f !important;
|
|
33039
|
+
}
|
|
33040
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
33041
|
+
margin-top: 4px;
|
|
33042
|
+
font-size: 12px;
|
|
33043
|
+
min-height: 0px;
|
|
33044
|
+
}
|
|
33045
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
33046
|
+
font-size: 12px;
|
|
33047
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33048
|
+
min-height: 0px;
|
|
33049
|
+
}
|
|
33050
|
+
|
|
33038
33051
|
.w1xcixj5.outside-tag {
|
|
33039
33052
|
padding-left: 0;
|
|
33040
33053
|
}
|