@cloudtower/eagle 0.26.8 → 0.26.9
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/Button/index.d.ts +3 -3
- package/dist/components/Card/CardBody.d.ts +5 -0
- package/dist/components/Card/CardTitle.d.ts +5 -0
- package/dist/components/Card/CardWrapper.d.ts +10 -0
- package/dist/components/Card/__test__/Card.spec.d.ts +1 -0
- package/dist/components/Card/index.d.ts +13 -0
- package/dist/components/Stack/index.d.ts +12 -0
- package/dist/components/TableForm/Columns/InputColumn.d.ts +1 -0
- package/dist/components/TableForm/Columns/index.d.ts +6 -3
- package/dist/components/TableForm/__test__/tableForm.test.d.ts +1 -0
- package/dist/components/TableForm/types.d.ts +36 -2
- package/dist/components/Tag/SplitTag.d.ts +3 -0
- package/dist/components/Tag/const.d.ts +1 -0
- package/dist/components/Tag/index.d.ts +6 -0
- package/dist/components/Tag/style.d.ts +4 -0
- package/dist/components.css +1202 -1098
- package/dist/esm/index.js +1298 -1000
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +16 -3
- package/dist/style.css +508 -404
- package/dist/umd/index.js +1298 -1000
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/testSuit.d.ts +2 -0
- package/dist/variables.scss +3 -2
- package/package.json +5 -5
package/dist/style.css
CHANGED
|
@@ -98,168 +98,117 @@
|
|
|
98
98
|
/* box shadow */
|
|
99
99
|
/* fisheye */
|
|
100
100
|
.loading {
|
|
101
|
+
width: 64px;
|
|
102
|
+
height: 64px;
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
justify-content: center;
|
|
101
106
|
position: relative;
|
|
102
|
-
display: inline-block;
|
|
103
|
-
opacity: 0;
|
|
104
|
-
animation-name: fadeIn;
|
|
105
|
-
/*
|
|
106
|
-
animation-delay: 0.4s; //FIXME: use a more accurate way to make this happen
|
|
107
|
-
*/
|
|
108
|
-
animation-fill-mode: forwards;
|
|
109
|
-
line-height: 23.49px;
|
|
110
|
-
width: 42.6214285714px;
|
|
111
107
|
}
|
|
112
108
|
|
|
113
|
-
.
|
|
114
|
-
display: inline-block;
|
|
115
|
-
position: relative;
|
|
116
|
-
vertical-align: middle;
|
|
117
|
-
}
|
|
118
|
-
.loading__sugar:before, .loading__sugar:after {
|
|
119
|
-
content: "";
|
|
120
|
-
display: inline-block;
|
|
121
|
-
width: 4.05px;
|
|
122
|
-
height: 4.05px;
|
|
123
|
-
border-radius: 50%;
|
|
109
|
+
.loading-indicator__line1 {
|
|
124
110
|
position: absolute;
|
|
111
|
+
width: 5px;
|
|
112
|
+
height: 48px;
|
|
113
|
+
left: 9.33px;
|
|
114
|
+
top: 40.5px;
|
|
115
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
116
|
+
border-radius: 5px;
|
|
117
|
+
transform: rotate(-128deg);
|
|
118
|
+
transform-origin: top left;
|
|
119
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
125
120
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
139
|
-
animation-delay: -1.869s;
|
|
140
|
-
background-color: #25c764;
|
|
141
|
-
}
|
|
142
|
-
.loading__sugar:nth-child(2) {
|
|
143
|
-
animation-delay: -3.738s;
|
|
144
|
-
}
|
|
145
|
-
.loading__sugar:nth-child(2):before {
|
|
146
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
147
|
-
animation-delay: -3.738s;
|
|
148
|
-
background-color: #0096ff;
|
|
149
|
-
}
|
|
150
|
-
.loading__sugar:nth-child(2):after {
|
|
151
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
152
|
-
animation-delay: -3.738s;
|
|
153
|
-
background-color: #25c764;
|
|
154
|
-
}
|
|
155
|
-
.loading__sugar:nth-child(3) {
|
|
156
|
-
animation-delay: -5.607s;
|
|
157
|
-
}
|
|
158
|
-
.loading__sugar:nth-child(3):before {
|
|
159
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
160
|
-
animation-delay: -5.607s;
|
|
161
|
-
background-color: #0096ff;
|
|
162
|
-
}
|
|
163
|
-
.loading__sugar:nth-child(3):after {
|
|
164
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
165
|
-
animation-delay: -5.607s;
|
|
166
|
-
background-color: #25c764;
|
|
167
|
-
}
|
|
168
|
-
.loading__sugar:nth-child(4) {
|
|
169
|
-
animation-delay: -7.476s;
|
|
170
|
-
}
|
|
171
|
-
.loading__sugar:nth-child(4):before {
|
|
172
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
173
|
-
animation-delay: -7.476s;
|
|
174
|
-
background-color: #0096ff;
|
|
175
|
-
}
|
|
176
|
-
.loading__sugar:nth-child(4):after {
|
|
177
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
178
|
-
animation-delay: -7.476s;
|
|
179
|
-
background-color: #25c764;
|
|
180
|
-
}
|
|
181
|
-
.loading__sugar:nth-child(5) {
|
|
182
|
-
animation-delay: -9.345s;
|
|
183
|
-
}
|
|
184
|
-
.loading__sugar:nth-child(5):before {
|
|
185
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
186
|
-
animation-delay: -9.345s;
|
|
187
|
-
background-color: #0096ff;
|
|
188
|
-
}
|
|
189
|
-
.loading__sugar:nth-child(5):after {
|
|
190
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
191
|
-
animation-delay: -9.345s;
|
|
192
|
-
background-color: #25c764;
|
|
193
|
-
}
|
|
194
|
-
.loading__sugar:nth-child(6) {
|
|
195
|
-
animation-delay: -11.214s;
|
|
196
|
-
}
|
|
197
|
-
.loading__sugar:nth-child(6):before {
|
|
198
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
199
|
-
animation-delay: -11.214s;
|
|
200
|
-
background-color: #0096ff;
|
|
201
|
-
}
|
|
202
|
-
.loading__sugar:nth-child(6):after {
|
|
203
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
204
|
-
animation-delay: -11.214s;
|
|
205
|
-
background-color: #25c764;
|
|
206
|
-
}
|
|
207
|
-
.loading__sugar:nth-child(7) {
|
|
208
|
-
animation-delay: -13.083s;
|
|
209
|
-
}
|
|
210
|
-
.loading__sugar:nth-child(7):before {
|
|
211
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
212
|
-
animation-delay: -13.083s;
|
|
213
|
-
background-color: #0096ff;
|
|
121
|
+
|
|
122
|
+
.loading-indicator__line2 {
|
|
123
|
+
position: absolute;
|
|
124
|
+
width: 5px;
|
|
125
|
+
height: 48px;
|
|
126
|
+
left: 40.8px;
|
|
127
|
+
top: 8.4px;
|
|
128
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
129
|
+
border-radius: 5px;
|
|
130
|
+
transform: rotate(-8deg);
|
|
131
|
+
transform-origin: top left;
|
|
132
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
214
133
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
134
|
+
|
|
135
|
+
.loading-indicator__line3 {
|
|
136
|
+
position: absolute;
|
|
137
|
+
width: 5px;
|
|
138
|
+
height: 48px;
|
|
139
|
+
left: 52.9px;
|
|
140
|
+
top: 51.8px;
|
|
141
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
142
|
+
border-radius: 5px;
|
|
143
|
+
transform: rotate(112deg);
|
|
144
|
+
transform-origin: top left;
|
|
145
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
219
146
|
}
|
|
220
147
|
|
|
221
|
-
@keyframes
|
|
148
|
+
@keyframes loading-indicator1 {
|
|
222
149
|
0% {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
transform: scale(1.2), translateZ(1px);
|
|
150
|
+
height: 48px;
|
|
151
|
+
left: 9.33px;
|
|
152
|
+
top: 40.5px;
|
|
227
153
|
}
|
|
228
154
|
50% {
|
|
229
|
-
|
|
155
|
+
height: 5px;
|
|
156
|
+
left: 9.33px;
|
|
157
|
+
top: 40.5px;
|
|
230
158
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
159
|
+
51% {
|
|
160
|
+
height: 5px;
|
|
161
|
+
left: 43.2px;
|
|
162
|
+
top: 14.02px;
|
|
234
163
|
}
|
|
235
164
|
100% {
|
|
236
|
-
|
|
165
|
+
height: 48px;
|
|
166
|
+
left: 9.33px;
|
|
167
|
+
top: 40.5px;
|
|
237
168
|
}
|
|
238
169
|
}
|
|
239
|
-
@keyframes
|
|
170
|
+
@keyframes loading-indicator2 {
|
|
240
171
|
0% {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
background-color: #e9f9f0;
|
|
245
|
-
transform: scale(0.8), translateZ(-1px);
|
|
172
|
+
height: 48px;
|
|
173
|
+
left: 40.8px;
|
|
174
|
+
top: 8.4px;
|
|
246
175
|
}
|
|
247
176
|
50% {
|
|
248
|
-
|
|
177
|
+
height: 5px;
|
|
178
|
+
left: 40.8px;
|
|
179
|
+
top: 8.4px;
|
|
249
180
|
}
|
|
250
|
-
|
|
251
|
-
|
|
181
|
+
51% {
|
|
182
|
+
height: 5px;
|
|
183
|
+
left: 46.8px;
|
|
184
|
+
top: 51px;
|
|
252
185
|
}
|
|
253
186
|
100% {
|
|
254
|
-
|
|
187
|
+
height: 48px;
|
|
188
|
+
left: 40.8px;
|
|
189
|
+
top: 8.4px;
|
|
255
190
|
}
|
|
256
191
|
}
|
|
257
|
-
@keyframes
|
|
258
|
-
|
|
259
|
-
|
|
192
|
+
@keyframes loading-indicator3 {
|
|
193
|
+
0% {
|
|
194
|
+
height: 48px;
|
|
195
|
+
left: 52.9px;
|
|
196
|
+
top: 51.8px;
|
|
260
197
|
}
|
|
261
|
-
|
|
262
|
-
|
|
198
|
+
50% {
|
|
199
|
+
height: 5px;
|
|
200
|
+
left: 52.9px;
|
|
201
|
+
top: 51.8px;
|
|
202
|
+
}
|
|
203
|
+
51% {
|
|
204
|
+
height: 5px;
|
|
205
|
+
left: 13px;
|
|
206
|
+
top: 35.7px;
|
|
207
|
+
}
|
|
208
|
+
100% {
|
|
209
|
+
height: 48px;
|
|
210
|
+
left: 52.9px;
|
|
211
|
+
top: 51.8px;
|
|
263
212
|
}
|
|
264
213
|
}
|
|
265
214
|
/* // basic */
|
|
@@ -1063,7 +1012,7 @@ p {
|
|
|
1063
1012
|
.ant-alert .ant-alert-icon {
|
|
1064
1013
|
position: static;
|
|
1065
1014
|
height: 18px;
|
|
1066
|
-
margin-right:
|
|
1015
|
+
margin-right: 8px;
|
|
1067
1016
|
}
|
|
1068
1017
|
.ant-alert .ant-alert-close-icon {
|
|
1069
1018
|
position: initial;
|
|
@@ -1102,6 +1051,10 @@ p {
|
|
|
1102
1051
|
color: #005ed1;
|
|
1103
1052
|
}
|
|
1104
1053
|
|
|
1054
|
+
.ant-alert-info.action:not(.alert-normal) .ant-alert-message {
|
|
1055
|
+
color: #00122e;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1105
1058
|
.alert-normal {
|
|
1106
1059
|
background: rgba(225, 230, 241, 0.6);
|
|
1107
1060
|
}
|
|
@@ -1330,6 +1283,66 @@ td .ant-btn-link {
|
|
|
1330
1283
|
filter: drop-shadow(0px 0px 0px 4px rgba(255, 74, 74, 0.16));
|
|
1331
1284
|
}
|
|
1332
1285
|
|
|
1286
|
+
.ant-tag {
|
|
1287
|
+
border: none;
|
|
1288
|
+
border-radius: 4px;
|
|
1289
|
+
display: inline-flex;
|
|
1290
|
+
align-items: center;
|
|
1291
|
+
}
|
|
1292
|
+
.ant-tag:hover {
|
|
1293
|
+
opacity: unset;
|
|
1294
|
+
}
|
|
1295
|
+
.ant-tag.ant-tag-red {
|
|
1296
|
+
color: #f0483e;
|
|
1297
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
1298
|
+
}
|
|
1299
|
+
.ant-tag.ant-tag-red.tag-hover:hover, .ant-tag.ant-tag-red.__pseudo-states-hover {
|
|
1300
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
1301
|
+
}
|
|
1302
|
+
.ant-tag.ant-tag-red-ontint {
|
|
1303
|
+
color: #ff5252;
|
|
1304
|
+
background-color: rgba(255, 74, 74, 0.2);
|
|
1305
|
+
}
|
|
1306
|
+
.ant-tag.ant-tag-yellow {
|
|
1307
|
+
color: #e07f00;
|
|
1308
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
1309
|
+
}
|
|
1310
|
+
.ant-tag.ant-tag-yellow.tag-hover:hover, .ant-tag.ant-tag-yellow.__pseudo-states-hover {
|
|
1311
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
1312
|
+
}
|
|
1313
|
+
.ant-tag.ant-tag-green {
|
|
1314
|
+
color: #008f4c;
|
|
1315
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
1316
|
+
}
|
|
1317
|
+
.ant-tag.ant-tag-green.tag-hover:hover, .ant-tag.ant-tag-green.__pseudo-states-hover {
|
|
1318
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
1319
|
+
}
|
|
1320
|
+
.ant-tag.ant-tag-green-ontint {
|
|
1321
|
+
color: #23cf6d;
|
|
1322
|
+
background-color: rgba(30, 201, 127, 0.2);
|
|
1323
|
+
}
|
|
1324
|
+
.ant-tag.ant-tag-blue {
|
|
1325
|
+
color: #0080ff;
|
|
1326
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
1327
|
+
}
|
|
1328
|
+
.ant-tag.ant-tag-blue.tag-hover:hover, .ant-tag.ant-tag-blue.__pseudo-states-hover {
|
|
1329
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
1330
|
+
}
|
|
1331
|
+
.ant-tag.ant-tag-purple {
|
|
1332
|
+
color: rgb(126, 65, 255);
|
|
1333
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
1334
|
+
}
|
|
1335
|
+
.ant-tag.ant-tag-purple.tag-hover:hover, .ant-tag.ant-tag-purple.__pseudo-states-hover {
|
|
1336
|
+
background-color: rgba(126, 65, 255, 0.16);
|
|
1337
|
+
}
|
|
1338
|
+
.ant-tag.ant-tag-gray {
|
|
1339
|
+
color: #1d326c;
|
|
1340
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
1341
|
+
}
|
|
1342
|
+
.ant-tag.ant-tag-gray.tag-hover:hover, .ant-tag.ant-tag-gray.__pseudo-states-hover {
|
|
1343
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1333
1346
|
@media screen and (min-width: 1280px) {
|
|
1334
1347
|
.cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
|
|
1335
1348
|
.cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
|
|
@@ -1636,43 +1649,6 @@ html body {
|
|
|
1636
1649
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1637
1650
|
}
|
|
1638
1651
|
}
|
|
1639
|
-
.obf05yr {
|
|
1640
|
-
display: inline-block;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
.hsms1n6 {
|
|
1644
|
-
visibility: hidden;
|
|
1645
|
-
position: absolute;
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
|
-
.fde5mpd {
|
|
1649
|
-
width: 100%;
|
|
1650
|
-
height: 100%;
|
|
1651
|
-
min-height: 124px;
|
|
1652
|
-
display: flex;
|
|
1653
|
-
flex-direction: column;
|
|
1654
|
-
justify-content: center;
|
|
1655
|
-
align-items: center;
|
|
1656
|
-
}
|
|
1657
|
-
.fde5mpd .error-text {
|
|
1658
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1659
|
-
margin-bottom: 16px;
|
|
1660
|
-
font-size: 18px;
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
|
-
.iap75of {
|
|
1664
|
-
height: 18px;
|
|
1665
|
-
line-height: 18px;
|
|
1666
|
-
padding: 0 4px;
|
|
1667
|
-
border-radius: 4px;
|
|
1668
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1669
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1670
|
-
display: flex;
|
|
1671
|
-
align-items: center;
|
|
1672
|
-
white-space: nowrap;
|
|
1673
|
-
margin-right: 4px;
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
1652
|
.buj61ew.ant-btn {
|
|
1677
1653
|
height: 32px;
|
|
1678
1654
|
border-radius: 6px;
|
|
@@ -1921,6 +1897,39 @@ html body {
|
|
|
1921
1897
|
padding: 0;
|
|
1922
1898
|
}
|
|
1923
1899
|
|
|
1900
|
+
.fde5mpd {
|
|
1901
|
+
width: 100%;
|
|
1902
|
+
height: 100%;
|
|
1903
|
+
min-height: 124px;
|
|
1904
|
+
display: flex;
|
|
1905
|
+
flex-direction: column;
|
|
1906
|
+
justify-content: center;
|
|
1907
|
+
align-items: center;
|
|
1908
|
+
}
|
|
1909
|
+
.fde5mpd .error-text {
|
|
1910
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1911
|
+
margin-bottom: 16px;
|
|
1912
|
+
font-size: 18px;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.i1mrf09m {
|
|
1916
|
+
display: inline-flex;
|
|
1917
|
+
align-items: center;
|
|
1918
|
+
}
|
|
1919
|
+
.i1mrf09m .icon-inner {
|
|
1920
|
+
display: inline-flex;
|
|
1921
|
+
align-items: center;
|
|
1922
|
+
justify-content: center;
|
|
1923
|
+
}
|
|
1924
|
+
.i1mrf09m .icon-inner + span,
|
|
1925
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
1926
|
+
margin-left: 4px;
|
|
1927
|
+
}
|
|
1928
|
+
.i1mrf09m.is-rotate img,
|
|
1929
|
+
.i1mrf09m.is-rotate svg {
|
|
1930
|
+
animation: rotate 680ms linear infinite;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1924
1933
|
.bpq0js6 {
|
|
1925
1934
|
padding: 4px 11px;
|
|
1926
1935
|
}
|
|
@@ -1950,105 +1959,81 @@ html body {
|
|
|
1950
1959
|
border-radius: unset;
|
|
1951
1960
|
}
|
|
1952
1961
|
|
|
1953
|
-
.
|
|
1954
|
-
|
|
1962
|
+
.iap75of {
|
|
1963
|
+
height: 18px;
|
|
1964
|
+
line-height: 18px;
|
|
1965
|
+
padding: 0 4px;
|
|
1966
|
+
border-radius: 4px;
|
|
1967
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1968
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1969
|
+
display: flex;
|
|
1955
1970
|
align-items: center;
|
|
1971
|
+
white-space: nowrap;
|
|
1972
|
+
margin-right: 4px;
|
|
1956
1973
|
}
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1974
|
+
|
|
1975
|
+
.s34f1qb.ant-switch {
|
|
1976
|
+
min-width: 40px;
|
|
1977
|
+
height: 24px;
|
|
1978
|
+
background: rgba(172, 186, 211, 0.6);
|
|
1979
|
+
overflow: hidden;
|
|
1961
1980
|
}
|
|
1962
|
-
.
|
|
1963
|
-
|
|
1964
|
-
margin-left: 4px;
|
|
1981
|
+
.s34f1qb.ant-switch:focus {
|
|
1982
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
1965
1983
|
}
|
|
1966
|
-
.
|
|
1967
|
-
|
|
1968
|
-
|
|
1984
|
+
.s34f1qb.ant-switch-small {
|
|
1985
|
+
min-width: 26px;
|
|
1986
|
+
height: 16px;
|
|
1969
1987
|
}
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
justify-content: stretch;
|
|
1988
|
+
.s34f1qb.ant-switch-large {
|
|
1989
|
+
min-width: 52px;
|
|
1990
|
+
height: 32px;
|
|
1974
1991
|
}
|
|
1975
|
-
.
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
flex: 1;
|
|
1979
|
-
overflow: visible;
|
|
1992
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
1993
|
+
height: 20px;
|
|
1994
|
+
width: 20px;
|
|
1980
1995
|
}
|
|
1981
|
-
.
|
|
1982
|
-
|
|
1996
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
1997
|
+
border-radius: 10px;
|
|
1998
|
+
transition-delay: 120ms;
|
|
1983
1999
|
}
|
|
1984
|
-
.
|
|
1985
|
-
|
|
1986
|
-
|
|
2000
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2001
|
+
height: 14px;
|
|
2002
|
+
width: 14px;
|
|
2003
|
+
top: 1px;
|
|
2004
|
+
left: 1px;
|
|
1987
2005
|
}
|
|
1988
|
-
.
|
|
1989
|
-
height:
|
|
1990
|
-
|
|
1991
|
-
width: 100%;
|
|
1992
|
-
text-align: center;
|
|
1993
|
-
padding: 0;
|
|
1994
|
-
font-size: 12px;
|
|
1995
|
-
font-weight: normal;
|
|
2006
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2007
|
+
height: 28px;
|
|
2008
|
+
width: 28px;
|
|
1996
2009
|
}
|
|
1997
|
-
.
|
|
1998
|
-
|
|
2010
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2011
|
+
border-radius: 14px;
|
|
1999
2012
|
}
|
|
2000
|
-
.
|
|
2001
|
-
|
|
2013
|
+
.s34f1qb.ant-switch-checked {
|
|
2014
|
+
background-color: #00ba5d;
|
|
2002
2015
|
}
|
|
2003
|
-
.
|
|
2004
|
-
|
|
2016
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2017
|
+
left: calc(100% - 20px - 2px);
|
|
2005
2018
|
}
|
|
2006
|
-
.
|
|
2007
|
-
|
|
2019
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2020
|
+
left: calc(100% - 14px - 1px);
|
|
2008
2021
|
}
|
|
2009
|
-
.
|
|
2010
|
-
|
|
2022
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2023
|
+
left: calc(100% - 28px - 2px);
|
|
2011
2024
|
}
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
height: 0;
|
|
2016
|
-
border: 13px solid transparent;
|
|
2017
|
-
position: absolute;
|
|
2018
|
-
top: 0;
|
|
2019
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2020
|
-
right: -21px;
|
|
2021
|
-
z-index: 2;
|
|
2022
|
-
}
|
|
2023
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2024
|
-
content: "";
|
|
2025
|
-
width: 0;
|
|
2026
|
-
height: 0;
|
|
2027
|
-
border: 13px solid transparent;
|
|
2028
|
-
position: absolute;
|
|
2029
|
-
top: 0;
|
|
2030
|
-
border-left: 8px solid #fff;
|
|
2031
|
-
left: 0;
|
|
2032
|
-
}
|
|
2033
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2034
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
2035
|
-
}
|
|
2036
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2037
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2038
|
-
}
|
|
2039
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2040
|
-
color: #005ed1;
|
|
2041
|
-
}
|
|
2042
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2043
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2044
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
2025
|
+
|
|
2026
|
+
.c1to9vb9 {
|
|
2027
|
+
margin-left: 5px;
|
|
2045
2028
|
}
|
|
2046
|
-
|
|
2047
|
-
.
|
|
2048
|
-
|
|
2029
|
+
|
|
2030
|
+
.obf05yr {
|
|
2031
|
+
display: inline-block;
|
|
2049
2032
|
}
|
|
2050
|
-
|
|
2051
|
-
|
|
2033
|
+
|
|
2034
|
+
.hsms1n6 {
|
|
2035
|
+
visibility: hidden;
|
|
2036
|
+
position: absolute;
|
|
2052
2037
|
}
|
|
2053
2038
|
|
|
2054
2039
|
.p12gwtiw {
|
|
@@ -2914,59 +2899,87 @@ input.rrg1fkn.ant-input {
|
|
|
2914
2899
|
border-bottom-left-radius: 0;
|
|
2915
2900
|
}
|
|
2916
2901
|
|
|
2917
|
-
.
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2921
|
-
overflow: hidden;
|
|
2902
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2903
|
+
flex-direction: row;
|
|
2904
|
+
justify-content: stretch;
|
|
2922
2905
|
}
|
|
2923
|
-
.
|
|
2924
|
-
|
|
2906
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2907
|
+
padding: 0;
|
|
2908
|
+
margin-right: 4px;
|
|
2909
|
+
flex: 1;
|
|
2910
|
+
overflow: visible;
|
|
2925
2911
|
}
|
|
2926
|
-
.
|
|
2927
|
-
|
|
2928
|
-
height: 16px;
|
|
2912
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2913
|
+
display: none;
|
|
2929
2914
|
}
|
|
2930
|
-
.
|
|
2931
|
-
|
|
2932
|
-
height:
|
|
2915
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2916
|
+
width: 100%;
|
|
2917
|
+
min-height: unset;
|
|
2933
2918
|
}
|
|
2934
|
-
.
|
|
2935
|
-
height:
|
|
2936
|
-
|
|
2919
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2920
|
+
height: 26px;
|
|
2921
|
+
line-height: 26px;
|
|
2922
|
+
width: 100%;
|
|
2923
|
+
text-align: center;
|
|
2924
|
+
padding: 0;
|
|
2925
|
+
font-size: 12px;
|
|
2926
|
+
font-weight: normal;
|
|
2937
2927
|
}
|
|
2938
|
-
.
|
|
2939
|
-
|
|
2940
|
-
transition-delay: 120ms;
|
|
2928
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2929
|
+
margin-right: 10px;
|
|
2941
2930
|
}
|
|
2942
|
-
.
|
|
2943
|
-
|
|
2944
|
-
width: 14px;
|
|
2945
|
-
top: 1px;
|
|
2946
|
-
left: 1px;
|
|
2931
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2932
|
+
display: none;
|
|
2947
2933
|
}
|
|
2948
|
-
.
|
|
2949
|
-
|
|
2950
|
-
width: 28px;
|
|
2934
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2935
|
+
border-radius: 4px 0 0 4px;
|
|
2951
2936
|
}
|
|
2952
|
-
.
|
|
2953
|
-
|
|
2937
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2938
|
+
margin-right: 0;
|
|
2954
2939
|
}
|
|
2955
|
-
.
|
|
2956
|
-
|
|
2940
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2941
|
+
border-radius: 0 4px 4px 0;
|
|
2957
2942
|
}
|
|
2958
|
-
.
|
|
2959
|
-
|
|
2943
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2944
|
+
content: "";
|
|
2945
|
+
width: 0;
|
|
2946
|
+
height: 0;
|
|
2947
|
+
border: 13px solid transparent;
|
|
2948
|
+
position: absolute;
|
|
2949
|
+
top: 0;
|
|
2950
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2951
|
+
right: -21px;
|
|
2952
|
+
z-index: 2;
|
|
2960
2953
|
}
|
|
2961
|
-
.
|
|
2962
|
-
|
|
2954
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2955
|
+
content: "";
|
|
2956
|
+
width: 0;
|
|
2957
|
+
height: 0;
|
|
2958
|
+
border: 13px solid transparent;
|
|
2959
|
+
position: absolute;
|
|
2960
|
+
top: 0;
|
|
2961
|
+
border-left: 8px solid #fff;
|
|
2962
|
+
left: 0;
|
|
2963
2963
|
}
|
|
2964
|
-
.
|
|
2965
|
-
|
|
2964
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2965
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2966
2966
|
}
|
|
2967
|
-
|
|
2968
|
-
.
|
|
2969
|
-
|
|
2967
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2968
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2969
|
+
}
|
|
2970
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2971
|
+
color: #005ed1;
|
|
2972
|
+
}
|
|
2973
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2974
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2975
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2976
|
+
}
|
|
2977
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2978
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2979
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2980
|
+
}
|
|
2981
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2982
|
+
padding: 0;
|
|
2970
2983
|
}
|
|
2971
2984
|
|
|
2972
2985
|
.t1upn1sz {
|
|
@@ -3892,6 +3905,19 @@ input.rrg1fkn.ant-input {
|
|
|
3892
3905
|
line-height: 12px;
|
|
3893
3906
|
}
|
|
3894
3907
|
|
|
3908
|
+
.m15dvk92 {
|
|
3909
|
+
display: flex;
|
|
3910
|
+
justify-content: space-between;
|
|
3911
|
+
width: 100%;
|
|
3912
|
+
}
|
|
3913
|
+
.m15dvk92 .action {
|
|
3914
|
+
margin-left: 16px;
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
.aql8iqz .ant-alert-message {
|
|
3918
|
+
width: 100%;
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3895
3921
|
.c198s9j3 {
|
|
3896
3922
|
color: #2d3a56;
|
|
3897
3923
|
line-height: 22px;
|
|
@@ -3963,20 +3989,6 @@ input.rrg1fkn.ant-input {
|
|
|
3963
3989
|
margin-left: 24px;
|
|
3964
3990
|
}
|
|
3965
3991
|
|
|
3966
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
3967
|
-
display: flex;
|
|
3968
|
-
}
|
|
3969
|
-
|
|
3970
|
-
.igz4le8 {
|
|
3971
|
-
height: 24px;
|
|
3972
|
-
width: 56px !important;
|
|
3973
|
-
margin-right: 4px;
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
.c1riexje {
|
|
3977
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3978
|
-
}
|
|
3979
|
-
|
|
3980
3992
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
3981
3993
|
border-radius: 6px;
|
|
3982
3994
|
}
|
|
@@ -4032,6 +4044,93 @@ input.rrg1fkn.ant-input {
|
|
|
4032
4044
|
transform: rotate(180deg);
|
|
4033
4045
|
}
|
|
4034
4046
|
|
|
4047
|
+
.igz4le8 {
|
|
4048
|
+
height: 24px;
|
|
4049
|
+
width: 56px !important;
|
|
4050
|
+
margin-right: 4px;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.c1riexje {
|
|
4054
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
4058
|
+
display: flex;
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
.s1uupxds {
|
|
4062
|
+
padding: 0 8px;
|
|
4063
|
+
border-radius: 4px;
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
.m10sqwut {
|
|
4067
|
+
padding: 2px 8px;
|
|
4068
|
+
border-radius: 3px;
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
.l1d492wb {
|
|
4072
|
+
padding: 3px 8px;
|
|
4073
|
+
border-radius: 2px;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.t1lzavmu.ant-tag:hover {
|
|
4077
|
+
opacity: unset;
|
|
4078
|
+
}
|
|
4079
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
4080
|
+
margin: 0;
|
|
4081
|
+
display: inline-flex;
|
|
4082
|
+
align-items: center;
|
|
4083
|
+
border: none;
|
|
4084
|
+
}
|
|
4085
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
4086
|
+
width: 16px;
|
|
4087
|
+
height: 16px;
|
|
4088
|
+
color: inherit;
|
|
4089
|
+
margin-left: 4px;
|
|
4090
|
+
opacity: 0.6;
|
|
4091
|
+
}
|
|
4092
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4093
|
+
opacity: 1;
|
|
4094
|
+
}
|
|
4095
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4096
|
+
color: #0080ff;
|
|
4097
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4098
|
+
}
|
|
4099
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4100
|
+
color: #f0483e;
|
|
4101
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
4102
|
+
}
|
|
4103
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4104
|
+
color: #fea008;
|
|
4105
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
4106
|
+
}
|
|
4107
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4108
|
+
color: #00ba5d;
|
|
4109
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
4110
|
+
}
|
|
4111
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4112
|
+
color: #1d326c;
|
|
4113
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4114
|
+
}
|
|
4115
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4116
|
+
color: #fff;
|
|
4117
|
+
}
|
|
4118
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4119
|
+
background-color: #f0483e;
|
|
4120
|
+
}
|
|
4121
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4122
|
+
background-color: #fea008;
|
|
4123
|
+
}
|
|
4124
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4125
|
+
background-color: #00ba5d;
|
|
4126
|
+
}
|
|
4127
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4128
|
+
background-color: #0080ff;
|
|
4129
|
+
}
|
|
4130
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4131
|
+
background-color: #6b7d99;
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4035
4134
|
.m1thnes4 {
|
|
4036
4135
|
color: rgba(44, 56, 82, 0.6);
|
|
4037
4136
|
text-align: center;
|
|
@@ -4193,77 +4292,8 @@ input.rrg1fkn.ant-input {
|
|
|
4193
4292
|
margin-left: 8px;
|
|
4194
4293
|
}
|
|
4195
4294
|
|
|
4196
|
-
.
|
|
4197
|
-
padding: 0
|
|
4198
|
-
border-radius: 4px;
|
|
4199
|
-
}
|
|
4200
|
-
|
|
4201
|
-
.m10sqwut {
|
|
4202
|
-
padding: 2px 8px;
|
|
4203
|
-
border-radius: 3px;
|
|
4204
|
-
}
|
|
4205
|
-
|
|
4206
|
-
.l1d492wb {
|
|
4207
|
-
padding: 3px 8px;
|
|
4208
|
-
border-radius: 2px;
|
|
4209
|
-
}
|
|
4210
|
-
|
|
4211
|
-
.t1lzavmu.ant-tag:hover {
|
|
4212
|
-
opacity: unset;
|
|
4213
|
-
}
|
|
4214
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
4215
|
-
margin: 0;
|
|
4216
|
-
display: inline-flex;
|
|
4217
|
-
align-items: center;
|
|
4218
|
-
border: none;
|
|
4219
|
-
}
|
|
4220
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
4221
|
-
width: 16px;
|
|
4222
|
-
height: 16px;
|
|
4223
|
-
color: inherit;
|
|
4224
|
-
margin-left: 4px;
|
|
4225
|
-
opacity: 0.6;
|
|
4226
|
-
}
|
|
4227
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4228
|
-
opacity: 1;
|
|
4229
|
-
}
|
|
4230
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4231
|
-
color: #0080ff;
|
|
4232
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
4233
|
-
}
|
|
4234
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4235
|
-
color: #f0483e;
|
|
4236
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
4237
|
-
}
|
|
4238
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4239
|
-
color: #fea008;
|
|
4240
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
4241
|
-
}
|
|
4242
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4243
|
-
color: #00ba5d;
|
|
4244
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
4245
|
-
}
|
|
4246
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4247
|
-
color: #1d326c;
|
|
4248
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
4249
|
-
}
|
|
4250
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4251
|
-
color: #fff;
|
|
4252
|
-
}
|
|
4253
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4254
|
-
background-color: #f0483e;
|
|
4255
|
-
}
|
|
4256
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4257
|
-
background-color: #fea008;
|
|
4258
|
-
}
|
|
4259
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4260
|
-
background-color: #00ba5d;
|
|
4261
|
-
}
|
|
4262
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4263
|
-
background-color: #0080ff;
|
|
4264
|
-
}
|
|
4265
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4266
|
-
background-color: #6b7d99;
|
|
4295
|
+
.c1k4vanq {
|
|
4296
|
+
padding: 0 16px 14px 16px;
|
|
4267
4297
|
}
|
|
4268
4298
|
|
|
4269
4299
|
.t1gz6wqf {
|
|
@@ -4296,6 +4326,55 @@ input.rrg1fkn.ant-input {
|
|
|
4296
4326
|
background: rgba(163, 180, 204, 0.18);
|
|
4297
4327
|
}
|
|
4298
4328
|
|
|
4329
|
+
.c1udgdh2 {
|
|
4330
|
+
color: #2d3a56;
|
|
4331
|
+
padding: 12px 16px 10px 16px;
|
|
4332
|
+
display: flex;
|
|
4333
|
+
justify-content: space-between;
|
|
4334
|
+
align-items: center;
|
|
4335
|
+
}
|
|
4336
|
+
.c1udgdh2.has-arrow {
|
|
4337
|
+
padding-left: 10px;
|
|
4338
|
+
}
|
|
4339
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
4340
|
+
cursor: pointer;
|
|
4341
|
+
color: #00122e;
|
|
4342
|
+
}
|
|
4343
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
4344
|
+
color: #2d3a56;
|
|
4345
|
+
font-weight: 600;
|
|
4346
|
+
}
|
|
4347
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4348
|
+
transform: rotate(90deg);
|
|
4349
|
+
}
|
|
4350
|
+
.c1udgdh2 .sub-info {
|
|
4351
|
+
font-size: 12px;
|
|
4352
|
+
line-height: 18px;
|
|
4353
|
+
}
|
|
4354
|
+
.c1udgdh2 .title-wrapper {
|
|
4355
|
+
display: flex;
|
|
4356
|
+
align-items: center;
|
|
4357
|
+
user-select: none;
|
|
4358
|
+
flex-grow: 1;
|
|
4359
|
+
font-size: 12px;
|
|
4360
|
+
line-height: 18px;
|
|
4361
|
+
color: #2d3a56;
|
|
4362
|
+
font-weight: 700;
|
|
4363
|
+
}
|
|
4364
|
+
.c1udgdh2 .collapse-arrow {
|
|
4365
|
+
transition: all 50ms ease-out 0ms;
|
|
4366
|
+
margin-right: 2px;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.bab9xum {
|
|
4370
|
+
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);
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4373
|
+
.cav4gt6 {
|
|
4374
|
+
border-radius: 4px;
|
|
4375
|
+
background-color: white;
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4299
4378
|
.tc40oxa {
|
|
4300
4379
|
margin-bottom: 4px;
|
|
4301
4380
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -4449,9 +4528,6 @@ input.rrg1fkn.ant-input {
|
|
|
4449
4528
|
border-radius: 5px;
|
|
4450
4529
|
font-size: 12px;
|
|
4451
4530
|
}
|
|
4452
|
-
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input {
|
|
4453
|
-
padding: 2px 8px;
|
|
4454
|
-
}
|
|
4455
4531
|
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
4456
4532
|
font-size: inherit;
|
|
4457
4533
|
}
|
|
@@ -4523,6 +4599,34 @@ input.rrg1fkn.ant-input {
|
|
|
4523
4599
|
min-height: 0px;
|
|
4524
4600
|
}
|
|
4525
4601
|
|
|
4602
|
+
.w1xcixj5.outside-tag {
|
|
4603
|
+
padding-left: 0;
|
|
4604
|
+
}
|
|
4605
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
4606
|
+
border-radius: 4px 0 0 4px;
|
|
4607
|
+
padding-right: 4px;
|
|
4608
|
+
margin-right: 4px;
|
|
4609
|
+
}
|
|
4610
|
+
|
|
4611
|
+
.sut42l0 {
|
|
4612
|
+
padding: 0 8px;
|
|
4613
|
+
height: 18px;
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4616
|
+
.mfsz1jz {
|
|
4617
|
+
padding: 2px 8px;
|
|
4618
|
+
height: 24px;
|
|
4619
|
+
}
|
|
4620
|
+
|
|
4621
|
+
.tnd6h4m {
|
|
4622
|
+
margin: 0;
|
|
4623
|
+
}
|
|
4624
|
+
|
|
4625
|
+
.i1qw4clm {
|
|
4626
|
+
margin-right: 4px;
|
|
4627
|
+
height: 16px;
|
|
4628
|
+
}
|
|
4629
|
+
|
|
4526
4630
|
.at4ovwe .ant-input-number-handler-wrap {
|
|
4527
4631
|
display: var(--at4ovwe-0);
|
|
4528
4632
|
}
|
|
@@ -4569,25 +4673,6 @@ input.rrg1fkn.ant-input {
|
|
|
4569
4673
|
font-size: inherit;
|
|
4570
4674
|
}
|
|
4571
4675
|
|
|
4572
|
-
.feau332.ant-form-item {
|
|
4573
|
-
margin-bottom: 0;
|
|
4574
|
-
}
|
|
4575
|
-
.feau332 .ant-form-item-explain {
|
|
4576
|
-
display: none;
|
|
4577
|
-
min-height: 18px;
|
|
4578
|
-
margin-top: 5px;
|
|
4579
|
-
font-family: "Inter";
|
|
4580
|
-
font-weight: 400;
|
|
4581
|
-
font-size: 12px;
|
|
4582
|
-
line-height: 18px;
|
|
4583
|
-
}
|
|
4584
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4585
|
-
white-space: pre-wrap;
|
|
4586
|
-
}
|
|
4587
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4588
|
-
display: block;
|
|
4589
|
-
}
|
|
4590
|
-
|
|
4591
4676
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4592
4677
|
display: var(--a6dbbkm-0);
|
|
4593
4678
|
}
|
|
@@ -4617,4 +4702,23 @@ input.rrg1fkn.ant-input {
|
|
|
4617
4702
|
margin: 0;
|
|
4618
4703
|
height: auto;
|
|
4619
4704
|
font-size: inherit;
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
.feau332.ant-form-item {
|
|
4708
|
+
margin-bottom: 0;
|
|
4709
|
+
}
|
|
4710
|
+
.feau332 .ant-form-item-explain {
|
|
4711
|
+
display: none;
|
|
4712
|
+
min-height: 18px;
|
|
4713
|
+
margin-top: 5px;
|
|
4714
|
+
font-family: "Inter";
|
|
4715
|
+
font-weight: 400;
|
|
4716
|
+
font-size: 12px;
|
|
4717
|
+
line-height: 18px;
|
|
4718
|
+
}
|
|
4719
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4720
|
+
white-space: pre-wrap;
|
|
4721
|
+
}
|
|
4722
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4723
|
+
display: block;
|
|
4620
4724
|
}
|