@cloudtower/eagle 0.26.22 → 0.26.24-dry
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 +5 -0
- package/dist/components/StatusCapsule/__test__/h5_css.test.d.ts +1 -0
- package/dist/components/StatusCapsule/index.d.ts +8 -0
- package/dist/components.css +162 -73
- package/dist/esm/index.js +844 -737
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +10 -1
- package/dist/style.css +944 -855
- package/dist/umd/index.js +841 -734
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +36 -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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StatusCapsuleColor, StatusCapsuleComponentType } from "../../spec";
|
|
3
|
+
export declare const PresetColors: StatusCapsuleColor[];
|
|
4
|
+
export declare const StatusIcon: React.FC<{
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
}>;
|
|
7
|
+
declare const StatusCapsule: StatusCapsuleComponentType;
|
|
8
|
+
export default StatusCapsule;
|
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;
|
|
@@ -30134,19 +30142,6 @@ html body {
|
|
|
30134
30142
|
font-size: 18px;
|
|
30135
30143
|
}
|
|
30136
30144
|
|
|
30137
|
-
.iap75of {
|
|
30138
|
-
height: 18px;
|
|
30139
|
-
line-height: 18px;
|
|
30140
|
-
padding: 0 4px;
|
|
30141
|
-
border-radius: 4px;
|
|
30142
|
-
background: rgba(235, 239, 245, 0.6);
|
|
30143
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30144
|
-
display: flex;
|
|
30145
|
-
align-items: center;
|
|
30146
|
-
white-space: nowrap;
|
|
30147
|
-
margin-right: 4px;
|
|
30148
|
-
}
|
|
30149
|
-
|
|
30150
30145
|
.i1mrf09m {
|
|
30151
30146
|
display: inline-flex;
|
|
30152
30147
|
align-items: center;
|
|
@@ -30165,6 +30160,19 @@ html body {
|
|
|
30165
30160
|
animation: rotate 680ms linear infinite;
|
|
30166
30161
|
}
|
|
30167
30162
|
|
|
30163
|
+
.iap75of {
|
|
30164
|
+
height: 18px;
|
|
30165
|
+
line-height: 18px;
|
|
30166
|
+
padding: 0 4px;
|
|
30167
|
+
border-radius: 4px;
|
|
30168
|
+
background: rgba(235, 239, 245, 0.6);
|
|
30169
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30170
|
+
display: flex;
|
|
30171
|
+
align-items: center;
|
|
30172
|
+
white-space: nowrap;
|
|
30173
|
+
margin-right: 4px;
|
|
30174
|
+
}
|
|
30175
|
+
|
|
30168
30176
|
.obf05yr {
|
|
30169
30177
|
display: inline-block;
|
|
30170
30178
|
}
|
|
@@ -31488,10 +31496,6 @@ input.rrg1fkn.ant-input {
|
|
|
31488
31496
|
opacity: 0;
|
|
31489
31497
|
}
|
|
31490
31498
|
|
|
31491
|
-
.i1e4sgug {
|
|
31492
|
-
display: inline-block;
|
|
31493
|
-
}
|
|
31494
|
-
|
|
31495
31499
|
.d6j0lbj {
|
|
31496
31500
|
font-family: Inter;
|
|
31497
31501
|
font-style: normal;
|
|
@@ -31967,6 +31971,10 @@ input.rrg1fkn.ant-input {
|
|
|
31967
31971
|
line-height: 12px;
|
|
31968
31972
|
}
|
|
31969
31973
|
|
|
31974
|
+
.i1e4sgug {
|
|
31975
|
+
display: inline-block;
|
|
31976
|
+
}
|
|
31977
|
+
|
|
31970
31978
|
.m15dvk92 {
|
|
31971
31979
|
display: flex;
|
|
31972
31980
|
justify-content: space-between;
|
|
@@ -32147,6 +32155,80 @@ input.rrg1fkn.ant-input {
|
|
|
32147
32155
|
color: rgba(44, 56, 82, 0.6);
|
|
32148
32156
|
}
|
|
32149
32157
|
|
|
32158
|
+
.s14dk8r1 {
|
|
32159
|
+
margin: 0;
|
|
32160
|
+
border-radius: 20px;
|
|
32161
|
+
padding: 2px 10px;
|
|
32162
|
+
height: 22px;
|
|
32163
|
+
}
|
|
32164
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.off-white {
|
|
32165
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
32166
|
+
}
|
|
32167
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
32168
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
32169
|
+
}
|
|
32170
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule {
|
|
32171
|
+
color: #00122e;
|
|
32172
|
+
}
|
|
32173
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
32174
|
+
margin-right: 6px;
|
|
32175
|
+
}
|
|
32176
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
32177
|
+
margin-left: 4px;
|
|
32178
|
+
}
|
|
32179
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
32180
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32181
|
+
}
|
|
32182
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
32183
|
+
background-color: #0080ff;
|
|
32184
|
+
}
|
|
32185
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
32186
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
32187
|
+
}
|
|
32188
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
32189
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32190
|
+
}
|
|
32191
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
32192
|
+
background-color: #f0483e;
|
|
32193
|
+
}
|
|
32194
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
32195
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
32196
|
+
}
|
|
32197
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
32198
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
32199
|
+
}
|
|
32200
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
32201
|
+
background-color: #fea008;
|
|
32202
|
+
}
|
|
32203
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
32204
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
32205
|
+
}
|
|
32206
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
32207
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32208
|
+
}
|
|
32209
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
32210
|
+
background-color: #00ba5d;
|
|
32211
|
+
}
|
|
32212
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
32213
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
32214
|
+
}
|
|
32215
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
32216
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32217
|
+
}
|
|
32218
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
32219
|
+
background-color: #6b7d99;
|
|
32220
|
+
}
|
|
32221
|
+
.s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .s14dk8r1.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
32222
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
32223
|
+
}
|
|
32224
|
+
|
|
32225
|
+
.s1uupoto {
|
|
32226
|
+
width: 8px;
|
|
32227
|
+
height: 8px;
|
|
32228
|
+
border-radius: 50%;
|
|
32229
|
+
display: inline-block;
|
|
32230
|
+
}
|
|
32231
|
+
|
|
32150
32232
|
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32151
32233
|
display: flex;
|
|
32152
32234
|
}
|
|
@@ -32207,6 +32289,10 @@ input.rrg1fkn.ant-input {
|
|
|
32207
32289
|
color: #1d326c;
|
|
32208
32290
|
background-color: rgba(225, 230, 241, 0.6);
|
|
32209
32291
|
}
|
|
32292
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32293
|
+
color: #7E41FF;
|
|
32294
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32295
|
+
}
|
|
32210
32296
|
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32211
32297
|
color: #fff;
|
|
32212
32298
|
}
|
|
@@ -32225,6 +32311,9 @@ input.rrg1fkn.ant-input {
|
|
|
32225
32311
|
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32226
32312
|
background-color: #6b7d99;
|
|
32227
32313
|
}
|
|
32314
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32315
|
+
background-color: #7E41FF;
|
|
32316
|
+
}
|
|
32228
32317
|
|
|
32229
32318
|
.m1thnes4 {
|
|
32230
32319
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -32387,36 +32476,6 @@ input.rrg1fkn.ant-input {
|
|
|
32387
32476
|
margin-left: 8px;
|
|
32388
32477
|
}
|
|
32389
32478
|
|
|
32390
|
-
.t1gz6wqf {
|
|
32391
|
-
height: 100%;
|
|
32392
|
-
}
|
|
32393
|
-
.t1gz6wqf .table-loading-item {
|
|
32394
|
-
padding: 12px 4px;
|
|
32395
|
-
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32396
|
-
display: flex;
|
|
32397
|
-
}
|
|
32398
|
-
.t1gz6wqf .table-loading-item > * {
|
|
32399
|
-
height: 16px;
|
|
32400
|
-
margin: 4px;
|
|
32401
|
-
background: rgba(204, 212, 227, 0.18);
|
|
32402
|
-
border-radius: 2px;
|
|
32403
|
-
}
|
|
32404
|
-
.t1gz6wqf .table-loading-item .checkbox-loading {
|
|
32405
|
-
width: 16px;
|
|
32406
|
-
}
|
|
32407
|
-
.t1gz6wqf .table-loading-item .td-loading {
|
|
32408
|
-
flex: 1;
|
|
32409
|
-
}
|
|
32410
|
-
.t1gz6wqf :nth-child(1) {
|
|
32411
|
-
padding: 8px 4px;
|
|
32412
|
-
}
|
|
32413
|
-
.t1gz6wqf :nth-child(1) > * {
|
|
32414
|
-
background: rgba(107, 125, 153, 0.18);
|
|
32415
|
-
}
|
|
32416
|
-
.t1gz6wqf :nth-child(1) > * {
|
|
32417
|
-
background: rgba(163, 180, 204, 0.18);
|
|
32418
|
-
}
|
|
32419
|
-
|
|
32420
32479
|
.sq6vos1 {
|
|
32421
32480
|
--item-min-width: 60px;
|
|
32422
32481
|
}
|
|
@@ -32602,13 +32661,39 @@ input.rrg1fkn.ant-input {
|
|
|
32602
32661
|
justify-content: center;
|
|
32603
32662
|
}
|
|
32604
32663
|
|
|
32605
|
-
.
|
|
32606
|
-
|
|
32664
|
+
.t1gz6wqf {
|
|
32665
|
+
height: 100%;
|
|
32666
|
+
}
|
|
32667
|
+
.t1gz6wqf .table-loading-item {
|
|
32668
|
+
padding: 12px 4px;
|
|
32669
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32670
|
+
display: flex;
|
|
32671
|
+
}
|
|
32672
|
+
.t1gz6wqf .table-loading-item > * {
|
|
32673
|
+
height: 16px;
|
|
32674
|
+
margin: 4px;
|
|
32675
|
+
background: rgba(204, 212, 227, 0.18);
|
|
32676
|
+
border-radius: 2px;
|
|
32677
|
+
}
|
|
32678
|
+
.t1gz6wqf .table-loading-item .checkbox-loading {
|
|
32679
|
+
width: 16px;
|
|
32680
|
+
}
|
|
32681
|
+
.t1gz6wqf .table-loading-item .td-loading {
|
|
32682
|
+
flex: 1;
|
|
32683
|
+
}
|
|
32684
|
+
.t1gz6wqf :nth-child(1) {
|
|
32685
|
+
padding: 8px 4px;
|
|
32686
|
+
}
|
|
32687
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32688
|
+
background: rgba(107, 125, 153, 0.18);
|
|
32689
|
+
}
|
|
32690
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32691
|
+
background: rgba(163, 180, 204, 0.18);
|
|
32607
32692
|
}
|
|
32608
32693
|
|
|
32609
32694
|
.c1udgdh2 {
|
|
32610
32695
|
color: #2d3a56;
|
|
32611
|
-
padding: 12px
|
|
32696
|
+
padding: 7px 12px;
|
|
32612
32697
|
display: flex;
|
|
32613
32698
|
justify-content: space-between;
|
|
32614
32699
|
align-items: center;
|
|
@@ -32646,12 +32731,16 @@ input.rrg1fkn.ant-input {
|
|
|
32646
32731
|
margin-right: 2px;
|
|
32647
32732
|
}
|
|
32648
32733
|
|
|
32734
|
+
.c1k4vanq {
|
|
32735
|
+
padding: 0 12px 14px 12px;
|
|
32736
|
+
}
|
|
32737
|
+
|
|
32649
32738
|
.bab9xum {
|
|
32650
32739
|
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);
|
|
32651
32740
|
}
|
|
32652
32741
|
|
|
32653
32742
|
.cav4gt6 {
|
|
32654
|
-
border-radius:
|
|
32743
|
+
border-radius: 8px;
|
|
32655
32744
|
background-color: white;
|
|
32656
32745
|
}
|
|
32657
32746
|
.cav4gt6.hoverable {
|
|
@@ -32961,11 +33050,6 @@ input.rrg1fkn.ant-input {
|
|
|
32961
33050
|
margin-right: 4px;
|
|
32962
33051
|
}
|
|
32963
33052
|
|
|
32964
|
-
.iwsze0q {
|
|
32965
|
-
margin-right: 4px;
|
|
32966
|
-
height: 16px;
|
|
32967
|
-
}
|
|
32968
|
-
|
|
32969
33053
|
.sut42l0 {
|
|
32970
33054
|
padding: 0 8px;
|
|
32971
33055
|
height: 18px;
|
|
@@ -32985,23 +33069,9 @@ input.rrg1fkn.ant-input {
|
|
|
32985
33069
|
height: 16px;
|
|
32986
33070
|
}
|
|
32987
33071
|
|
|
32988
|
-
.
|
|
32989
|
-
margin-
|
|
32990
|
-
|
|
32991
|
-
.feau332 .ant-form-item-explain {
|
|
32992
|
-
display: none;
|
|
32993
|
-
min-height: 18px;
|
|
32994
|
-
margin-top: 5px;
|
|
32995
|
-
font-family: "Inter";
|
|
32996
|
-
font-weight: 400;
|
|
32997
|
-
font-size: 12px;
|
|
32998
|
-
line-height: 18px;
|
|
32999
|
-
}
|
|
33000
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
33001
|
-
white-space: pre-wrap;
|
|
33002
|
-
}
|
|
33003
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
33004
|
-
display: block;
|
|
33072
|
+
.iwsze0q {
|
|
33073
|
+
margin-right: 4px;
|
|
33074
|
+
height: 16px;
|
|
33005
33075
|
}
|
|
33006
33076
|
|
|
33007
33077
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
@@ -33033,4 +33103,23 @@ input.rrg1fkn.ant-input {
|
|
|
33033
33103
|
margin: 0;
|
|
33034
33104
|
height: auto;
|
|
33035
33105
|
font-size: inherit;
|
|
33106
|
+
}
|
|
33107
|
+
|
|
33108
|
+
.feau332.ant-form-item {
|
|
33109
|
+
margin-bottom: 0;
|
|
33110
|
+
}
|
|
33111
|
+
.feau332 .ant-form-item-explain {
|
|
33112
|
+
display: none;
|
|
33113
|
+
min-height: 18px;
|
|
33114
|
+
margin-top: 5px;
|
|
33115
|
+
font-family: "Inter";
|
|
33116
|
+
font-weight: 400;
|
|
33117
|
+
font-size: 12px;
|
|
33118
|
+
line-height: 18px;
|
|
33119
|
+
}
|
|
33120
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
33121
|
+
white-space: pre-wrap;
|
|
33122
|
+
}
|
|
33123
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
33124
|
+
display: block;
|
|
33036
33125
|
}
|