@cloudtower/eagle 0.26.8 → 0.26.10
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 +726 -615
- package/dist/esm/index.js +1300 -1001
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +17 -4
- package/dist/style.css +1127 -1016
- package/dist/umd/index.js +1300 -1001
- 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/components.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 {
|
|
@@ -1549,75 +1562,6 @@ html body {
|
|
|
1549
1562
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1550
1563
|
}
|
|
1551
1564
|
}
|
|
1552
|
-
.obf05yr {
|
|
1553
|
-
display: inline-block;
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.hsms1n6 {
|
|
1557
|
-
visibility: hidden;
|
|
1558
|
-
position: absolute;
|
|
1559
|
-
}
|
|
1560
|
-
|
|
1561
|
-
.i1mrf09m {
|
|
1562
|
-
display: inline-flex;
|
|
1563
|
-
align-items: center;
|
|
1564
|
-
}
|
|
1565
|
-
.i1mrf09m .icon-inner {
|
|
1566
|
-
display: inline-flex;
|
|
1567
|
-
align-items: center;
|
|
1568
|
-
justify-content: center;
|
|
1569
|
-
}
|
|
1570
|
-
.i1mrf09m .icon-inner + span,
|
|
1571
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
1572
|
-
margin-left: 4px;
|
|
1573
|
-
}
|
|
1574
|
-
.i1mrf09m.is-rotate img,
|
|
1575
|
-
.i1mrf09m.is-rotate svg {
|
|
1576
|
-
animation: rotate 680ms linear infinite;
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
.iap75of {
|
|
1580
|
-
height: 18px;
|
|
1581
|
-
line-height: 18px;
|
|
1582
|
-
padding: 0 4px;
|
|
1583
|
-
border-radius: 4px;
|
|
1584
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1585
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1586
|
-
display: flex;
|
|
1587
|
-
align-items: center;
|
|
1588
|
-
white-space: nowrap;
|
|
1589
|
-
margin-right: 4px;
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
.bpq0js6 {
|
|
1593
|
-
padding: 4px 11px;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
.b15sn34c {
|
|
1597
|
-
white-space: nowrap;
|
|
1598
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1599
|
-
}
|
|
1600
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1601
|
-
--color: #0080ff;
|
|
1602
|
-
}
|
|
1603
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1604
|
-
--color: #0080ff;
|
|
1605
|
-
}
|
|
1606
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1607
|
-
margin-left: 1px;
|
|
1608
|
-
}
|
|
1609
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1610
|
-
border-top-right-radius: 0;
|
|
1611
|
-
border-bottom-right-radius: 0;
|
|
1612
|
-
}
|
|
1613
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1614
|
-
border-top-left-radius: 0;
|
|
1615
|
-
border-bottom-left-radius: 0;
|
|
1616
|
-
}
|
|
1617
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1618
|
-
border-radius: unset;
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
1565
|
.buj61ew.ant-btn {
|
|
1622
1566
|
height: 32px;
|
|
1623
1567
|
border-radius: 6px;
|
|
@@ -1881,70 +1825,187 @@ html body {
|
|
|
1881
1825
|
font-size: 18px;
|
|
1882
1826
|
}
|
|
1883
1827
|
|
|
1884
|
-
.
|
|
1828
|
+
.iap75of {
|
|
1829
|
+
height: 18px;
|
|
1830
|
+
line-height: 18px;
|
|
1831
|
+
padding: 0 4px;
|
|
1832
|
+
border-radius: 4px;
|
|
1833
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1834
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1885
1835
|
display: flex;
|
|
1886
|
-
|
|
1836
|
+
align-items: center;
|
|
1837
|
+
white-space: nowrap;
|
|
1838
|
+
margin-right: 4px;
|
|
1887
1839
|
}
|
|
1888
1840
|
|
|
1889
|
-
.
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
margin: 0 auto;
|
|
1893
|
-
height: 100%;
|
|
1841
|
+
.i1mrf09m {
|
|
1842
|
+
display: inline-flex;
|
|
1843
|
+
align-items: center;
|
|
1894
1844
|
}
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
margin: 0 auto;
|
|
1900
|
-
display: flex;
|
|
1845
|
+
.i1mrf09m .icon-inner {
|
|
1846
|
+
display: inline-flex;
|
|
1847
|
+
align-items: center;
|
|
1848
|
+
justify-content: center;
|
|
1901
1849
|
}
|
|
1902
|
-
.
|
|
1903
|
-
.
|
|
1904
|
-
|
|
1905
|
-
flex-shrink: 0;
|
|
1906
|
-
flex-basis: 21%;
|
|
1850
|
+
.i1mrf09m .icon-inner + span,
|
|
1851
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
1852
|
+
margin-left: 4px;
|
|
1907
1853
|
}
|
|
1908
|
-
.
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
padding-right: 44px;
|
|
1854
|
+
.i1mrf09m.is-rotate img,
|
|
1855
|
+
.i1mrf09m.is-rotate svg {
|
|
1856
|
+
animation: rotate 680ms linear infinite;
|
|
1912
1857
|
}
|
|
1913
|
-
|
|
1914
|
-
|
|
1858
|
+
|
|
1859
|
+
.bpq0js6 {
|
|
1860
|
+
padding: 4px 11px;
|
|
1915
1861
|
}
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
flex-basis: 58%;
|
|
1862
|
+
|
|
1863
|
+
.b15sn34c {
|
|
1864
|
+
white-space: nowrap;
|
|
1865
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1921
1866
|
}
|
|
1922
|
-
.
|
|
1923
|
-
|
|
1867
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1868
|
+
--color: #0080ff;
|
|
1924
1869
|
}
|
|
1925
|
-
.
|
|
1926
|
-
|
|
1870
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1871
|
+
--color: #0080ff;
|
|
1927
1872
|
}
|
|
1928
|
-
.
|
|
1929
|
-
|
|
1873
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1874
|
+
margin-left: 1px;
|
|
1930
1875
|
}
|
|
1931
|
-
.
|
|
1932
|
-
|
|
1876
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1877
|
+
border-top-right-radius: 0;
|
|
1878
|
+
border-bottom-right-radius: 0;
|
|
1933
1879
|
}
|
|
1934
|
-
.
|
|
1935
|
-
|
|
1936
|
-
|
|
1880
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1881
|
+
border-top-left-radius: 0;
|
|
1882
|
+
border-bottom-left-radius: 0;
|
|
1937
1883
|
}
|
|
1938
|
-
.
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1884
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1885
|
+
border-radius: unset;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.p12gwtiw {
|
|
1942
1889
|
display: flex;
|
|
1890
|
+
justify-content: space-between;
|
|
1943
1891
|
align-items: center;
|
|
1892
|
+
padding: 10px 0;
|
|
1893
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1894
|
+
font-size: 12px;
|
|
1895
|
+
line-height: 24px;
|
|
1944
1896
|
}
|
|
1945
|
-
.
|
|
1946
|
-
|
|
1947
|
-
|
|
1897
|
+
.p12gwtiw .pagination-left {
|
|
1898
|
+
padding: 2px 8px;
|
|
1899
|
+
}
|
|
1900
|
+
.p12gwtiw .dropdown-trigger {
|
|
1901
|
+
display: flex;
|
|
1902
|
+
align-items: center;
|
|
1903
|
+
border-radius: 6px;
|
|
1904
|
+
cursor: pointer;
|
|
1905
|
+
transition: all 0.3s ease;
|
|
1906
|
+
}
|
|
1907
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
1908
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1909
|
+
color: #0080ff;
|
|
1910
|
+
}
|
|
1911
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
1912
|
+
margin-left: 4px;
|
|
1913
|
+
}
|
|
1914
|
+
.p12gwtiw .pagination-right {
|
|
1915
|
+
display: flex;
|
|
1916
|
+
align-items: center;
|
|
1917
|
+
color: #0080ff;
|
|
1918
|
+
font-weight: bold;
|
|
1919
|
+
}
|
|
1920
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
1921
|
+
margin-left: 4px;
|
|
1922
|
+
}
|
|
1923
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
1924
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
1925
|
+
padding: 0 8px;
|
|
1926
|
+
}
|
|
1927
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
1928
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
1929
|
+
color: #0080ff;
|
|
1930
|
+
}
|
|
1931
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
1932
|
+
transform: rotate(180deg);
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
1936
|
+
max-height: calc(100vh - 128px);
|
|
1937
|
+
overflow-y: auto;
|
|
1938
|
+
}
|
|
1939
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1940
|
+
padding: 4px 20px;
|
|
1941
|
+
font-size: 12px;
|
|
1942
|
+
line-height: 18px;
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
.cz04yix {
|
|
1946
|
+
display: flex;
|
|
1947
|
+
flex-direction: column;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.m1if5j39 {
|
|
1951
|
+
max-width: 1120px;
|
|
1952
|
+
width: 100%;
|
|
1953
|
+
margin: 0 auto;
|
|
1954
|
+
height: 100%;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.w1vvwdlp {
|
|
1958
|
+
max-width: 1120px;
|
|
1959
|
+
width: 100%;
|
|
1960
|
+
margin: 0 auto;
|
|
1961
|
+
display: flex;
|
|
1962
|
+
}
|
|
1963
|
+
.w1vvwdlp .left,
|
|
1964
|
+
.w1vvwdlp .right {
|
|
1965
|
+
flex-grow: 0;
|
|
1966
|
+
flex-shrink: 0;
|
|
1967
|
+
flex-basis: 21%;
|
|
1968
|
+
}
|
|
1969
|
+
.w1vvwdlp .left {
|
|
1970
|
+
display: flex;
|
|
1971
|
+
justify-content: flex-end;
|
|
1972
|
+
padding-right: 44px;
|
|
1973
|
+
}
|
|
1974
|
+
.w1vvwdlp .right {
|
|
1975
|
+
padding-left: 44px;
|
|
1976
|
+
}
|
|
1977
|
+
.w1vvwdlp .middle {
|
|
1978
|
+
margin-bottom: 40px;
|
|
1979
|
+
flex-grow: 0;
|
|
1980
|
+
flex-shrink: 0;
|
|
1981
|
+
flex-basis: 58%;
|
|
1982
|
+
}
|
|
1983
|
+
.w1vvwdlp .middle .form-base-field {
|
|
1984
|
+
width: 100%;
|
|
1985
|
+
}
|
|
1986
|
+
.w1vvwdlp .middle .form-base-field .form-base-field {
|
|
1987
|
+
width: auto;
|
|
1988
|
+
}
|
|
1989
|
+
.w1vvwdlp .ant-steps-vertical .ant-steps-item {
|
|
1990
|
+
flex: initial;
|
|
1991
|
+
}
|
|
1992
|
+
.w1vvwdlp .ant-steps-item + .ant-steps-item {
|
|
1993
|
+
margin-top: 4px;
|
|
1994
|
+
}
|
|
1995
|
+
.w1vvwdlp .ant-steps-item-icon,
|
|
1996
|
+
.w1vvwdlp .ant-steps-item-tail {
|
|
1997
|
+
display: none !important;
|
|
1998
|
+
}
|
|
1999
|
+
.w1vvwdlp .ant-steps-item-container {
|
|
2000
|
+
padding: 0 15px;
|
|
2001
|
+
border-radius: 4px;
|
|
2002
|
+
height: 32px;
|
|
2003
|
+
display: flex;
|
|
2004
|
+
align-items: center;
|
|
2005
|
+
}
|
|
2006
|
+
.w1vvwdlp .ant-steps-item-container .ant-steps-item-content {
|
|
2007
|
+
min-height: auto;
|
|
2008
|
+
white-space: nowrap;
|
|
1948
2009
|
}
|
|
1949
2010
|
.w1vvwdlp .ant-steps-item-description {
|
|
1950
2011
|
padding-bottom: 0px;
|
|
@@ -2546,6 +2607,144 @@ input.rrg1fkn.ant-input {
|
|
|
2546
2607
|
border-bottom-left-radius: 0;
|
|
2547
2608
|
}
|
|
2548
2609
|
|
|
2610
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2611
|
+
flex-direction: row;
|
|
2612
|
+
justify-content: stretch;
|
|
2613
|
+
}
|
|
2614
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2615
|
+
padding: 0;
|
|
2616
|
+
margin-right: 4px;
|
|
2617
|
+
flex: 1;
|
|
2618
|
+
overflow: visible;
|
|
2619
|
+
}
|
|
2620
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2621
|
+
display: none;
|
|
2622
|
+
}
|
|
2623
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2624
|
+
width: 100%;
|
|
2625
|
+
min-height: unset;
|
|
2626
|
+
}
|
|
2627
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2628
|
+
height: 26px;
|
|
2629
|
+
line-height: 26px;
|
|
2630
|
+
width: 100%;
|
|
2631
|
+
text-align: center;
|
|
2632
|
+
padding: 0;
|
|
2633
|
+
font-size: 12px;
|
|
2634
|
+
font-weight: normal;
|
|
2635
|
+
}
|
|
2636
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2637
|
+
margin-right: 10px;
|
|
2638
|
+
}
|
|
2639
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2640
|
+
display: none;
|
|
2641
|
+
}
|
|
2642
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2643
|
+
border-radius: 4px 0 0 4px;
|
|
2644
|
+
}
|
|
2645
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2646
|
+
margin-right: 0;
|
|
2647
|
+
}
|
|
2648
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2649
|
+
border-radius: 0 4px 4px 0;
|
|
2650
|
+
}
|
|
2651
|
+
.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 {
|
|
2652
|
+
content: "";
|
|
2653
|
+
width: 0;
|
|
2654
|
+
height: 0;
|
|
2655
|
+
border: 13px solid transparent;
|
|
2656
|
+
position: absolute;
|
|
2657
|
+
top: 0;
|
|
2658
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2659
|
+
right: -21px;
|
|
2660
|
+
z-index: 2;
|
|
2661
|
+
}
|
|
2662
|
+
.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 {
|
|
2663
|
+
content: "";
|
|
2664
|
+
width: 0;
|
|
2665
|
+
height: 0;
|
|
2666
|
+
border: 13px solid transparent;
|
|
2667
|
+
position: absolute;
|
|
2668
|
+
top: 0;
|
|
2669
|
+
border-left: 8px solid #fff;
|
|
2670
|
+
left: 0;
|
|
2671
|
+
}
|
|
2672
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2673
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2674
|
+
}
|
|
2675
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2676
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2677
|
+
}
|
|
2678
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2679
|
+
color: #005ed1;
|
|
2680
|
+
}
|
|
2681
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2682
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2683
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2684
|
+
}
|
|
2685
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2686
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2687
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2688
|
+
}
|
|
2689
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2690
|
+
padding: 0;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
.s34f1qb.ant-switch {
|
|
2694
|
+
min-width: 40px;
|
|
2695
|
+
height: 24px;
|
|
2696
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2697
|
+
overflow: hidden;
|
|
2698
|
+
}
|
|
2699
|
+
.s34f1qb.ant-switch:focus {
|
|
2700
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2701
|
+
}
|
|
2702
|
+
.s34f1qb.ant-switch-small {
|
|
2703
|
+
min-width: 26px;
|
|
2704
|
+
height: 16px;
|
|
2705
|
+
}
|
|
2706
|
+
.s34f1qb.ant-switch-large {
|
|
2707
|
+
min-width: 52px;
|
|
2708
|
+
height: 32px;
|
|
2709
|
+
}
|
|
2710
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
2711
|
+
height: 20px;
|
|
2712
|
+
width: 20px;
|
|
2713
|
+
}
|
|
2714
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
2715
|
+
border-radius: 10px;
|
|
2716
|
+
transition-delay: 120ms;
|
|
2717
|
+
}
|
|
2718
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2719
|
+
height: 14px;
|
|
2720
|
+
width: 14px;
|
|
2721
|
+
top: 1px;
|
|
2722
|
+
left: 1px;
|
|
2723
|
+
}
|
|
2724
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2725
|
+
height: 28px;
|
|
2726
|
+
width: 28px;
|
|
2727
|
+
}
|
|
2728
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2729
|
+
border-radius: 14px;
|
|
2730
|
+
}
|
|
2731
|
+
.s34f1qb.ant-switch-checked {
|
|
2732
|
+
background-color: #00ba5d;
|
|
2733
|
+
}
|
|
2734
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2735
|
+
left: calc(100% - 20px - 2px);
|
|
2736
|
+
}
|
|
2737
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2738
|
+
left: calc(100% - 14px - 1px);
|
|
2739
|
+
}
|
|
2740
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2741
|
+
left: calc(100% - 28px - 2px);
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
.c1to9vb9 {
|
|
2745
|
+
margin-left: 5px;
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2549
2748
|
.rxbeqvl.ant-radio-wrapper {
|
|
2550
2749
|
display: inline-flex;
|
|
2551
2750
|
align-items: baseline;
|
|
@@ -2625,6 +2824,11 @@ input.rrg1fkn.ant-input {
|
|
|
2625
2824
|
.r1f0aqcc.ant-radio-button-wrapper > span + span {
|
|
2626
2825
|
white-space: nowrap;
|
|
2627
2826
|
}
|
|
2827
|
+
.ant-radio-group-small .r1f0aqcc.ant-radio-button-wrapper {
|
|
2828
|
+
height: 22px;
|
|
2829
|
+
padding: 0 7px;
|
|
2830
|
+
line-height: 20px;
|
|
2831
|
+
}
|
|
2628
2832
|
.r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
|
|
2629
2833
|
background: #ccd4e3;
|
|
2630
2834
|
}
|
|
@@ -2687,199 +2891,13 @@ input.rrg1fkn.ant-input {
|
|
|
2687
2891
|
width: 36px;
|
|
2688
2892
|
}
|
|
2689
2893
|
|
|
2690
|
-
.
|
|
2691
|
-
|
|
2692
|
-
justify-content: stretch;
|
|
2693
|
-
}
|
|
2694
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2695
|
-
padding: 0;
|
|
2696
|
-
margin-right: 4px;
|
|
2697
|
-
flex: 1;
|
|
2698
|
-
overflow: visible;
|
|
2699
|
-
}
|
|
2700
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2701
|
-
display: none;
|
|
2702
|
-
}
|
|
2703
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2704
|
-
width: 100%;
|
|
2705
|
-
min-height: unset;
|
|
2706
|
-
}
|
|
2707
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2708
|
-
height: 26px;
|
|
2709
|
-
line-height: 26px;
|
|
2710
|
-
width: 100%;
|
|
2711
|
-
text-align: center;
|
|
2712
|
-
padding: 0;
|
|
2713
|
-
font-size: 12px;
|
|
2714
|
-
font-weight: normal;
|
|
2715
|
-
}
|
|
2716
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2717
|
-
margin-right: 10px;
|
|
2718
|
-
}
|
|
2719
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2720
|
-
display: none;
|
|
2721
|
-
}
|
|
2722
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2723
|
-
border-radius: 4px 0 0 4px;
|
|
2724
|
-
}
|
|
2725
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2726
|
-
margin-right: 0;
|
|
2727
|
-
}
|
|
2728
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2729
|
-
border-radius: 0 4px 4px 0;
|
|
2730
|
-
}
|
|
2731
|
-
.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 {
|
|
2732
|
-
content: "";
|
|
2733
|
-
width: 0;
|
|
2734
|
-
height: 0;
|
|
2735
|
-
border: 13px solid transparent;
|
|
2736
|
-
position: absolute;
|
|
2737
|
-
top: 0;
|
|
2738
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2739
|
-
right: -21px;
|
|
2740
|
-
z-index: 2;
|
|
2741
|
-
}
|
|
2742
|
-
.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 {
|
|
2743
|
-
content: "";
|
|
2744
|
-
width: 0;
|
|
2745
|
-
height: 0;
|
|
2746
|
-
border: 13px solid transparent;
|
|
2747
|
-
position: absolute;
|
|
2748
|
-
top: 0;
|
|
2749
|
-
border-left: 8px solid #fff;
|
|
2750
|
-
left: 0;
|
|
2751
|
-
}
|
|
2752
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2753
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
2754
|
-
}
|
|
2755
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2756
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2757
|
-
}
|
|
2758
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2759
|
-
color: #005ed1;
|
|
2760
|
-
}
|
|
2761
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2762
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2763
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
2764
|
-
}
|
|
2765
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2766
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2767
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2768
|
-
}
|
|
2769
|
-
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2770
|
-
padding: 0;
|
|
2894
|
+
.obf05yr {
|
|
2895
|
+
display: inline-block;
|
|
2771
2896
|
}
|
|
2772
2897
|
|
|
2773
|
-
.
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
align-items: center;
|
|
2777
|
-
padding: 10px 0;
|
|
2778
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2779
|
-
font-size: 12px;
|
|
2780
|
-
line-height: 24px;
|
|
2781
|
-
}
|
|
2782
|
-
.p12gwtiw .pagination-left {
|
|
2783
|
-
padding: 2px 8px;
|
|
2784
|
-
}
|
|
2785
|
-
.p12gwtiw .dropdown-trigger {
|
|
2786
|
-
display: flex;
|
|
2787
|
-
align-items: center;
|
|
2788
|
-
border-radius: 6px;
|
|
2789
|
-
cursor: pointer;
|
|
2790
|
-
transition: all 0.3s ease;
|
|
2791
|
-
}
|
|
2792
|
-
.p12gwtiw .dropdown-trigger:hover {
|
|
2793
|
-
background: rgba(211, 218, 235, 0.6);
|
|
2794
|
-
color: #0080ff;
|
|
2795
|
-
}
|
|
2796
|
-
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
2797
|
-
margin-left: 4px;
|
|
2798
|
-
}
|
|
2799
|
-
.p12gwtiw .pagination-right {
|
|
2800
|
-
display: flex;
|
|
2801
|
-
align-items: center;
|
|
2802
|
-
color: #0080ff;
|
|
2803
|
-
font-weight: bold;
|
|
2804
|
-
}
|
|
2805
|
-
.p12gwtiw .pagination-right .icon-inner {
|
|
2806
|
-
margin-left: 4px;
|
|
2807
|
-
}
|
|
2808
|
-
.p12gwtiw .pagination-right .prev-btn,
|
|
2809
|
-
.p12gwtiw .pagination-right .next-btn {
|
|
2810
|
-
padding: 0 8px;
|
|
2811
|
-
}
|
|
2812
|
-
.p12gwtiw .pagination-right .prev-btn > span,
|
|
2813
|
-
.p12gwtiw .pagination-right .next-btn > span {
|
|
2814
|
-
color: #0080ff;
|
|
2815
|
-
}
|
|
2816
|
-
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
2817
|
-
transform: rotate(180deg);
|
|
2818
|
-
}
|
|
2819
|
-
|
|
2820
|
-
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
2821
|
-
max-height: calc(100vh - 128px);
|
|
2822
|
-
overflow-y: auto;
|
|
2823
|
-
}
|
|
2824
|
-
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
2825
|
-
padding: 4px 20px;
|
|
2826
|
-
font-size: 12px;
|
|
2827
|
-
line-height: 18px;
|
|
2828
|
-
}
|
|
2829
|
-
|
|
2830
|
-
.s34f1qb.ant-switch {
|
|
2831
|
-
min-width: 40px;
|
|
2832
|
-
height: 24px;
|
|
2833
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2834
|
-
overflow: hidden;
|
|
2835
|
-
}
|
|
2836
|
-
.s34f1qb.ant-switch:focus {
|
|
2837
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2838
|
-
}
|
|
2839
|
-
.s34f1qb.ant-switch-small {
|
|
2840
|
-
min-width: 26px;
|
|
2841
|
-
height: 16px;
|
|
2842
|
-
}
|
|
2843
|
-
.s34f1qb.ant-switch-large {
|
|
2844
|
-
min-width: 52px;
|
|
2845
|
-
height: 32px;
|
|
2846
|
-
}
|
|
2847
|
-
.s34f1qb.ant-switch .ant-switch-handle {
|
|
2848
|
-
height: 20px;
|
|
2849
|
-
width: 20px;
|
|
2850
|
-
}
|
|
2851
|
-
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
2852
|
-
border-radius: 10px;
|
|
2853
|
-
transition-delay: 120ms;
|
|
2854
|
-
}
|
|
2855
|
-
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2856
|
-
height: 14px;
|
|
2857
|
-
width: 14px;
|
|
2858
|
-
top: 1px;
|
|
2859
|
-
left: 1px;
|
|
2860
|
-
}
|
|
2861
|
-
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2862
|
-
height: 28px;
|
|
2863
|
-
width: 28px;
|
|
2864
|
-
}
|
|
2865
|
-
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2866
|
-
border-radius: 14px;
|
|
2867
|
-
}
|
|
2868
|
-
.s34f1qb.ant-switch-checked {
|
|
2869
|
-
background-color: #00ba5d;
|
|
2870
|
-
}
|
|
2871
|
-
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2872
|
-
left: calc(100% - 20px - 2px);
|
|
2873
|
-
}
|
|
2874
|
-
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2875
|
-
left: calc(100% - 14px - 1px);
|
|
2876
|
-
}
|
|
2877
|
-
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2878
|
-
left: calc(100% - 28px - 2px);
|
|
2879
|
-
}
|
|
2880
|
-
|
|
2881
|
-
.c1to9vb9 {
|
|
2882
|
-
margin-left: 5px;
|
|
2898
|
+
.hsms1n6 {
|
|
2899
|
+
visibility: hidden;
|
|
2900
|
+
position: absolute;
|
|
2883
2901
|
}
|
|
2884
2902
|
|
|
2885
2903
|
.t1upn1sz {
|
|
@@ -3245,6 +3263,87 @@ input.rrg1fkn.ant-input {
|
|
|
3245
3263
|
background: #fff;
|
|
3246
3264
|
}
|
|
3247
3265
|
|
|
3266
|
+
.s1fc623g {
|
|
3267
|
+
width: 430px !important;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
.da3mx0o .ant-select-item-group {
|
|
3271
|
+
padding: 8px 16px;
|
|
3272
|
+
line-height: 18px;
|
|
3273
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3274
|
+
height: 34px;
|
|
3275
|
+
min-height: 34px;
|
|
3276
|
+
box-sizing: border-box;
|
|
3277
|
+
margin-top: 8px;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.onr9gzt {
|
|
3281
|
+
display: flex;
|
|
3282
|
+
flex-direction: column;
|
|
3283
|
+
margin: 1px 8px;
|
|
3284
|
+
padding: 8px;
|
|
3285
|
+
border-radius: 4px;
|
|
3286
|
+
}
|
|
3287
|
+
.onr9gzt .selected-icon {
|
|
3288
|
+
display: none;
|
|
3289
|
+
}
|
|
3290
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
3291
|
+
padding-left: 8px;
|
|
3292
|
+
}
|
|
3293
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
3294
|
+
background-color: white;
|
|
3295
|
+
}
|
|
3296
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3297
|
+
color: #0080ff;
|
|
3298
|
+
}
|
|
3299
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3300
|
+
display: block;
|
|
3301
|
+
}
|
|
3302
|
+
.onr9gzt.ant-select-item-option-active {
|
|
3303
|
+
background: rgba(0, 136, 255, 0.16);
|
|
3304
|
+
}
|
|
3305
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3306
|
+
color: #0080ff;
|
|
3307
|
+
}
|
|
3308
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
3309
|
+
background: rgba(0, 136, 255, 0.1);
|
|
3310
|
+
color: #0080ff;
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
.oiy0apc {
|
|
3314
|
+
display: flex;
|
|
3315
|
+
justify-content: space-between;
|
|
3316
|
+
height: 20px;
|
|
3317
|
+
line-height: 20px;
|
|
3318
|
+
}
|
|
3319
|
+
.oiy0apc .timezone-title {
|
|
3320
|
+
color: #2d3a56;
|
|
3321
|
+
overflow: hidden;
|
|
3322
|
+
text-overflow: ellipsis;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
.of4y382 {
|
|
3326
|
+
display: flex;
|
|
3327
|
+
justify-content: space-between;
|
|
3328
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3329
|
+
height: 18px;
|
|
3330
|
+
line-height: 18px;
|
|
3331
|
+
margin-top: 2px;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.t19903l9 {
|
|
3335
|
+
border: none;
|
|
3336
|
+
margin-right: 0;
|
|
3337
|
+
background: rgba(225, 230, 241, 0.6);
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
.ohwbvxu {
|
|
3341
|
+
pointer-events: none;
|
|
3342
|
+
height: 32px;
|
|
3343
|
+
width: 100%;
|
|
3344
|
+
opacity: 0;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3248
3347
|
.i1e4sgug {
|
|
3249
3348
|
display: inline-block;
|
|
3250
3349
|
}
|
|
@@ -3724,85 +3823,17 @@ input.rrg1fkn.ant-input {
|
|
|
3724
3823
|
line-height: 12px;
|
|
3725
3824
|
}
|
|
3726
3825
|
|
|
3727
|
-
.
|
|
3728
|
-
width: 430px !important;
|
|
3729
|
-
}
|
|
3730
|
-
|
|
3731
|
-
.da3mx0o .ant-select-item-group {
|
|
3732
|
-
padding: 8px 16px;
|
|
3733
|
-
line-height: 18px;
|
|
3734
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3735
|
-
height: 34px;
|
|
3736
|
-
min-height: 34px;
|
|
3737
|
-
box-sizing: border-box;
|
|
3738
|
-
margin-top: 8px;
|
|
3739
|
-
}
|
|
3740
|
-
|
|
3741
|
-
.onr9gzt {
|
|
3742
|
-
display: flex;
|
|
3743
|
-
flex-direction: column;
|
|
3744
|
-
margin: 1px 8px;
|
|
3745
|
-
padding: 8px;
|
|
3746
|
-
border-radius: 4px;
|
|
3747
|
-
}
|
|
3748
|
-
.onr9gzt .selected-icon {
|
|
3749
|
-
display: none;
|
|
3750
|
-
}
|
|
3751
|
-
.onr9gzt.ant-select-item-option-grouped {
|
|
3752
|
-
padding-left: 8px;
|
|
3753
|
-
}
|
|
3754
|
-
.onr9gzt.ant-select-item-option-selected {
|
|
3755
|
-
background-color: white;
|
|
3756
|
-
}
|
|
3757
|
-
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3758
|
-
color: #0080ff;
|
|
3759
|
-
}
|
|
3760
|
-
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3761
|
-
display: block;
|
|
3762
|
-
}
|
|
3763
|
-
.onr9gzt.ant-select-item-option-active {
|
|
3764
|
-
background: rgba(0, 136, 255, 0.16);
|
|
3765
|
-
}
|
|
3766
|
-
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3767
|
-
color: #0080ff;
|
|
3768
|
-
}
|
|
3769
|
-
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
3770
|
-
background: rgba(0, 136, 255, 0.1);
|
|
3771
|
-
color: #0080ff;
|
|
3772
|
-
}
|
|
3773
|
-
|
|
3774
|
-
.oiy0apc {
|
|
3826
|
+
.m15dvk92 {
|
|
3775
3827
|
display: flex;
|
|
3776
|
-
justify-content: space-between;
|
|
3777
|
-
|
|
3778
|
-
line-height: 20px;
|
|
3779
|
-
}
|
|
3780
|
-
.oiy0apc .timezone-title {
|
|
3781
|
-
color: #2d3a56;
|
|
3782
|
-
overflow: hidden;
|
|
3783
|
-
text-overflow: ellipsis;
|
|
3784
|
-
}
|
|
3785
|
-
|
|
3786
|
-
.of4y382 {
|
|
3787
|
-
display: flex;
|
|
3788
|
-
justify-content: space-between;
|
|
3789
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3790
|
-
height: 18px;
|
|
3791
|
-
line-height: 18px;
|
|
3792
|
-
margin-top: 2px;
|
|
3828
|
+
justify-content: space-between;
|
|
3829
|
+
width: 100%;
|
|
3793
3830
|
}
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
border: none;
|
|
3797
|
-
margin-right: 0;
|
|
3798
|
-
background: rgba(225, 230, 241, 0.6);
|
|
3831
|
+
.m15dvk92 .action {
|
|
3832
|
+
margin-left: 16px;
|
|
3799
3833
|
}
|
|
3800
3834
|
|
|
3801
|
-
.
|
|
3802
|
-
pointer-events: none;
|
|
3803
|
-
height: 32px;
|
|
3835
|
+
.aql8iqz .ant-alert-message {
|
|
3804
3836
|
width: 100%;
|
|
3805
|
-
opacity: 0;
|
|
3806
3837
|
}
|
|
3807
3838
|
|
|
3808
3839
|
.c198s9j3 {
|
|
@@ -3881,12 +3912,14 @@ input.rrg1fkn.ant-input {
|
|
|
3881
3912
|
}
|
|
3882
3913
|
.shq1k1g.ant-select.ant-select-single {
|
|
3883
3914
|
width: 100%;
|
|
3884
|
-
height: 30px;
|
|
3885
3915
|
color: #2d3a56;
|
|
3886
3916
|
border-color: rgba(211, 218, 235, 0.6);
|
|
3887
3917
|
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
3888
3918
|
font-size: 13px;
|
|
3889
3919
|
}
|
|
3920
|
+
.shq1k1g.ant-select.ant-select-single[data-size=middle] {
|
|
3921
|
+
height: 30px;
|
|
3922
|
+
}
|
|
3890
3923
|
.shq1k1g.ant-select.ant-select-single.ant-select-lg {
|
|
3891
3924
|
height: 38px;
|
|
3892
3925
|
font-size: 13px;
|
|
@@ -3945,6 +3978,79 @@ input.rrg1fkn.ant-input {
|
|
|
3945
3978
|
display: flex;
|
|
3946
3979
|
}
|
|
3947
3980
|
|
|
3981
|
+
.s1uupxds {
|
|
3982
|
+
padding: 0 8px;
|
|
3983
|
+
border-radius: 4px;
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.m10sqwut {
|
|
3987
|
+
padding: 2px 8px;
|
|
3988
|
+
border-radius: 3px;
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
.l1d492wb {
|
|
3992
|
+
padding: 3px 8px;
|
|
3993
|
+
border-radius: 2px;
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
.t1lzavmu.ant-tag:hover {
|
|
3997
|
+
opacity: unset;
|
|
3998
|
+
}
|
|
3999
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
4000
|
+
margin: 0;
|
|
4001
|
+
display: inline-flex;
|
|
4002
|
+
align-items: center;
|
|
4003
|
+
border: none;
|
|
4004
|
+
}
|
|
4005
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
4006
|
+
width: 16px;
|
|
4007
|
+
height: 16px;
|
|
4008
|
+
color: inherit;
|
|
4009
|
+
margin-left: 4px;
|
|
4010
|
+
opacity: 0.6;
|
|
4011
|
+
}
|
|
4012
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4013
|
+
opacity: 1;
|
|
4014
|
+
}
|
|
4015
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4016
|
+
color: #0080ff;
|
|
4017
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4018
|
+
}
|
|
4019
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4020
|
+
color: #f0483e;
|
|
4021
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
4022
|
+
}
|
|
4023
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4024
|
+
color: #fea008;
|
|
4025
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
4026
|
+
}
|
|
4027
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4028
|
+
color: #00ba5d;
|
|
4029
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
4030
|
+
}
|
|
4031
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4032
|
+
color: #1d326c;
|
|
4033
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4034
|
+
}
|
|
4035
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4036
|
+
color: #fff;
|
|
4037
|
+
}
|
|
4038
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4039
|
+
background-color: #f0483e;
|
|
4040
|
+
}
|
|
4041
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4042
|
+
background-color: #fea008;
|
|
4043
|
+
}
|
|
4044
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4045
|
+
background-color: #00ba5d;
|
|
4046
|
+
}
|
|
4047
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4048
|
+
background-color: #0080ff;
|
|
4049
|
+
}
|
|
4050
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4051
|
+
background-color: #6b7d99;
|
|
4052
|
+
}
|
|
4053
|
+
|
|
3948
4054
|
.m1thnes4 {
|
|
3949
4055
|
color: rgba(44, 56, 82, 0.6);
|
|
3950
4056
|
text-align: center;
|
|
@@ -4106,79 +4212,6 @@ input.rrg1fkn.ant-input {
|
|
|
4106
4212
|
margin-left: 8px;
|
|
4107
4213
|
}
|
|
4108
4214
|
|
|
4109
|
-
.s1uupxds {
|
|
4110
|
-
padding: 0 8px;
|
|
4111
|
-
border-radius: 4px;
|
|
4112
|
-
}
|
|
4113
|
-
|
|
4114
|
-
.m10sqwut {
|
|
4115
|
-
padding: 2px 8px;
|
|
4116
|
-
border-radius: 3px;
|
|
4117
|
-
}
|
|
4118
|
-
|
|
4119
|
-
.l1d492wb {
|
|
4120
|
-
padding: 3px 8px;
|
|
4121
|
-
border-radius: 2px;
|
|
4122
|
-
}
|
|
4123
|
-
|
|
4124
|
-
.t1lzavmu.ant-tag:hover {
|
|
4125
|
-
opacity: unset;
|
|
4126
|
-
}
|
|
4127
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
4128
|
-
margin: 0;
|
|
4129
|
-
display: inline-flex;
|
|
4130
|
-
align-items: center;
|
|
4131
|
-
border: none;
|
|
4132
|
-
}
|
|
4133
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
4134
|
-
width: 16px;
|
|
4135
|
-
height: 16px;
|
|
4136
|
-
color: inherit;
|
|
4137
|
-
margin-left: 4px;
|
|
4138
|
-
opacity: 0.6;
|
|
4139
|
-
}
|
|
4140
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4141
|
-
opacity: 1;
|
|
4142
|
-
}
|
|
4143
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4144
|
-
color: #0080ff;
|
|
4145
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
4146
|
-
}
|
|
4147
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4148
|
-
color: #f0483e;
|
|
4149
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
4150
|
-
}
|
|
4151
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4152
|
-
color: #fea008;
|
|
4153
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
4154
|
-
}
|
|
4155
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4156
|
-
color: #00ba5d;
|
|
4157
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
4158
|
-
}
|
|
4159
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4160
|
-
color: #1d326c;
|
|
4161
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
4162
|
-
}
|
|
4163
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4164
|
-
color: #fff;
|
|
4165
|
-
}
|
|
4166
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4167
|
-
background-color: #f0483e;
|
|
4168
|
-
}
|
|
4169
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4170
|
-
background-color: #fea008;
|
|
4171
|
-
}
|
|
4172
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4173
|
-
background-color: #00ba5d;
|
|
4174
|
-
}
|
|
4175
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4176
|
-
background-color: #0080ff;
|
|
4177
|
-
}
|
|
4178
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4179
|
-
background-color: #6b7d99;
|
|
4180
|
-
}
|
|
4181
|
-
|
|
4182
4215
|
.t1gz6wqf {
|
|
4183
4216
|
height: 100%;
|
|
4184
4217
|
}
|
|
@@ -4209,6 +4242,59 @@ input.rrg1fkn.ant-input {
|
|
|
4209
4242
|
background: rgba(163, 180, 204, 0.18);
|
|
4210
4243
|
}
|
|
4211
4244
|
|
|
4245
|
+
.c1k4vanq {
|
|
4246
|
+
padding: 0 16px 14px 16px;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.c1udgdh2 {
|
|
4250
|
+
color: #2d3a56;
|
|
4251
|
+
padding: 12px 16px 10px 16px;
|
|
4252
|
+
display: flex;
|
|
4253
|
+
justify-content: space-between;
|
|
4254
|
+
align-items: center;
|
|
4255
|
+
}
|
|
4256
|
+
.c1udgdh2.has-arrow {
|
|
4257
|
+
padding-left: 10px;
|
|
4258
|
+
}
|
|
4259
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
4260
|
+
cursor: pointer;
|
|
4261
|
+
color: #00122e;
|
|
4262
|
+
}
|
|
4263
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
4264
|
+
color: #2d3a56;
|
|
4265
|
+
font-weight: 600;
|
|
4266
|
+
}
|
|
4267
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4268
|
+
transform: rotate(90deg);
|
|
4269
|
+
}
|
|
4270
|
+
.c1udgdh2 .sub-info {
|
|
4271
|
+
font-size: 12px;
|
|
4272
|
+
line-height: 18px;
|
|
4273
|
+
}
|
|
4274
|
+
.c1udgdh2 .title-wrapper {
|
|
4275
|
+
display: flex;
|
|
4276
|
+
align-items: center;
|
|
4277
|
+
user-select: none;
|
|
4278
|
+
flex-grow: 1;
|
|
4279
|
+
font-size: 12px;
|
|
4280
|
+
line-height: 18px;
|
|
4281
|
+
color: #2d3a56;
|
|
4282
|
+
font-weight: 700;
|
|
4283
|
+
}
|
|
4284
|
+
.c1udgdh2 .collapse-arrow {
|
|
4285
|
+
transition: all 50ms ease-out 0ms;
|
|
4286
|
+
margin-right: 2px;
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4289
|
+
.bab9xum {
|
|
4290
|
+
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);
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
.cav4gt6 {
|
|
4294
|
+
border-radius: 4px;
|
|
4295
|
+
background-color: white;
|
|
4296
|
+
}
|
|
4297
|
+
|
|
4212
4298
|
.f1p9ti6d {
|
|
4213
4299
|
width: 100%;
|
|
4214
4300
|
margin-bottom: 0 !important;
|
|
@@ -4393,9 +4479,6 @@ input.rrg1fkn.ant-input {
|
|
|
4393
4479
|
border-radius: 5px;
|
|
4394
4480
|
font-size: 12px;
|
|
4395
4481
|
}
|
|
4396
|
-
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input {
|
|
4397
|
-
padding: 2px 8px;
|
|
4398
|
-
}
|
|
4399
4482
|
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
4400
4483
|
font-size: inherit;
|
|
4401
4484
|
}
|
|
@@ -4482,6 +4565,53 @@ input.rrg1fkn.ant-input {
|
|
|
4482
4565
|
font-size: inherit;
|
|
4483
4566
|
}
|
|
4484
4567
|
|
|
4568
|
+
.w1xcixj5.outside-tag {
|
|
4569
|
+
padding-left: 0;
|
|
4570
|
+
}
|
|
4571
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
4572
|
+
border-radius: 4px 0 0 4px;
|
|
4573
|
+
padding-right: 4px;
|
|
4574
|
+
margin-right: 4px;
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
.sut42l0 {
|
|
4578
|
+
padding: 0 8px;
|
|
4579
|
+
height: 18px;
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
.mfsz1jz {
|
|
4583
|
+
padding: 2px 8px;
|
|
4584
|
+
height: 24px;
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
.tnd6h4m {
|
|
4588
|
+
margin: 0;
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4591
|
+
.i1qw4clm {
|
|
4592
|
+
margin-right: 4px;
|
|
4593
|
+
height: 16px;
|
|
4594
|
+
}
|
|
4595
|
+
|
|
4596
|
+
.feau332.ant-form-item {
|
|
4597
|
+
margin-bottom: 0;
|
|
4598
|
+
}
|
|
4599
|
+
.feau332 .ant-form-item-explain {
|
|
4600
|
+
display: none;
|
|
4601
|
+
min-height: 18px;
|
|
4602
|
+
margin-top: 5px;
|
|
4603
|
+
font-family: "Inter";
|
|
4604
|
+
font-weight: 400;
|
|
4605
|
+
font-size: 12px;
|
|
4606
|
+
line-height: 18px;
|
|
4607
|
+
}
|
|
4608
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4609
|
+
white-space: pre-wrap;
|
|
4610
|
+
}
|
|
4611
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4612
|
+
display: block;
|
|
4613
|
+
}
|
|
4614
|
+
|
|
4485
4615
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4486
4616
|
display: var(--a6dbbkm-0);
|
|
4487
4617
|
}
|
|
@@ -4511,23 +4641,4 @@ input.rrg1fkn.ant-input {
|
|
|
4511
4641
|
margin: 0;
|
|
4512
4642
|
height: auto;
|
|
4513
4643
|
font-size: inherit;
|
|
4514
|
-
}
|
|
4515
|
-
|
|
4516
|
-
.feau332.ant-form-item {
|
|
4517
|
-
margin-bottom: 0;
|
|
4518
|
-
}
|
|
4519
|
-
.feau332 .ant-form-item-explain {
|
|
4520
|
-
display: none;
|
|
4521
|
-
min-height: 18px;
|
|
4522
|
-
margin-top: 5px;
|
|
4523
|
-
font-family: "Inter";
|
|
4524
|
-
font-weight: 400;
|
|
4525
|
-
font-size: 12px;
|
|
4526
|
-
line-height: 18px;
|
|
4527
|
-
}
|
|
4528
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4529
|
-
white-space: pre-wrap;
|
|
4530
|
-
}
|
|
4531
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4532
|
-
display: block;
|
|
4533
4644
|
}
|