@cloudtower/eagle 0.35.1 → 0.35.2
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/cjs/UIKitProvider/index.js +5 -10
- package/dist/cjs/core/ConfigProvider/index.js +3 -1
- package/dist/cjs/core/Fields/FieldsTimePicker/index.js +4 -3
- package/dist/cjs/core/ImmersiveDialog/index.js +21 -14
- package/dist/cjs/core/{Modal → LegacyModal}/index.js +7 -3
- package/dist/cjs/core/LegacySelect/index.js +4 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.hooks.js +66 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.js +103 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.style.js +13 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.widget.js +379 -0
- package/dist/cjs/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/cjs/core/SmallDialog/SmallDialog.js +7 -5
- package/dist/cjs/core/Tab/Tab.js +113 -0
- package/dist/cjs/core/Tab/Tab.style.js +17 -0
- package/dist/cjs/core/Tab/Tab.type.js +9 -0
- package/dist/cjs/core/Tab/useTabAdaptiveLayout.js +73 -0
- package/dist/cjs/core/message/message.js +24 -1
- package/dist/cjs/coreX/KubeConfigModal/index.js +4 -4
- package/dist/cjs/hooks/useAntdPatchEnLocales.js +35 -0
- package/dist/cjs/hooks/useLegacyComponentWarning.js +16 -0
- package/dist/cjs/index.js +20 -16
- package/dist/cjs/legacy-antd.js +2 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1926 -1557
- package/dist/esm/UIKitProvider/index.js +5 -10
- package/dist/esm/core/ConfigProvider/index.js +3 -1
- package/dist/esm/core/Fields/FieldsTimePicker/index.js +2 -1
- package/dist/esm/core/ImmersiveDialog/index.js +21 -14
- package/dist/esm/core/{Modal → LegacyModal}/index.js +9 -5
- package/dist/esm/core/LegacySelect/index.js +4 -0
- package/dist/esm/core/LocalUpload/LocalUpload.hooks.js +63 -0
- package/dist/esm/core/LocalUpload/LocalUpload.js +97 -0
- package/dist/esm/core/LocalUpload/LocalUpload.style.js +10 -0
- package/dist/esm/core/LocalUpload/LocalUpload.widget.js +365 -0
- package/dist/esm/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/esm/core/SmallDialog/SmallDialog.js +6 -4
- package/dist/esm/core/Tab/Tab.js +107 -0
- package/dist/esm/core/Tab/Tab.style.js +12 -0
- package/dist/esm/core/Tab/Tab.type.js +7 -0
- package/dist/esm/core/Tab/useTabAdaptiveLayout.js +71 -0
- package/dist/esm/core/message/message.js +24 -1
- package/dist/esm/coreX/KubeConfigModal/index.js +5 -5
- package/dist/esm/hooks/useAntdPatchEnLocales.js +29 -0
- package/dist/esm/hooks/useLegacyComponentWarning.js +14 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/legacy-antd.js +4 -4
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +1968 -1541
- package/dist/src/core/ImmersiveDialog/type.d.ts +2 -2
- package/dist/src/core/{Modal/modal.type.d.ts → LegacyModal/LegacyModal.type.d.ts} +12 -1
- package/dist/src/core/LegacyModal/index.d.ts +16 -0
- package/dist/src/core/LocalUpload/LocalUpload.d.ts +15 -0
- package/dist/src/core/LocalUpload/LocalUpload.hooks.d.ts +32 -0
- package/dist/src/core/LocalUpload/LocalUpload.style.d.ts +3 -0
- package/dist/src/core/LocalUpload/LocalUpload.type.d.ts +175 -0
- package/dist/src/core/LocalUpload/LocalUpload.widget.d.ts +23 -0
- package/dist/src/core/LocalUpload/index.d.ts +2 -0
- package/dist/src/core/SmallDialog/SmallDialog.type.d.ts +2 -0
- package/dist/src/core/Tab/Tab.d.ts +3 -0
- package/dist/src/core/Tab/Tab.style.d.ts +5 -0
- package/dist/src/core/Tab/Tab.type.d.ts +42 -0
- package/dist/src/core/Tab/index.d.ts +1 -0
- package/dist/src/core/Tab/useTabAdaptiveLayout.d.ts +23 -0
- package/dist/src/core/index.d.ts +4 -2
- package/dist/src/core/message/message.d.ts +5 -0
- package/dist/src/hooks/useAntdPatchEnLocales.d.ts +431 -0
- package/dist/src/hooks/useLegacyComponentWarning.d.ts +2 -0
- package/dist/src/spec/base.d.ts +2 -2
- package/dist/stories/docs/core/ImmersiveDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/LegacyModal.stories.d.ts +23 -0
- package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
- package/dist/stories/docs/core/MediumDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/SmallDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/Tab.stories.d.ts +65 -0
- package/dist/stories/docs/core/WizardDialog.stories.d.ts +2 -1
- package/dist/stories/docs/core/message-group.stories.d.ts +1 -0
- package/dist/style.css +1926 -1557
- package/dist/variables.scss +3 -0
- package/package.json +4 -4
- package/dist/src/core/Modal/index.d.ts +0 -5
- package/dist/stories/docs/core/Modal.stories.d.ts +0 -13
package/dist/linaria.merged.scss
CHANGED
|
@@ -26,6 +26,89 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
.E_m74vjol {
|
|
30
|
+
display: flex;
|
|
31
|
+
justify-content: space-between;
|
|
32
|
+
width: 100%;
|
|
33
|
+
& .action {
|
|
34
|
+
margin-left: 16px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.E_a1o35uvh {
|
|
39
|
+
&.ant-alert-closable {
|
|
40
|
+
padding-right: 12px;
|
|
41
|
+
|
|
42
|
+
.ant-alert-close-icon {
|
|
43
|
+
height: fit-content;
|
|
44
|
+
margin-left: 16px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ant-alert-message {
|
|
49
|
+
flex: 1;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
.E_c1yyuluq {
|
|
55
|
+
border-radius: 8px;
|
|
56
|
+
.ant-card-body {
|
|
57
|
+
padding: 20px 24px 24px 24px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
.E_ccrbeuz {
|
|
63
|
+
.ant-collapse-item {
|
|
64
|
+
border: 0px;
|
|
65
|
+
background-color: $fills-light-white;
|
|
66
|
+
|
|
67
|
+
.ant-collapse-header {
|
|
68
|
+
padding-top: 0px;
|
|
69
|
+
padding-bottom: 0px;
|
|
70
|
+
padding-left: 0px !important;
|
|
71
|
+
padding-right: 24px;
|
|
72
|
+
.ant-collapse-arrow {
|
|
73
|
+
right: 0px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
.ant-collapse-content {
|
|
77
|
+
.ant-collapse-content-box {
|
|
78
|
+
padding: 0px;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.E_c1fljvag {
|
|
85
|
+
.ant-collapse-item {
|
|
86
|
+
.ant-collapse-header {
|
|
87
|
+
padding-right: 0px;
|
|
88
|
+
cursor: default;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
.E_d133fzv0 {
|
|
95
|
+
.ant-dropdown-menu-item-group {
|
|
96
|
+
.ant-dropdown-menu-item-group-title {
|
|
97
|
+
padding: 4px 8px 0 8px;
|
|
98
|
+
color: $text-light-secondary;
|
|
99
|
+
font-size: 12px;
|
|
100
|
+
}
|
|
101
|
+
.ant-dropdown-menu-item-group-list {
|
|
102
|
+
padding-bottom: 6px;
|
|
103
|
+
}
|
|
104
|
+
&:not(:first-child) {
|
|
105
|
+
padding-top: 4px;
|
|
106
|
+
border-top: 1px solid $strokes-light-trans-2;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
|
|
29
112
|
.E_berrcjl {
|
|
30
113
|
color: $text-terdiary-light;
|
|
31
114
|
margin-bottom: 4px;
|
|
@@ -45,27 +128,159 @@
|
|
|
45
128
|
}
|
|
46
129
|
|
|
47
130
|
|
|
48
|
-
.
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
width:
|
|
52
|
-
|
|
53
|
-
|
|
131
|
+
.E_d1bw7c5z {
|
|
132
|
+
position: relative;
|
|
133
|
+
max-width: 388px;
|
|
134
|
+
min-width: 285px;
|
|
135
|
+
.center {
|
|
136
|
+
position: absolute;
|
|
137
|
+
font-size: 12px;
|
|
138
|
+
width: 80px;
|
|
139
|
+
height: 100px;
|
|
140
|
+
top: 0;
|
|
141
|
+
left: 35px;
|
|
142
|
+
display: flex;
|
|
143
|
+
flex-direction: column;
|
|
144
|
+
justify-content: center;
|
|
145
|
+
align-items: center;
|
|
146
|
+
color: $text-light-primary;
|
|
147
|
+
|
|
148
|
+
.number {
|
|
149
|
+
font-size: 24px;
|
|
150
|
+
font-weight: 700;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.text {
|
|
154
|
+
padding: 0 5px;
|
|
155
|
+
font-size: 12px;
|
|
156
|
+
width: inherit;
|
|
157
|
+
text-align: center;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
.recharts-wrapper {
|
|
161
|
+
display: flex;
|
|
162
|
+
.recharts-legend-wrapper {
|
|
163
|
+
position: relative !important;
|
|
164
|
+
min-width: calc(
|
|
165
|
+
100% - var(--d1bw7c5z-0)
|
|
166
|
+
) !important;
|
|
167
|
+
left: 0 !important;
|
|
168
|
+
bottom: 0 !important;
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
.recharts-default-legend {
|
|
172
|
+
width: 100%;
|
|
173
|
+
}
|
|
174
|
+
li {
|
|
175
|
+
width: 100%;
|
|
176
|
+
margin-right: 0 !important;
|
|
177
|
+
line-height: 18px;
|
|
178
|
+
& > svg {
|
|
179
|
+
border-radius: 2px;
|
|
180
|
+
}
|
|
181
|
+
& > .recharts-legend-item-text {
|
|
182
|
+
min-width: 75px;
|
|
183
|
+
max-width: 198px;
|
|
184
|
+
width: calc(100% - 20px);
|
|
185
|
+
margin-left: 2px;
|
|
186
|
+
color: $text-light-primary !important;
|
|
187
|
+
display: inline-flex;
|
|
188
|
+
justify-content: space-between;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
.tooltip-text {
|
|
194
|
+
maxwidth: calc(100% - 12px);
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
border-bottom: 1px dashed $strokes-light-trans-4;
|
|
197
|
+
overflow: hidden;
|
|
198
|
+
text-overflow: ellipsis;
|
|
199
|
+
white-space: nowrap;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.value {
|
|
203
|
+
color: $text-neutral-secondary;
|
|
54
204
|
}
|
|
55
205
|
}
|
|
56
206
|
|
|
57
|
-
.
|
|
58
|
-
|
|
59
|
-
padding-right: 12px;
|
|
207
|
+
.E_t10pqbtc {
|
|
208
|
+
width: 140px;
|
|
60
209
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
210
|
+
.item {
|
|
211
|
+
margin: 6px auto;
|
|
212
|
+
display: flex;
|
|
213
|
+
justify-content: space-between;
|
|
214
|
+
|
|
215
|
+
.name {
|
|
216
|
+
width: 102px;
|
|
64
217
|
}
|
|
65
218
|
}
|
|
219
|
+
}
|
|
66
220
|
|
|
67
|
-
|
|
68
|
-
|
|
221
|
+
|
|
222
|
+
.E_c1uzzomf {
|
|
223
|
+
margin-bottom: 16px;
|
|
224
|
+
|
|
225
|
+
.card-title {
|
|
226
|
+
font-size: 16px;
|
|
227
|
+
color: $text-secondary-light;
|
|
228
|
+
font-weight: 700;
|
|
229
|
+
line-height: 32px;
|
|
230
|
+
}
|
|
231
|
+
.card-body {
|
|
232
|
+
padding: 24px;
|
|
233
|
+
border-radius: 8px;
|
|
234
|
+
background: $fills-light-white;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.empty {
|
|
238
|
+
font-weight: 700;
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
line-height: 22px;
|
|
241
|
+
color: $text-light-tertiary;
|
|
242
|
+
text-align: center;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
.E_b1nip9bk {
|
|
248
|
+
padding: 4px 11px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.E_bqamoqe {
|
|
252
|
+
white-space: nowrap;
|
|
253
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
254
|
+
|
|
255
|
+
& > .ant-btn {
|
|
256
|
+
&.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
257
|
+
--color: #{$text-light-general};
|
|
258
|
+
|
|
259
|
+
&[disabled],
|
|
260
|
+
&:hover[disabled] {
|
|
261
|
+
--color: #{$text-light-general};
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
& > .ant-btn:not(:only-child) {
|
|
267
|
+
& + .ant-btn {
|
|
268
|
+
margin-left: 1px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
&:first-child {
|
|
272
|
+
border-top-right-radius: 0;
|
|
273
|
+
border-bottom-right-radius: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
&:last-child {
|
|
277
|
+
border-top-left-radius: 0;
|
|
278
|
+
border-bottom-left-radius: 0;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
&:not(:first-child, :last-child) {
|
|
282
|
+
border-radius: unset;
|
|
283
|
+
}
|
|
69
284
|
}
|
|
70
285
|
}
|
|
71
286
|
|
|
@@ -428,70 +643,15 @@
|
|
|
428
643
|
}
|
|
429
644
|
|
|
430
645
|
|
|
431
|
-
.
|
|
432
|
-
|
|
646
|
+
.E_ivqqkzv {
|
|
647
|
+
height: 24px;
|
|
648
|
+
width: 56px !important;
|
|
649
|
+
margin-right: 4px;
|
|
433
650
|
}
|
|
434
651
|
|
|
435
|
-
.
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
& > .ant-btn {
|
|
440
|
-
&.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
441
|
-
--color: #{$text-light-general};
|
|
442
|
-
|
|
443
|
-
&[disabled],
|
|
444
|
-
&:hover[disabled] {
|
|
445
|
-
--color: #{$text-light-general};
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
& > .ant-btn:not(:only-child) {
|
|
451
|
-
& + .ant-btn {
|
|
452
|
-
margin-left: 1px;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
&:first-child {
|
|
456
|
-
border-top-right-radius: 0;
|
|
457
|
-
border-bottom-right-radius: 0;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
&:last-child {
|
|
461
|
-
border-top-left-radius: 0;
|
|
462
|
-
border-bottom-left-radius: 0;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
&:not(:first-child, :last-child) {
|
|
466
|
-
border-radius: unset;
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
.E_c1uzzomf {
|
|
473
|
-
margin-bottom: 16px;
|
|
474
|
-
|
|
475
|
-
.card-title {
|
|
476
|
-
font-size: 16px;
|
|
477
|
-
color: $text-secondary-light;
|
|
478
|
-
font-weight: 700;
|
|
479
|
-
line-height: 32px;
|
|
480
|
-
}
|
|
481
|
-
.card-body {
|
|
482
|
-
padding: 24px;
|
|
483
|
-
border-radius: 8px;
|
|
484
|
-
background: $fills-light-white;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.empty {
|
|
488
|
-
font-weight: 700;
|
|
489
|
-
font-size: 14px;
|
|
490
|
-
line-height: 22px;
|
|
491
|
-
color: $text-light-tertiary;
|
|
492
|
-
text-align: center;
|
|
493
|
-
}
|
|
494
|
-
}
|
|
652
|
+
.E_c1wk4q29 {
|
|
653
|
+
color: $text-secondary-light;
|
|
654
|
+
}
|
|
495
655
|
|
|
496
656
|
|
|
497
657
|
.E_itxley7 {
|
|
@@ -549,162 +709,6 @@
|
|
|
549
709
|
}
|
|
550
710
|
|
|
551
711
|
|
|
552
|
-
.E_c1yyuluq {
|
|
553
|
-
border-radius: 8px;
|
|
554
|
-
.ant-card-body {
|
|
555
|
-
padding: 20px 24px 24px 24px;
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
.E_ccrbeuz {
|
|
561
|
-
.ant-collapse-item {
|
|
562
|
-
border: 0px;
|
|
563
|
-
background-color: $fills-light-white;
|
|
564
|
-
|
|
565
|
-
.ant-collapse-header {
|
|
566
|
-
padding-top: 0px;
|
|
567
|
-
padding-bottom: 0px;
|
|
568
|
-
padding-left: 0px !important;
|
|
569
|
-
padding-right: 24px;
|
|
570
|
-
.ant-collapse-arrow {
|
|
571
|
-
right: 0px;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
.ant-collapse-content {
|
|
575
|
-
.ant-collapse-content-box {
|
|
576
|
-
padding: 0px;
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
}
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.E_c1fljvag {
|
|
583
|
-
.ant-collapse-item {
|
|
584
|
-
.ant-collapse-header {
|
|
585
|
-
padding-right: 0px;
|
|
586
|
-
cursor: default;
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
.E_d133fzv0 {
|
|
593
|
-
.ant-dropdown-menu-item-group {
|
|
594
|
-
.ant-dropdown-menu-item-group-title {
|
|
595
|
-
padding: 4px 8px 0 8px;
|
|
596
|
-
color: $text-light-secondary;
|
|
597
|
-
font-size: 12px;
|
|
598
|
-
}
|
|
599
|
-
.ant-dropdown-menu-item-group-list {
|
|
600
|
-
padding-bottom: 6px;
|
|
601
|
-
}
|
|
602
|
-
&:not(:first-child) {
|
|
603
|
-
padding-top: 4px;
|
|
604
|
-
border-top: 1px solid $strokes-light-trans-2;
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
.E_d1bw7c5z {
|
|
611
|
-
position: relative;
|
|
612
|
-
max-width: 388px;
|
|
613
|
-
min-width: 285px;
|
|
614
|
-
.center {
|
|
615
|
-
position: absolute;
|
|
616
|
-
font-size: 12px;
|
|
617
|
-
width: 80px;
|
|
618
|
-
height: 100px;
|
|
619
|
-
top: 0;
|
|
620
|
-
left: 35px;
|
|
621
|
-
display: flex;
|
|
622
|
-
flex-direction: column;
|
|
623
|
-
justify-content: center;
|
|
624
|
-
align-items: center;
|
|
625
|
-
color: $text-light-primary;
|
|
626
|
-
|
|
627
|
-
.number {
|
|
628
|
-
font-size: 24px;
|
|
629
|
-
font-weight: 700;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.text {
|
|
633
|
-
padding: 0 5px;
|
|
634
|
-
font-size: 12px;
|
|
635
|
-
width: inherit;
|
|
636
|
-
text-align: center;
|
|
637
|
-
}
|
|
638
|
-
}
|
|
639
|
-
.recharts-wrapper {
|
|
640
|
-
display: flex;
|
|
641
|
-
.recharts-legend-wrapper {
|
|
642
|
-
position: relative !important;
|
|
643
|
-
min-width: calc(
|
|
644
|
-
100% - var(--d1bw7c5z-0)
|
|
645
|
-
) !important;
|
|
646
|
-
left: 0 !important;
|
|
647
|
-
bottom: 0 !important;
|
|
648
|
-
display: flex;
|
|
649
|
-
align-items: center;
|
|
650
|
-
.recharts-default-legend {
|
|
651
|
-
width: 100%;
|
|
652
|
-
}
|
|
653
|
-
li {
|
|
654
|
-
width: 100%;
|
|
655
|
-
margin-right: 0 !important;
|
|
656
|
-
line-height: 18px;
|
|
657
|
-
& > svg {
|
|
658
|
-
border-radius: 2px;
|
|
659
|
-
}
|
|
660
|
-
& > .recharts-legend-item-text {
|
|
661
|
-
min-width: 75px;
|
|
662
|
-
max-width: 198px;
|
|
663
|
-
width: calc(100% - 20px);
|
|
664
|
-
margin-left: 2px;
|
|
665
|
-
color: $text-light-primary !important;
|
|
666
|
-
display: inline-flex;
|
|
667
|
-
justify-content: space-between;
|
|
668
|
-
}
|
|
669
|
-
}
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
.tooltip-text {
|
|
673
|
-
maxwidth: calc(100% - 12px);
|
|
674
|
-
cursor: pointer;
|
|
675
|
-
border-bottom: 1px dashed $strokes-light-trans-4;
|
|
676
|
-
overflow: hidden;
|
|
677
|
-
text-overflow: ellipsis;
|
|
678
|
-
white-space: nowrap;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.value {
|
|
682
|
-
color: $text-neutral-secondary;
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
.E_t10pqbtc {
|
|
687
|
-
width: 140px;
|
|
688
|
-
|
|
689
|
-
.item {
|
|
690
|
-
margin: 6px auto;
|
|
691
|
-
display: flex;
|
|
692
|
-
justify-content: space-between;
|
|
693
|
-
|
|
694
|
-
.name {
|
|
695
|
-
width: 102px;
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
.E_sx1bpnu {
|
|
702
|
-
.ant-input-sm {
|
|
703
|
-
line-height: 18px;
|
|
704
|
-
}
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
|
|
708
712
|
.E_phljevk {
|
|
709
713
|
display: flex;
|
|
710
714
|
justify-content: space-between;
|
|
@@ -772,38 +776,6 @@
|
|
|
772
776
|
}
|
|
773
777
|
|
|
774
778
|
|
|
775
|
-
.E_i11gg7mj {
|
|
776
|
-
.ant-input-prefix {
|
|
777
|
-
margin-right: 8px;
|
|
778
|
-
}
|
|
779
|
-
.ant-input-suffix {
|
|
780
|
-
margin-left: 8px;
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.E_cc368xp {
|
|
785
|
-
color: $gray-120;
|
|
786
|
-
border-right: 1px solid $gray-a60-5;
|
|
787
|
-
margin-right: 8px;
|
|
788
|
-
padding-right: 8px;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.E_i11o6xqj {
|
|
792
|
-
display: flex;
|
|
793
|
-
gap: 4px;
|
|
794
|
-
|
|
795
|
-
.icon-wrapper {
|
|
796
|
-
cursor: pointer;
|
|
797
|
-
}
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.E_d19ruhdj {
|
|
801
|
-
&.icon-wrapper {
|
|
802
|
-
cursor: not-allowed;
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
|
|
807
779
|
.E_rapgekc {
|
|
808
780
|
&.ant-radio-wrapper {
|
|
809
781
|
display: inline-flex;
|
|
@@ -985,16 +957,44 @@
|
|
|
985
957
|
}
|
|
986
958
|
|
|
987
959
|
|
|
988
|
-
.
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
960
|
+
.E_sx1bpnu {
|
|
961
|
+
.ant-input-sm {
|
|
962
|
+
line-height: 18px;
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
.E_i11gg7mj {
|
|
968
|
+
.ant-input-prefix {
|
|
969
|
+
margin-right: 8px;
|
|
970
|
+
}
|
|
971
|
+
.ant-input-suffix {
|
|
972
|
+
margin-left: 8px;
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.E_cc368xp {
|
|
977
|
+
color: $gray-120;
|
|
978
|
+
border-right: 1px solid $gray-a60-5;
|
|
979
|
+
margin-right: 8px;
|
|
980
|
+
padding-right: 8px;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.E_i11o6xqj {
|
|
984
|
+
display: flex;
|
|
985
|
+
gap: 4px;
|
|
986
|
+
|
|
987
|
+
.icon-wrapper {
|
|
988
|
+
cursor: pointer;
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.E_d19ruhdj {
|
|
993
|
+
&.icon-wrapper {
|
|
994
|
+
cursor: not-allowed;
|
|
995
|
+
}
|
|
992
996
|
}
|
|
993
997
|
|
|
994
|
-
.E_c1wk4q29 {
|
|
995
|
-
color: $text-secondary-light;
|
|
996
|
-
}
|
|
997
|
-
|
|
998
998
|
|
|
999
999
|
.E_c1bus5hc {
|
|
1000
1000
|
--color: white;
|
|
@@ -1047,6 +1047,25 @@
|
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
1049
1049
|
|
|
1050
|
+
.E_iq1gosr {
|
|
1051
|
+
display: inline-block;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
.E_t1m2x205 {
|
|
1056
|
+
.ant-tooltip-arrow {
|
|
1057
|
+
display: none;
|
|
1058
|
+
}
|
|
1059
|
+
.ant-tooltip-inner {
|
|
1060
|
+
background: $gray-a80-9;
|
|
1061
|
+
border-radius: 4px;
|
|
1062
|
+
&:has(.eagle-ellipsis-content) {
|
|
1063
|
+
visibility: hidden;
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
|
|
1050
1069
|
.E_s1dizucg {
|
|
1051
1070
|
&.ant-switch {
|
|
1052
1071
|
min-width: 40px;
|
|
@@ -1107,92 +1126,6 @@
|
|
|
1107
1126
|
}
|
|
1108
1127
|
|
|
1109
1128
|
|
|
1110
|
-
.E_s1sck0th {
|
|
1111
|
-
padding: 0 8px;
|
|
1112
|
-
border-radius: 4px;
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
|
-
.E_m855nr1 {
|
|
1116
|
-
padding: 2px 8px;
|
|
1117
|
-
border-radius: 3px;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
.E_l1270xpg {
|
|
1121
|
-
padding: 3px 8px;
|
|
1122
|
-
border-radius: 2px;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
.E_t14rextb {
|
|
1126
|
-
&.ant-tag:hover {
|
|
1127
|
-
opacity: unset;
|
|
1128
|
-
}
|
|
1129
|
-
&.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
1130
|
-
margin: 0;
|
|
1131
|
-
margin-right: 8px;
|
|
1132
|
-
display: inline-flex;
|
|
1133
|
-
align-items: center;
|
|
1134
|
-
border: none;
|
|
1135
|
-
& .ant-tag-close-icon {
|
|
1136
|
-
width: 16px;
|
|
1137
|
-
height: 16px;
|
|
1138
|
-
color: inherit;
|
|
1139
|
-
margin-left: 4px;
|
|
1140
|
-
opacity: 0.6;
|
|
1141
|
-
display: inline-flex;
|
|
1142
|
-
&:hover {
|
|
1143
|
-
opacity: 1;
|
|
1144
|
-
}
|
|
1145
|
-
}
|
|
1146
|
-
&.ant-tag-blue {
|
|
1147
|
-
color: $fills-light-general-general;
|
|
1148
|
-
background-color: $fills-light-general-general-light;
|
|
1149
|
-
}
|
|
1150
|
-
&.ant-tag-red {
|
|
1151
|
-
color: $fills-light-serious-serious;
|
|
1152
|
-
background-color: $fills-light-serious-serious-light;
|
|
1153
|
-
}
|
|
1154
|
-
&.ant-tag-yellow {
|
|
1155
|
-
color: $fills-light-notice-notice-dark;
|
|
1156
|
-
background-color: $fills-light-notice-notice-light;
|
|
1157
|
-
}
|
|
1158
|
-
&.ant-tag-green {
|
|
1159
|
-
color: $fills-light-positive-positive-dark;
|
|
1160
|
-
background-color: $fills-light-positive-positive-light;
|
|
1161
|
-
}
|
|
1162
|
-
&.ant-tag-gray {
|
|
1163
|
-
color: $text-light-super;
|
|
1164
|
-
background-color: $fills-element-light-container-general;
|
|
1165
|
-
}
|
|
1166
|
-
&.ant-tag-purple {
|
|
1167
|
-
color: $text-colorful-purple;
|
|
1168
|
-
background-color: $fill-purple-light;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
&.ui-kit-token-checked {
|
|
1172
|
-
color: $text-light-on-tint;
|
|
1173
|
-
&.ant-tag-red {
|
|
1174
|
-
background-color: $fills-light-serious-serious;
|
|
1175
|
-
}
|
|
1176
|
-
&.ant-tag-yellow {
|
|
1177
|
-
background-color: $fills-light-notice-notice;
|
|
1178
|
-
}
|
|
1179
|
-
&.ant-tag-green {
|
|
1180
|
-
background-color: $fills-light-positive-positive;
|
|
1181
|
-
}
|
|
1182
|
-
&.ant-tag-blue {
|
|
1183
|
-
background-color: $fills-light-general-general;
|
|
1184
|
-
}
|
|
1185
|
-
&.ant-tag-gray {
|
|
1186
|
-
background-color: $gray-70;
|
|
1187
|
-
}
|
|
1188
|
-
&.ant-tag-purple {
|
|
1189
|
-
background-color: $fill-purple-base;
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
1129
|
.E_s1dni7lo {
|
|
1197
1130
|
width: 430px !important;
|
|
1198
1131
|
}
|
|
@@ -1282,22 +1215,106 @@
|
|
|
1282
1215
|
}
|
|
1283
1216
|
|
|
1284
1217
|
|
|
1285
|
-
.
|
|
1286
|
-
|
|
1287
|
-
display: none;
|
|
1288
|
-
}
|
|
1289
|
-
.ant-tooltip-inner {
|
|
1290
|
-
background: $gray-a80-9;
|
|
1218
|
+
.E_s1sck0th {
|
|
1219
|
+
padding: 0 8px;
|
|
1291
1220
|
border-radius: 4px;
|
|
1292
|
-
|
|
1293
|
-
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.E_m855nr1 {
|
|
1224
|
+
padding: 2px 8px;
|
|
1225
|
+
border-radius: 3px;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.E_l1270xpg {
|
|
1229
|
+
padding: 3px 8px;
|
|
1230
|
+
border-radius: 2px;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.E_t14rextb {
|
|
1234
|
+
&.ant-tag:hover {
|
|
1235
|
+
opacity: unset;
|
|
1236
|
+
}
|
|
1237
|
+
&.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
1238
|
+
margin: 0;
|
|
1239
|
+
margin-right: 8px;
|
|
1240
|
+
display: inline-flex;
|
|
1241
|
+
align-items: center;
|
|
1242
|
+
border: none;
|
|
1243
|
+
& .ant-tag-close-icon {
|
|
1244
|
+
width: 16px;
|
|
1245
|
+
height: 16px;
|
|
1246
|
+
color: inherit;
|
|
1247
|
+
margin-left: 4px;
|
|
1248
|
+
opacity: 0.6;
|
|
1249
|
+
display: inline-flex;
|
|
1250
|
+
&:hover {
|
|
1251
|
+
opacity: 1;
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
&.ant-tag-blue {
|
|
1255
|
+
color: $fills-light-general-general;
|
|
1256
|
+
background-color: $fills-light-general-general-light;
|
|
1257
|
+
}
|
|
1258
|
+
&.ant-tag-red {
|
|
1259
|
+
color: $fills-light-serious-serious;
|
|
1260
|
+
background-color: $fills-light-serious-serious-light;
|
|
1261
|
+
}
|
|
1262
|
+
&.ant-tag-yellow {
|
|
1263
|
+
color: $fills-light-notice-notice-dark;
|
|
1264
|
+
background-color: $fills-light-notice-notice-light;
|
|
1265
|
+
}
|
|
1266
|
+
&.ant-tag-green {
|
|
1267
|
+
color: $fills-light-positive-positive-dark;
|
|
1268
|
+
background-color: $fills-light-positive-positive-light;
|
|
1269
|
+
}
|
|
1270
|
+
&.ant-tag-gray {
|
|
1271
|
+
color: $text-light-super;
|
|
1272
|
+
background-color: $fills-element-light-container-general;
|
|
1273
|
+
}
|
|
1274
|
+
&.ant-tag-purple {
|
|
1275
|
+
color: $text-colorful-purple;
|
|
1276
|
+
background-color: $fill-purple-light;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
&.ui-kit-token-checked {
|
|
1280
|
+
color: $text-light-on-tint;
|
|
1281
|
+
&.ant-tag-red {
|
|
1282
|
+
background-color: $fills-light-serious-serious;
|
|
1283
|
+
}
|
|
1284
|
+
&.ant-tag-yellow {
|
|
1285
|
+
background-color: $fills-light-notice-notice;
|
|
1286
|
+
}
|
|
1287
|
+
&.ant-tag-green {
|
|
1288
|
+
background-color: $fills-light-positive-positive;
|
|
1289
|
+
}
|
|
1290
|
+
&.ant-tag-blue {
|
|
1291
|
+
background-color: $fills-light-general-general;
|
|
1292
|
+
}
|
|
1293
|
+
&.ant-tag-gray {
|
|
1294
|
+
background-color: $gray-70;
|
|
1295
|
+
}
|
|
1296
|
+
&.ant-tag-purple {
|
|
1297
|
+
background-color: $fill-purple-base;
|
|
1298
|
+
}
|
|
1294
1299
|
}
|
|
1295
1300
|
}
|
|
1296
1301
|
}
|
|
1297
1302
|
|
|
1298
1303
|
|
|
1299
|
-
.
|
|
1300
|
-
|
|
1304
|
+
.E_fzh9mnb {
|
|
1305
|
+
width: 100%;
|
|
1306
|
+
height: 100%;
|
|
1307
|
+
min-height: 124px;
|
|
1308
|
+
display: flex;
|
|
1309
|
+
flex-direction: column;
|
|
1310
|
+
justify-content: center;
|
|
1311
|
+
align-items: center;
|
|
1312
|
+
|
|
1313
|
+
.error-text {
|
|
1314
|
+
color: $text-terdiary-light;
|
|
1315
|
+
margin-bottom: 16px;
|
|
1316
|
+
font-size: 18px;
|
|
1317
|
+
}
|
|
1301
1318
|
}
|
|
1302
1319
|
|
|
1303
1320
|
|
|
@@ -1382,81 +1399,39 @@
|
|
|
1382
1399
|
}
|
|
1383
1400
|
|
|
1384
1401
|
|
|
1385
|
-
.
|
|
1386
|
-
|
|
1387
|
-
line-height: 18px;
|
|
1388
|
-
padding: 0 4px;
|
|
1389
|
-
border-radius: 4px;
|
|
1390
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1391
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1392
|
-
display: flex;
|
|
1402
|
+
.E_iouxfgt {
|
|
1403
|
+
display: inline-flex;
|
|
1393
1404
|
align-items: center;
|
|
1394
|
-
white-space: nowrap;
|
|
1395
|
-
margin-right: 4px;
|
|
1396
|
-
}
|
|
1397
1405
|
|
|
1398
|
-
|
|
1399
|
-
.E_a1wfy30z {
|
|
1400
|
-
.ant-input-number-handler-wrap {
|
|
1401
|
-
display: var(--a1wfy30z-0);
|
|
1402
|
-
}
|
|
1403
|
-
.ant-input-number-input-wrap {
|
|
1404
|
-
padding: 4px 11px;
|
|
1406
|
+
.icon-inner {
|
|
1405
1407
|
display: inline-flex;
|
|
1406
|
-
line-height: 1.5715;
|
|
1407
|
-
height: inherit;
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
|
-
.ant-input-number-input-wrap::after {
|
|
1411
|
-
content: var(--a1wfy30z-1);
|
|
1412
|
-
display: var(--a1wfy30z-2);
|
|
1413
|
-
flex: none;
|
|
1414
|
-
align-items: center;
|
|
1415
|
-
margin-left: 4px;
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
.ant-input-number-input-wrap::before {
|
|
1419
|
-
content: var(--a1wfy30z-3);
|
|
1420
|
-
display: var(--a1wfy30z-4);
|
|
1421
|
-
flex: none;
|
|
1422
1408
|
align-items: center;
|
|
1423
|
-
|
|
1424
|
-
cursor: auto;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
.ant-input-number-input {
|
|
1428
|
-
padding: 0;
|
|
1429
|
-
margin: 0;
|
|
1430
|
-
height: auto;
|
|
1431
|
-
font-size: inherit;
|
|
1409
|
+
justify-content: center;
|
|
1432
1410
|
}
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
.E_atcz0kf {
|
|
1437
|
-
.ant-input-suffix {
|
|
1438
|
-
margin-left: 8px;
|
|
1411
|
+
.icon-inner + span,
|
|
1412
|
+
span + .icon-inner.suffix {
|
|
1413
|
+
margin-left: 4px;
|
|
1439
1414
|
}
|
|
1440
|
-
&.
|
|
1441
|
-
|
|
1415
|
+
&.is-rotate {
|
|
1416
|
+
img,
|
|
1417
|
+
svg {
|
|
1418
|
+
animation: rotate 680ms linear infinite;
|
|
1419
|
+
}
|
|
1442
1420
|
}
|
|
1443
1421
|
}
|
|
1444
1422
|
|
|
1445
1423
|
|
|
1446
|
-
.
|
|
1447
|
-
|
|
1448
|
-
height:
|
|
1449
|
-
|
|
1424
|
+
.E_i1inqkme {
|
|
1425
|
+
height: 18px;
|
|
1426
|
+
line-height: 18px;
|
|
1427
|
+
padding: 0 4px;
|
|
1428
|
+
border-radius: 4px;
|
|
1429
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1430
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1450
1431
|
display: flex;
|
|
1451
|
-
flex-direction: column;
|
|
1452
|
-
justify-content: center;
|
|
1453
1432
|
align-items: center;
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
color: $text-terdiary-light;
|
|
1457
|
-
margin-bottom: 16px;
|
|
1458
|
-
font-size: 18px;
|
|
1459
|
-
}
|
|
1433
|
+
white-space: nowrap;
|
|
1434
|
+
margin-right: 4px;
|
|
1460
1435
|
}
|
|
1461
1436
|
|
|
1462
1437
|
|
|
@@ -1502,35 +1477,50 @@
|
|
|
1502
1477
|
}
|
|
1503
1478
|
|
|
1504
1479
|
|
|
1505
|
-
.
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
.
|
|
1480
|
+
.E_a1wfy30z {
|
|
1481
|
+
.ant-input-number-handler-wrap {
|
|
1482
|
+
display: var(--a1wfy30z-0);
|
|
1483
|
+
}
|
|
1484
|
+
.ant-input-number-input-wrap {
|
|
1485
|
+
padding: 4px 11px;
|
|
1510
1486
|
display: inline-flex;
|
|
1511
|
-
|
|
1512
|
-
|
|
1487
|
+
line-height: 1.5715;
|
|
1488
|
+
height: inherit;
|
|
1513
1489
|
}
|
|
1514
|
-
|
|
1515
|
-
|
|
1490
|
+
|
|
1491
|
+
.ant-input-number-input-wrap::after {
|
|
1492
|
+
content: var(--a1wfy30z-1);
|
|
1493
|
+
display: var(--a1wfy30z-2);
|
|
1494
|
+
flex: none;
|
|
1495
|
+
align-items: center;
|
|
1516
1496
|
margin-left: 4px;
|
|
1517
1497
|
}
|
|
1518
|
-
&.is-rotate {
|
|
1519
|
-
img,
|
|
1520
|
-
svg {
|
|
1521
|
-
animation: rotate 680ms linear infinite;
|
|
1522
|
-
}
|
|
1523
|
-
}
|
|
1524
|
-
}
|
|
1525
1498
|
|
|
1499
|
+
.ant-input-number-input-wrap::before {
|
|
1500
|
+
content: var(--a1wfy30z-3);
|
|
1501
|
+
display: var(--a1wfy30z-4);
|
|
1502
|
+
flex: none;
|
|
1503
|
+
align-items: center;
|
|
1504
|
+
margin-right: 4px;
|
|
1505
|
+
cursor: auto;
|
|
1506
|
+
}
|
|
1526
1507
|
|
|
1527
|
-
.
|
|
1528
|
-
|
|
1508
|
+
.ant-input-number-input {
|
|
1509
|
+
padding: 0;
|
|
1510
|
+
margin: 0;
|
|
1511
|
+
height: auto;
|
|
1512
|
+
font-size: inherit;
|
|
1513
|
+
}
|
|
1529
1514
|
}
|
|
1530
1515
|
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1516
|
+
|
|
1517
|
+
.E_atcz0kf {
|
|
1518
|
+
.ant-input-suffix {
|
|
1519
|
+
margin-left: 8px;
|
|
1520
|
+
}
|
|
1521
|
+
&.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
1522
|
+
padding: 2px 7px 2px 12px;
|
|
1523
|
+
}
|
|
1534
1524
|
}
|
|
1535
1525
|
|
|
1536
1526
|
|
|
@@ -1576,6 +1566,16 @@
|
|
|
1576
1566
|
}
|
|
1577
1567
|
|
|
1578
1568
|
|
|
1569
|
+
.E_owd0kml {
|
|
1570
|
+
display: inline-block;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.E_h1jsgezc {
|
|
1574
|
+
visibility: hidden;
|
|
1575
|
+
position: absolute;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
1579
|
.E_dsnbhzf {
|
|
1580
1580
|
@include Inter(bold);
|
|
1581
1581
|
font-size: 32px;
|
|
@@ -3165,7 +3165,6 @@
|
|
|
3165
3165
|
--footer-height: 96px;
|
|
3166
3166
|
--modal-content-width: 720px;
|
|
3167
3167
|
--modal-content-min-height: 200px;
|
|
3168
|
-
--modal-content-max-height: calc(100vh - 136px);
|
|
3169
3168
|
--modal-header-padding: 40px 60px 8px;
|
|
3170
3169
|
--modal-content-padding-top: 24px;
|
|
3171
3170
|
--modal-content-padding-bottom: 32px;
|
|
@@ -3386,65 +3385,6 @@
|
|
|
3386
3385
|
}
|
|
3387
3386
|
|
|
3388
3387
|
|
|
3389
|
-
.E_s11wux3h {
|
|
3390
|
-
.antd5-segmented-item:not(:last-child) {
|
|
3391
|
-
margin-right: 2px;
|
|
3392
|
-
}
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
|
-
.E_s1t2an3z {
|
|
3396
|
-
&.antd5-segmented-sm .antd5-segmented-item-label {
|
|
3397
|
-
padding-left: 8px;
|
|
3398
|
-
padding-right: 8px;
|
|
3399
|
-
font-size: 12px;
|
|
3400
|
-
}
|
|
3401
|
-
|
|
3402
|
-
&.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
3403
|
-
border-radius: 4px;
|
|
3404
|
-
}
|
|
3405
|
-
|
|
3406
|
-
&.antd5-segmented
|
|
3407
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3408
|
-
.antd5-segmented-item-disabled
|
|
3409
|
-
) {
|
|
3410
|
-
border-radius: 4px;
|
|
3411
|
-
}
|
|
3412
|
-
}
|
|
3413
|
-
|
|
3414
|
-
.E_ma64lna {
|
|
3415
|
-
.antd5-segmented-item-label {
|
|
3416
|
-
padding-left: 12px;
|
|
3417
|
-
padding-right: 12px;
|
|
3418
|
-
}
|
|
3419
|
-
}
|
|
3420
|
-
|
|
3421
|
-
.E_ckld275 {
|
|
3422
|
-
background-color: $fill-neutral-trans-2;
|
|
3423
|
-
&.antd5-segmented
|
|
3424
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3425
|
-
.antd5-segmented-item-disabled
|
|
3426
|
-
) {
|
|
3427
|
-
background-color: $fill-neutral-light-white;
|
|
3428
|
-
color: $text-neutral-secondary-light;
|
|
3429
|
-
}
|
|
3430
|
-
// on animate remove hover bg color
|
|
3431
|
-
&.antd5-segmented
|
|
3432
|
-
.antd5-segmented-thumb
|
|
3433
|
-
~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3434
|
-
.antd5-segmented-item-disabled
|
|
3435
|
-
) {
|
|
3436
|
-
background-color: transparent;
|
|
3437
|
-
}
|
|
3438
|
-
// remove after's bg color
|
|
3439
|
-
&.antd5-segmented
|
|
3440
|
-
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3441
|
-
.antd5-segmented-item-disabled
|
|
3442
|
-
)::after {
|
|
3443
|
-
background-color: transparent;
|
|
3444
|
-
}
|
|
3445
|
-
}
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
3388
|
.E_h12yihis {
|
|
3449
3389
|
height: 50px;
|
|
3450
3390
|
border-bottom: 2px solid #edf0f7;
|
|
@@ -3715,219 +3655,502 @@
|
|
|
3715
3655
|
}
|
|
3716
3656
|
|
|
3717
3657
|
|
|
3718
|
-
.
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
padding: 7px 12px;
|
|
3726
|
-
display: flex;
|
|
3727
|
-
justify-content: space-between;
|
|
3728
|
-
align-items: center;
|
|
3729
|
-
|
|
3730
|
-
&.has-arrow {
|
|
3731
|
-
padding-left: 10px;
|
|
3732
|
-
|
|
3733
|
-
.title-wrapper {
|
|
3734
|
-
cursor: pointer;
|
|
3735
|
-
color: $text-light-primary;
|
|
3658
|
+
.E_ckaaqep {
|
|
3659
|
+
background: #acbad399;
|
|
3660
|
+
content: "";
|
|
3661
|
+
height: 100%;
|
|
3662
|
+
margin: 0 6px;
|
|
3663
|
+
width: 1px;
|
|
3664
|
+
}
|
|
3736
3665
|
|
|
3737
|
-
&.is-open {
|
|
3738
|
-
color: $text-primary-light;
|
|
3739
|
-
font-weight: 600;
|
|
3740
3666
|
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
}
|
|
3745
|
-
}
|
|
3667
|
+
.E_s11wux3h {
|
|
3668
|
+
.antd5-segmented-item:not(:last-child) {
|
|
3669
|
+
margin-right: 2px;
|
|
3746
3670
|
}
|
|
3671
|
+
}
|
|
3747
3672
|
|
|
3748
|
-
|
|
3673
|
+
.E_s1t2an3z {
|
|
3674
|
+
&.antd5-segmented-sm .antd5-segmented-item-label {
|
|
3675
|
+
padding-left: 8px;
|
|
3676
|
+
padding-right: 8px;
|
|
3749
3677
|
font-size: 12px;
|
|
3750
|
-
line-height: 18px;
|
|
3751
3678
|
}
|
|
3752
3679
|
|
|
3753
|
-
.
|
|
3754
|
-
|
|
3755
|
-
align-items: center;
|
|
3756
|
-
user-select: none;
|
|
3757
|
-
flex-grow: 1;
|
|
3758
|
-
font-size: 12px;
|
|
3759
|
-
line-height: 18px;
|
|
3760
|
-
color: $text-primary-light;
|
|
3761
|
-
font-weight: 700;
|
|
3680
|
+
&.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
3681
|
+
border-radius: 4px;
|
|
3762
3682
|
}
|
|
3763
3683
|
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3684
|
+
&.antd5-segmented
|
|
3685
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3686
|
+
.antd5-segmented-item-disabled
|
|
3687
|
+
) {
|
|
3688
|
+
border-radius: 4px;
|
|
3767
3689
|
}
|
|
3768
3690
|
}
|
|
3769
3691
|
|
|
3692
|
+
.E_ma64lna {
|
|
3693
|
+
.antd5-segmented-item-label {
|
|
3694
|
+
padding-left: 12px;
|
|
3695
|
+
padding-right: 12px;
|
|
3696
|
+
}
|
|
3697
|
+
}
|
|
3770
3698
|
|
|
3771
|
-
.
|
|
3772
|
-
color: $
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
.
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
cursor: pointer;
|
|
3795
|
-
|
|
3796
|
-
&:hover {
|
|
3797
|
-
transition: all 200ms ease;
|
|
3798
|
-
box-shadow: 0px 9px 22px rgb(107 125 153 / 23%),
|
|
3799
|
-
0px 1.12694px 2.75474px rgb(107 125 153 / 12%);
|
|
3800
|
-
transform: translateY(-4px);
|
|
3801
|
-
}
|
|
3699
|
+
.E_ckld275 {
|
|
3700
|
+
background-color: $fill-neutral-trans-2;
|
|
3701
|
+
&.antd5-segmented
|
|
3702
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3703
|
+
.antd5-segmented-item-disabled
|
|
3704
|
+
) {
|
|
3705
|
+
background-color: $fill-neutral-light-white;
|
|
3706
|
+
color: $text-neutral-secondary-light;
|
|
3707
|
+
}
|
|
3708
|
+
// on animate remove hover bg color
|
|
3709
|
+
&.antd5-segmented
|
|
3710
|
+
.antd5-segmented-thumb
|
|
3711
|
+
~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3712
|
+
.antd5-segmented-item-disabled
|
|
3713
|
+
) {
|
|
3714
|
+
background-color: transparent;
|
|
3715
|
+
}
|
|
3716
|
+
// remove after's bg color
|
|
3717
|
+
&.antd5-segmented
|
|
3718
|
+
.antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(
|
|
3719
|
+
.antd5-segmented-item-disabled
|
|
3720
|
+
)::after {
|
|
3721
|
+
background-color: transparent;
|
|
3802
3722
|
}
|
|
3803
3723
|
}
|
|
3804
3724
|
|
|
3805
3725
|
|
|
3806
|
-
.
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
}
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
border-radius: 5px;
|
|
3825
|
-
transform: rotate(-128deg);
|
|
3826
|
-
transform-origin: top left;
|
|
3726
|
+
.E_l48ei06 {
|
|
3727
|
+
@at-root {
|
|
3728
|
+
button#{&}.ant-btn,
|
|
3729
|
+
button#{&}.ant-btn.ant-btn-sm,
|
|
3730
|
+
button#{&}.ant-btn.ant-btn-lg {
|
|
3731
|
+
font-size: 12px;
|
|
3732
|
+
line-height: 18px;
|
|
3733
|
+
height: 18px;
|
|
3734
|
+
}
|
|
3735
|
+
button#{&} {
|
|
3736
|
+
color: #0080FF;
|
|
3737
|
+
height: unset;
|
|
3738
|
+
.button-prefix-icon {
|
|
3739
|
+
margin-right: 4px;
|
|
3740
|
+
}
|
|
3741
|
+
.button-suffix-icon {
|
|
3742
|
+
margin-left: 4px;
|
|
3743
|
+
}
|
|
3827
3744
|
|
|
3828
|
-
|
|
3829
|
-
|
|
3745
|
+
&:hover,
|
|
3746
|
+
&.__pseudo-states-hover {
|
|
3747
|
+
color: #009DFF;
|
|
3748
|
+
}
|
|
3830
3749
|
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3750
|
+
&:active,
|
|
3751
|
+
&.__pseudo-states-active {
|
|
3752
|
+
color: #005ED1;
|
|
3753
|
+
}
|
|
3754
|
+
&.ui-kit-link-disabled {
|
|
3755
|
+
color: #0080FF;
|
|
3756
|
+
}
|
|
3757
|
+
&.ui-kit-link-primary {
|
|
3758
|
+
color: #00122E;
|
|
3837
3759
|
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3760
|
+
&:hover,
|
|
3761
|
+
&.__pseudo-states-hover {
|
|
3762
|
+
color: #0080FF;
|
|
3763
|
+
}
|
|
3842
3764
|
|
|
3843
|
-
|
|
3844
|
-
|
|
3765
|
+
&:active,
|
|
3766
|
+
&.__pseudo-states-active {
|
|
3767
|
+
color: #005ED1;
|
|
3768
|
+
}
|
|
3845
3769
|
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
left: 52.9px;
|
|
3851
|
-
top: 51.8px;
|
|
3770
|
+
&.ui-kit-link-disabled {
|
|
3771
|
+
color: #00122E;
|
|
3772
|
+
}
|
|
3773
|
+
}
|
|
3852
3774
|
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
transform: rotate(112deg);
|
|
3856
|
-
transform-origin: top left;
|
|
3775
|
+
&.ui-kit-link-secondary {
|
|
3776
|
+
color: #2C3852BF;
|
|
3857
3777
|
|
|
3858
|
-
|
|
3859
|
-
|
|
3778
|
+
&:hover,
|
|
3779
|
+
&.__pseudo-states-hover {
|
|
3780
|
+
color: #0080FF;
|
|
3781
|
+
}
|
|
3860
3782
|
|
|
3783
|
+
&:active,
|
|
3784
|
+
&.__pseudo-states-active {
|
|
3785
|
+
color: #005ED1;
|
|
3786
|
+
}
|
|
3861
3787
|
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
border-radius: 4px 0 0 4px;
|
|
3867
|
-
padding-right: 4px;
|
|
3868
|
-
margin-right: 4px;
|
|
3788
|
+
&.ui-kit-link-disabled {
|
|
3789
|
+
color: #2C3852BF;
|
|
3790
|
+
}
|
|
3791
|
+
}
|
|
3869
3792
|
}
|
|
3870
3793
|
}
|
|
3871
3794
|
}
|
|
3872
3795
|
|
|
3873
3796
|
|
|
3874
|
-
.
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
height: 100%;
|
|
3797
|
+
.E_u3l9ivi {
|
|
3798
|
+
width: 100%;
|
|
3799
|
+
position: relative;
|
|
3800
|
+
.upload-label {
|
|
3801
|
+
color: $text-light-primary;
|
|
3802
|
+
word-break: break-word;
|
|
3803
|
+
margin-bottom: 4px;
|
|
3804
|
+
display: block;
|
|
3883
3805
|
}
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3806
|
+
.upload-description {
|
|
3807
|
+
color: $text-light-secondary;
|
|
3808
|
+
word-break: break-word;
|
|
3887
3809
|
}
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
width: 100% !important;
|
|
3891
|
-
height: 100%;
|
|
3892
|
-
.ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
3893
|
-
padding: 15px 0;
|
|
3894
|
-
}
|
|
3810
|
+
.upload-button {
|
|
3811
|
+
display: block;
|
|
3895
3812
|
}
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3813
|
+
.upload-button:not(:first-child),
|
|
3814
|
+
.upload-drag:not(:first-child) {
|
|
3815
|
+
margin-top: 8px;
|
|
3816
|
+
}
|
|
3817
|
+
.upload-button:not(:last-child),
|
|
3818
|
+
.upload-drag:not(:last-child) {
|
|
3819
|
+
margin-bottom: 8px;
|
|
3899
3820
|
}
|
|
3900
|
-
}
|
|
3901
3821
|
|
|
3902
|
-
.
|
|
3903
|
-
|
|
3822
|
+
.upload-drag-area {
|
|
3823
|
+
padding: 32px 16px;
|
|
3824
|
+
border-radius: 4px;
|
|
3825
|
+
border: 1px dashed $strokes-light-trans-4;
|
|
3826
|
+
background: $fills-light-trans-1;
|
|
3904
3827
|
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3828
|
+
display: flex;
|
|
3829
|
+
flex-direction: column;
|
|
3830
|
+
align-items: center;
|
|
3831
|
+
.upload-drag-text {
|
|
3832
|
+
text-align: center;
|
|
3833
|
+
}
|
|
3909
3834
|
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
&.has-selection .active-row td:nth-child(2) {
|
|
3914
|
-
font-weight: 700;
|
|
3915
|
-
}
|
|
3835
|
+
.ant-upload-drag-container {
|
|
3836
|
+
color: $text-light-primary;
|
|
3837
|
+
}
|
|
3916
3838
|
|
|
3917
|
-
|
|
3918
|
-
|
|
3839
|
+
&.has-file {
|
|
3840
|
+
padding: 16px;
|
|
3841
|
+
.ant-upload-drag-container {
|
|
3842
|
+
display: flex;
|
|
3843
|
+
flex-direction: row;
|
|
3844
|
+
justify-content: center;
|
|
3845
|
+
align-items: flex-start;
|
|
3846
|
+
.ant-btn.ant-btn-link {
|
|
3847
|
+
height: 24px;
|
|
3848
|
+
}
|
|
3849
|
+
.ant-btn.ant-btn-link[disabled] {
|
|
3850
|
+
color: $text-light-primary;
|
|
3851
|
+
opacity: 1;
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
.upload-drag-text {
|
|
3855
|
+
margin-left: 8px;
|
|
3856
|
+
text-align: left;
|
|
3857
|
+
.ant-btn.ant-btn-link {
|
|
3858
|
+
height: 24px;
|
|
3859
|
+
}
|
|
3860
|
+
}
|
|
3861
|
+
}
|
|
3862
|
+
&.has-file.single {
|
|
3863
|
+
padding: 12px;
|
|
3864
|
+
line-height: 24px;
|
|
3865
|
+
.ant-upload-drag-container {
|
|
3866
|
+
display: flex;
|
|
3867
|
+
flex-direction: row;
|
|
3868
|
+
align-items: flex-start;
|
|
3869
|
+
justify-content: space-between;
|
|
3870
|
+
line-height: 24px;
|
|
3871
|
+
word-break: break-all;
|
|
3872
|
+
.ant-btn.ant-btn-link {
|
|
3873
|
+
height: 24px;
|
|
3874
|
+
}
|
|
3875
|
+
}
|
|
3876
|
+
}
|
|
3877
|
+
&.file-error.single {
|
|
3878
|
+
border-color: $strokes-light-serious;
|
|
3879
|
+
background: $fills-element-light-container-serious;
|
|
3880
|
+
}
|
|
3919
3881
|
|
|
3920
|
-
.
|
|
3921
|
-
|
|
3922
|
-
|
|
3882
|
+
.file-info {
|
|
3883
|
+
display: flex;
|
|
3884
|
+
cursor: default;
|
|
3885
|
+
align-items: flex-start;
|
|
3886
|
+
.icon-wrapper {
|
|
3887
|
+
margin: 4px 0;
|
|
3888
|
+
}
|
|
3889
|
+
.file-name {
|
|
3890
|
+
margin: 3px 4px;
|
|
3891
|
+
text-align: left;
|
|
3892
|
+
}
|
|
3923
3893
|
}
|
|
3924
|
-
|
|
3925
|
-
|
|
3894
|
+
|
|
3895
|
+
&:not(.ant-upload-disabled):not(.file-error):hover {
|
|
3896
|
+
border-color: $strokes-light-outstanding;
|
|
3897
|
+
background: $fills-light-general-general-light;
|
|
3898
|
+
}
|
|
3899
|
+
&.ant-upload-disabled {
|
|
3900
|
+
opacity: 0.5;
|
|
3901
|
+
}
|
|
3902
|
+
&.ant-upload-disabled.reach-max-count {
|
|
3903
|
+
color: $text-light-tertiary;
|
|
3926
3904
|
}
|
|
3927
3905
|
}
|
|
3928
3906
|
|
|
3929
|
-
|
|
3930
|
-
|
|
3907
|
+
.upload-error {
|
|
3908
|
+
margin-top: 8px;
|
|
3909
|
+
color: $text-light-serious;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.upload-file-info-list {
|
|
3913
|
+
gap: 4px;
|
|
3914
|
+
display: flex;
|
|
3915
|
+
flex-direction: column;
|
|
3916
|
+
}
|
|
3917
|
+
.upload-file-list {
|
|
3918
|
+
width: 100%;
|
|
3919
|
+
.upload-file-item {
|
|
3920
|
+
padding-bottom: 4px;
|
|
3921
|
+
&:not(:last-child) {
|
|
3922
|
+
border-bottom: 1px solid $strokes-light-trans-1;
|
|
3923
|
+
margin-bottom: 4px;
|
|
3924
|
+
}
|
|
3925
|
+
.upload-file-info {
|
|
3926
|
+
display: flex;
|
|
3927
|
+
align-items: flex-start;
|
|
3928
|
+
.file-info {
|
|
3929
|
+
display: flex;
|
|
3930
|
+
align-items: flex-start;
|
|
3931
|
+
width: calc(100% - 25px);
|
|
3932
|
+
.validating {
|
|
3933
|
+
color: $text-light-tertiary;
|
|
3934
|
+
}
|
|
3935
|
+
.icon-wrapper {
|
|
3936
|
+
margin: 0 4px;
|
|
3937
|
+
}
|
|
3938
|
+
}
|
|
3939
|
+
.remove-button {
|
|
3940
|
+
margin-left: auto;
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
.upload-file-error {
|
|
3944
|
+
color: $red;
|
|
3945
|
+
margin-left: 24px;
|
|
3946
|
+
}
|
|
3947
|
+
}
|
|
3948
|
+
}
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.E_ftdwz1g {
|
|
3952
|
+
display: flex;
|
|
3953
|
+
width: 100%;
|
|
3954
|
+
flex-direction: row;
|
|
3955
|
+
background: $fills-light-trans-1;
|
|
3956
|
+
padding: 7px 8px;
|
|
3957
|
+
border-radius: 4px;
|
|
3958
|
+
gap: 4px;
|
|
3959
|
+
align-items: self-start;
|
|
3960
|
+
color: $text-light-primary;
|
|
3961
|
+
|
|
3962
|
+
.file-size,
|
|
3963
|
+
.file-size-unit {
|
|
3964
|
+
color: $text-light-secondary;
|
|
3965
|
+
}
|
|
3966
|
+
.file-info {
|
|
3967
|
+
flex-grow: 1;
|
|
3968
|
+
overflow: hidden;
|
|
3969
|
+
}
|
|
3970
|
+
.icon-wrapper {
|
|
3971
|
+
margin-top: 2px;
|
|
3972
|
+
cursor: pointer;
|
|
3973
|
+
}
|
|
3974
|
+
.upload-file-error {
|
|
3975
|
+
color: $text-light-serious;
|
|
3976
|
+
}
|
|
3977
|
+
&.file-error-wrapper {
|
|
3978
|
+
background: $fills-element-light-container-serious;
|
|
3979
|
+
}
|
|
3980
|
+
&.disabled {
|
|
3981
|
+
opacity: 0.5;
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
|
|
3986
|
+
.E_b14q2gmw {
|
|
3987
|
+
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14),
|
|
3988
|
+
0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447),
|
|
3989
|
+
0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224),
|
|
3990
|
+
0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253),
|
|
3991
|
+
0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07),
|
|
3992
|
+
0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747),
|
|
3993
|
+
0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776),
|
|
3994
|
+
0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
.E_c1eym6el {
|
|
3998
|
+
border-radius: 8px;
|
|
3999
|
+
background-color: white;
|
|
4000
|
+
&.hoverable {
|
|
4001
|
+
cursor: pointer;
|
|
4002
|
+
|
|
4003
|
+
&:hover {
|
|
4004
|
+
transition: all 200ms ease;
|
|
4005
|
+
box-shadow: 0px 9px 22px rgb(107 125 153 / 23%),
|
|
4006
|
+
0px 1.12694px 2.75474px rgb(107 125 153 / 12%);
|
|
4007
|
+
transform: translateY(-4px);
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
|
|
4013
|
+
.E_sddwhm6 {
|
|
4014
|
+
$prefix: ui-kit-status-capsule;
|
|
4015
|
+
margin: 0;
|
|
4016
|
+
border-radius: 20px;
|
|
4017
|
+
padding: 2px 10px;
|
|
4018
|
+
height: 22px;
|
|
4019
|
+
|
|
4020
|
+
&.ant-tag.#{$prefix}.off-white {
|
|
4021
|
+
background-color: $fill-neutral-trans-1 !important;
|
|
4022
|
+
&.tag-hover:hover,
|
|
4023
|
+
&.__pseudo-states-hover {
|
|
4024
|
+
background-color: $fill-neutral-trans-2 !important;
|
|
4025
|
+
}
|
|
4026
|
+
}
|
|
4027
|
+
&.ant-tag.#{$prefix} {
|
|
4028
|
+
color: $text-neutral-primary;
|
|
4029
|
+
.#{$prefix}-icon {
|
|
4030
|
+
margin-right: 6px;
|
|
4031
|
+
}
|
|
4032
|
+
.#{$prefix}-number {
|
|
4033
|
+
margin-left: 8px;
|
|
4034
|
+
color: #2C385299;
|
|
4035
|
+
}
|
|
4036
|
+
&.ant-tag-blue {
|
|
4037
|
+
background-color: $fill-outstanding-light;
|
|
4038
|
+
.#{$prefix}-icon {
|
|
4039
|
+
background-color: $fill-outstanding-base;
|
|
4040
|
+
}
|
|
4041
|
+
&.tag-hover:hover,
|
|
4042
|
+
&.__pseudo-states-hover {
|
|
4043
|
+
background-color: $fill-outstanding-light-hover;
|
|
4044
|
+
}
|
|
4045
|
+
}
|
|
4046
|
+
&.ant-tag-red {
|
|
4047
|
+
background-color: $fill-serious-light;
|
|
4048
|
+
.#{$prefix}-icon {
|
|
4049
|
+
background-color: $fill-serious-base;
|
|
4050
|
+
}
|
|
4051
|
+
&.tag-hover:hover,
|
|
4052
|
+
&.__pseudo-states-hover {
|
|
4053
|
+
background-color: $fill-serious-light-hover;
|
|
4054
|
+
}
|
|
4055
|
+
}
|
|
4056
|
+
&.ant-tag-yellow {
|
|
4057
|
+
background-color: $fill-notice-light;
|
|
4058
|
+
.#{$prefix}-icon {
|
|
4059
|
+
background-color: $fill-notice-base;
|
|
4060
|
+
}
|
|
4061
|
+
&.tag-hover:hover,
|
|
4062
|
+
&.__pseudo-states-hover {
|
|
4063
|
+
background-color: $fill-notice-light-hover;
|
|
4064
|
+
}
|
|
4065
|
+
}
|
|
4066
|
+
&.ant-tag-green {
|
|
4067
|
+
background-color: $fill-positive-light;
|
|
4068
|
+
.#{$prefix}-icon {
|
|
4069
|
+
background-color: $fill-positive-base;
|
|
4070
|
+
}
|
|
4071
|
+
&.tag-hover:hover,
|
|
4072
|
+
&.__pseudo-states-hover {
|
|
4073
|
+
background-color: $fill-positive-light-hover;
|
|
4074
|
+
}
|
|
4075
|
+
}
|
|
4076
|
+
&.ant-tag-gray {
|
|
4077
|
+
background-color: $fill-neutral-trans-2;
|
|
4078
|
+
.#{$prefix}-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
4079
|
+
background-color: $gray-70;
|
|
4080
|
+
}
|
|
4081
|
+
&.tag-hover:hover,
|
|
4082
|
+
&.__pseudo-states-hover {
|
|
4083
|
+
background-color: $fill-neutral-trans-3-trans-2-hover;
|
|
4084
|
+
}
|
|
4085
|
+
}
|
|
4086
|
+
}
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
.E_satwmqm {
|
|
4090
|
+
width: 8px;
|
|
4091
|
+
height: 8px;
|
|
4092
|
+
border-radius: 50%;
|
|
4093
|
+
display: inline-block;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
|
|
4097
|
+
.E_tc97u5y {
|
|
4098
|
+
height: 100%;
|
|
4099
|
+
}
|
|
4100
|
+
|
|
4101
|
+
.E_efzf37v {
|
|
4102
|
+
.ant-table-content,
|
|
4103
|
+
.ant-table-body {
|
|
4104
|
+
overflow: visible !important;
|
|
4105
|
+
height: 100%;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.ant-table-tbody .ant-table-placeholder td {
|
|
4109
|
+
height: 100%;
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
table {
|
|
4113
|
+
width: 100% !important;
|
|
4114
|
+
height: 100%;
|
|
4115
|
+
.ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
4116
|
+
padding: 15px 0;
|
|
4117
|
+
}
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
table thead.ant-table-thead {
|
|
4121
|
+
display: none;
|
|
4122
|
+
}
|
|
4123
|
+
}
|
|
4124
|
+
|
|
4125
|
+
.E_t1fisho6 {
|
|
4126
|
+
height: 100%;
|
|
4127
|
+
|
|
4128
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td {
|
|
4129
|
+
padding-top: 6px;
|
|
4130
|
+
padding-bottom: 6px;
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
.active-row td:nth-child(1) {
|
|
4134
|
+
font-weight: 700;
|
|
4135
|
+
}
|
|
4136
|
+
&.has-selection .active-row td:nth-child(2) {
|
|
4137
|
+
font-weight: 700;
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.ant-spin-nested-loading {
|
|
4141
|
+
height: 100%;
|
|
4142
|
+
|
|
4143
|
+
.ant-spin-container {
|
|
4144
|
+
height: 100%;
|
|
4145
|
+
overflow: visible;
|
|
4146
|
+
}
|
|
4147
|
+
.ant-spin {
|
|
4148
|
+
max-height: none;
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
td.ant-table-column-sort {
|
|
4153
|
+
background: transparent;
|
|
3931
4154
|
}
|
|
3932
4155
|
|
|
3933
4156
|
td.ant-table-cell-fix-left,
|
|
@@ -4309,376 +4532,333 @@
|
|
|
4309
4532
|
}
|
|
4310
4533
|
|
|
4311
4534
|
|
|
4312
|
-
.
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
line-height: 18px;
|
|
4319
|
-
height: 18px;
|
|
4320
|
-
}
|
|
4321
|
-
button#{&} {
|
|
4322
|
-
color: #0080FF;
|
|
4323
|
-
height: unset;
|
|
4324
|
-
.button-prefix-icon {
|
|
4325
|
-
margin-right: 4px;
|
|
4326
|
-
}
|
|
4327
|
-
.button-suffix-icon {
|
|
4328
|
-
margin-left: 4px;
|
|
4329
|
-
}
|
|
4330
|
-
|
|
4331
|
-
&:hover,
|
|
4332
|
-
&.__pseudo-states-hover {
|
|
4333
|
-
color: #009DFF;
|
|
4334
|
-
}
|
|
4335
|
-
|
|
4336
|
-
&:active,
|
|
4337
|
-
&.__pseudo-states-active {
|
|
4338
|
-
color: #005ED1;
|
|
4339
|
-
}
|
|
4340
|
-
&.ui-kit-link-disabled {
|
|
4341
|
-
color: #0080FF;
|
|
4342
|
-
}
|
|
4343
|
-
&.ui-kit-link-primary {
|
|
4344
|
-
color: #00122E;
|
|
4345
|
-
|
|
4346
|
-
&:hover,
|
|
4347
|
-
&.__pseudo-states-hover {
|
|
4348
|
-
color: #0080FF;
|
|
4349
|
-
}
|
|
4350
|
-
|
|
4351
|
-
&:active,
|
|
4352
|
-
&.__pseudo-states-active {
|
|
4353
|
-
color: #005ED1;
|
|
4354
|
-
}
|
|
4355
|
-
|
|
4356
|
-
&.ui-kit-link-disabled {
|
|
4357
|
-
color: #00122E;
|
|
4358
|
-
}
|
|
4359
|
-
}
|
|
4535
|
+
.E_c1kghdax {
|
|
4536
|
+
color: $text-primary-light;
|
|
4537
|
+
padding: 7px 12px;
|
|
4538
|
+
display: flex;
|
|
4539
|
+
justify-content: space-between;
|
|
4540
|
+
align-items: center;
|
|
4360
4541
|
|
|
4361
|
-
|
|
4362
|
-
|
|
4542
|
+
&.has-arrow {
|
|
4543
|
+
padding-left: 10px;
|
|
4363
4544
|
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
}
|
|
4545
|
+
.title-wrapper {
|
|
4546
|
+
cursor: pointer;
|
|
4547
|
+
color: $text-light-primary;
|
|
4368
4548
|
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
}
|
|
4549
|
+
&.is-open {
|
|
4550
|
+
color: $text-primary-light;
|
|
4551
|
+
font-weight: 600;
|
|
4373
4552
|
|
|
4374
|
-
|
|
4375
|
-
|
|
4553
|
+
.collapse-arrow {
|
|
4554
|
+
transform: rotate(90deg);
|
|
4376
4555
|
}
|
|
4377
4556
|
}
|
|
4378
4557
|
}
|
|
4379
4558
|
}
|
|
4380
|
-
}
|
|
4381
|
-
|
|
4382
4559
|
|
|
4383
|
-
.
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
padding: 2px 10px;
|
|
4388
|
-
height: 22px;
|
|
4560
|
+
.sub-info {
|
|
4561
|
+
font-size: 12px;
|
|
4562
|
+
line-height: 18px;
|
|
4563
|
+
}
|
|
4389
4564
|
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4565
|
+
.title-wrapper {
|
|
4566
|
+
display: flex;
|
|
4567
|
+
align-items: center;
|
|
4568
|
+
user-select: none;
|
|
4569
|
+
flex-grow: 1;
|
|
4570
|
+
font-size: 12px;
|
|
4571
|
+
line-height: 18px;
|
|
4572
|
+
color: $text-primary-light;
|
|
4573
|
+
font-weight: 700;
|
|
4396
4574
|
}
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
}
|
|
4402
|
-
.#{$prefix}-number {
|
|
4403
|
-
margin-left: 8px;
|
|
4404
|
-
color: #2C385299;
|
|
4405
|
-
}
|
|
4406
|
-
&.ant-tag-blue {
|
|
4407
|
-
background-color: $fill-outstanding-light;
|
|
4408
|
-
.#{$prefix}-icon {
|
|
4409
|
-
background-color: $fill-outstanding-base;
|
|
4410
|
-
}
|
|
4411
|
-
&.tag-hover:hover,
|
|
4412
|
-
&.__pseudo-states-hover {
|
|
4413
|
-
background-color: $fill-outstanding-light-hover;
|
|
4414
|
-
}
|
|
4415
|
-
}
|
|
4416
|
-
&.ant-tag-red {
|
|
4417
|
-
background-color: $fill-serious-light;
|
|
4418
|
-
.#{$prefix}-icon {
|
|
4419
|
-
background-color: $fill-serious-base;
|
|
4420
|
-
}
|
|
4421
|
-
&.tag-hover:hover,
|
|
4422
|
-
&.__pseudo-states-hover {
|
|
4423
|
-
background-color: $fill-serious-light-hover;
|
|
4424
|
-
}
|
|
4425
|
-
}
|
|
4426
|
-
&.ant-tag-yellow {
|
|
4427
|
-
background-color: $fill-notice-light;
|
|
4428
|
-
.#{$prefix}-icon {
|
|
4429
|
-
background-color: $fill-notice-base;
|
|
4430
|
-
}
|
|
4431
|
-
&.tag-hover:hover,
|
|
4432
|
-
&.__pseudo-states-hover {
|
|
4433
|
-
background-color: $fill-notice-light-hover;
|
|
4434
|
-
}
|
|
4435
|
-
}
|
|
4436
|
-
&.ant-tag-green {
|
|
4437
|
-
background-color: $fill-positive-light;
|
|
4438
|
-
.#{$prefix}-icon {
|
|
4439
|
-
background-color: $fill-positive-base;
|
|
4440
|
-
}
|
|
4441
|
-
&.tag-hover:hover,
|
|
4442
|
-
&.__pseudo-states-hover {
|
|
4443
|
-
background-color: $fill-positive-light-hover;
|
|
4444
|
-
}
|
|
4445
|
-
}
|
|
4446
|
-
&.ant-tag-gray {
|
|
4447
|
-
background-color: $fill-neutral-trans-2;
|
|
4448
|
-
.#{$prefix}-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
4449
|
-
background-color: $gray-70;
|
|
4450
|
-
}
|
|
4451
|
-
&.tag-hover:hover,
|
|
4452
|
-
&.__pseudo-states-hover {
|
|
4453
|
-
background-color: $fill-neutral-trans-3-trans-2-hover;
|
|
4454
|
-
}
|
|
4455
|
-
}
|
|
4575
|
+
|
|
4576
|
+
.collapse-arrow {
|
|
4577
|
+
transition: all 50ms ease-out 0ms;
|
|
4578
|
+
margin-right: 2px;
|
|
4456
4579
|
}
|
|
4457
4580
|
}
|
|
4458
4581
|
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
display: inline-
|
|
4582
|
+
|
|
4583
|
+
.E_ckui4s7 {
|
|
4584
|
+
color: $text-primary-light;
|
|
4585
|
+
line-height: 22px;
|
|
4586
|
+
display: inline-flex;
|
|
4587
|
+
.ant-checkbox { height: 22px; display: flex; align-items: center; top: 0; } .ant-checkbox-checked::after { border: none; } &.ant-checkbox-wrapper:hover .ant-checkbox-inner, &.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner { border-color: $fills-light-general-general; } .ant-checkbox .ant-checkbox-inner { border: 1px solid $strokes-light-trans-4; } .ant-checkbox.ant-checkbox-checked, .ant-checkbox.ant-checkbox-indeterminate { .ant-checkbox-inner { border: 1px solid $fills-light-general-general; } } .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner { background: $fills-light-general-general; &:after { background-color: $white; height: 2px; width: 10px; border-radius: 2px; } } &.ant-checkbox-wrapper-disabled { opacity: 0.5; .ant-checkbox-disabled .ant-checkbox-inner { background: $fills-light-trans-3; border-color: $strokes-light-trans-4 !important; } .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after { border-color: $text-primary-light; } .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after { background: $text-primary-light; } } .ant-checkbox + span, .ant-checkbox-disabled + span { padding: 0; .main { display: inline-block; margin-left: 12px; color: $text-primary-light; } .sub { margin-left: 28px; color: $text-secondary-light; } } &.compact { .ant-checkbox + span, .ant-checkbox-disabled + span { .main { margin-left: 8px; } .sub { margin-left: 24px; } } }
|
|
4464
4588
|
}
|
|
4465
4589
|
|
|
4466
4590
|
|
|
4467
|
-
.
|
|
4468
|
-
|
|
4469
|
-
color: $text-secondary-light;
|
|
4591
|
+
.E_c1yd35n {
|
|
4592
|
+
padding: 0 12px 14px 12px;
|
|
4470
4593
|
}
|
|
4471
4594
|
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
height:
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
&.warning {
|
|
4482
|
-
color: #ffa500;
|
|
4483
|
-
}
|
|
4484
|
-
&.success {
|
|
4485
|
-
color: $text-light-positive;
|
|
4486
|
-
}
|
|
4487
|
-
&.danger,
|
|
4488
|
-
&.error {
|
|
4489
|
-
color: $text-light-serious;
|
|
4490
|
-
}
|
|
4491
|
-
&.normal {
|
|
4492
|
-
color: $text-secondary-light;
|
|
4493
|
-
}
|
|
4595
|
+
|
|
4596
|
+
.E_lht19u8 {
|
|
4597
|
+
width: 64px;
|
|
4598
|
+
height: 64px;
|
|
4599
|
+
display: flex;
|
|
4600
|
+
align-items: center;
|
|
4601
|
+
justify-content: center;
|
|
4602
|
+
position: relative;
|
|
4603
|
+
opacity: 0.2;
|
|
4494
4604
|
}
|
|
4495
4605
|
|
|
4496
|
-
.
|
|
4497
|
-
|
|
4498
|
-
|
|
4606
|
+
.E_lk3gkp4 {
|
|
4607
|
+
position: absolute;
|
|
4608
|
+
width: 5px;
|
|
4609
|
+
height: 48px;
|
|
4610
|
+
left: 9.33px;
|
|
4611
|
+
top: 40.5px;
|
|
4612
|
+
|
|
4613
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4614
|
+
border-radius: 5px;
|
|
4615
|
+
transform: rotate(-128deg);
|
|
4616
|
+
transform-origin: top left;
|
|
4617
|
+
|
|
4618
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
4499
4619
|
}
|
|
4500
4620
|
|
|
4501
|
-
.
|
|
4502
|
-
|
|
4503
|
-
|
|
4621
|
+
.E_ll4n94n {
|
|
4622
|
+
position: absolute;
|
|
4623
|
+
width: 5px;
|
|
4624
|
+
height: 48px;
|
|
4625
|
+
left: 40.8px;
|
|
4626
|
+
top: 8.4px;
|
|
4627
|
+
|
|
4628
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4629
|
+
border-radius: 5px;
|
|
4630
|
+
transform: rotate(-8deg);
|
|
4631
|
+
transform-origin: top left;
|
|
4632
|
+
|
|
4633
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
4504
4634
|
}
|
|
4505
4635
|
|
|
4506
|
-
.
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4636
|
+
.E_l17lbdo6 {
|
|
4637
|
+
position: absolute;
|
|
4638
|
+
width: 5px;
|
|
4639
|
+
height: 48px;
|
|
4640
|
+
left: 52.9px;
|
|
4641
|
+
top: 51.8px;
|
|
4642
|
+
|
|
4643
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4644
|
+
border-radius: 5px;
|
|
4645
|
+
transform: rotate(112deg);
|
|
4646
|
+
transform-origin: top left;
|
|
4647
|
+
|
|
4648
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
4519
4649
|
}
|
|
4520
4650
|
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4651
|
+
|
|
4652
|
+
.E_t1tbywr9 {
|
|
4653
|
+
width: 100%;
|
|
4654
|
+
flex: 1;
|
|
4655
|
+
display: flex;
|
|
4656
|
+
flex-direction: column;
|
|
4657
|
+
|
|
4658
|
+
&.medium {
|
|
4659
|
+
.tab-bar {
|
|
4660
|
+
height: 32px;
|
|
4661
|
+
|
|
4662
|
+
.common-tab-bar {
|
|
4663
|
+
height: 32px;
|
|
4664
|
+
|
|
4665
|
+
.tab-item-title {
|
|
4666
|
+
height: 32px;
|
|
4667
|
+
border-top-left-radius: 6px;
|
|
4668
|
+
border-top-right-radius: 6px;
|
|
4669
|
+
padding-right: 16px;
|
|
4670
|
+
padding-left: 16px;
|
|
4671
|
+
font-size: 16px;
|
|
4672
|
+
}
|
|
4538
4673
|
}
|
|
4539
|
-
flex-wrap: nowrap;
|
|
4540
|
-
justify-content: flex-start;
|
|
4541
|
-
background: $fills-light-opaque-1;
|
|
4542
|
-
font-size: 14px;
|
|
4543
|
-
color: $text-secondary-light;
|
|
4544
|
-
border-bottom: 1px solid $fills-light-trans-2;
|
|
4545
4674
|
}
|
|
4546
|
-
|
|
4547
|
-
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
&.small {
|
|
4678
|
+
.tab-bar {
|
|
4679
|
+
height: 24px;
|
|
4680
|
+
|
|
4681
|
+
.common-tab-bar {
|
|
4682
|
+
height: 24px;
|
|
4683
|
+
|
|
4684
|
+
.tab-item-title {
|
|
4685
|
+
height: 24px;
|
|
4686
|
+
border-top-left-radius: 4px;
|
|
4687
|
+
border-top-right-radius: 4px;
|
|
4688
|
+
padding-right: 12px;
|
|
4689
|
+
padding-left: 12px;
|
|
4690
|
+
font-size: 14px;
|
|
4691
|
+
}
|
|
4692
|
+
}
|
|
4548
4693
|
}
|
|
4549
|
-
|
|
4694
|
+
}
|
|
4695
|
+
|
|
4696
|
+
.tab-bar {
|
|
4697
|
+
max-width: 100%;
|
|
4698
|
+
display: flex;
|
|
4699
|
+
place-items: center;
|
|
4700
|
+
border-bottom: 1px solid $fills-trans-terdiary-light;
|
|
4701
|
+
|
|
4702
|
+
.common-tab-bar {
|
|
4703
|
+
overflow: hidden;
|
|
4550
4704
|
display: flex;
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
flex-basis: 100%;
|
|
4558
|
-
margin: 12px 0 0;
|
|
4559
|
-
order: 99;
|
|
4560
|
-
color: $text-secondary-light;
|
|
4705
|
+
place-items: center;
|
|
4706
|
+
|
|
4707
|
+
.tab-item-title {
|
|
4708
|
+
&:first-child:not(.__selected):not(:hover) {
|
|
4709
|
+
padding-left: 0px;
|
|
4710
|
+
}
|
|
4561
4711
|
}
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4712
|
+
|
|
4713
|
+
& + .tab-item-title {
|
|
4714
|
+
margin-left: 12px;
|
|
4715
|
+
position: relative;
|
|
4716
|
+
|
|
4717
|
+
&::before {
|
|
4718
|
+
content: "";
|
|
4719
|
+
width: 1px;
|
|
4720
|
+
height: 24px;
|
|
4721
|
+
background: $strokes-light-trans-3;
|
|
4722
|
+
position: absolute;
|
|
4723
|
+
left: -6px;
|
|
4724
|
+
top: 50%;
|
|
4725
|
+
transform: translateY(-50%);
|
|
4726
|
+
}
|
|
4567
4727
|
}
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4730
|
+
.tab-item-title {
|
|
4731
|
+
flex-shrink: 0;
|
|
4732
|
+
display: flex;
|
|
4733
|
+
place-items: center;
|
|
4734
|
+
cursor: pointer;
|
|
4735
|
+
color: $text-neutral-secondary;
|
|
4736
|
+
transition:
|
|
4737
|
+
color 100ms ease-out,
|
|
4738
|
+
background-color 100ms ease-out,
|
|
4739
|
+
padding-left 320ms ease 80ms;
|
|
4740
|
+
|
|
4568
4741
|
&:hover {
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
background-color: $fills-light-general-general-light;
|
|
4742
|
+
padding-left: 16px;
|
|
4743
|
+
color: $text-light-general;
|
|
4744
|
+
background: $fill-outstanding-lighthover;
|
|
4573
4745
|
}
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
overflow: hidden;
|
|
4578
|
-
.cell-description {
|
|
4579
|
-
color: $text-secondary-light;
|
|
4580
|
-
margin: 0;
|
|
4746
|
+
|
|
4747
|
+
& + .tab-item-title {
|
|
4748
|
+
margin-left: 2px;
|
|
4581
4749
|
}
|
|
4582
4750
|
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4751
|
+
&.more {
|
|
4752
|
+
&:not(.__selected) {
|
|
4753
|
+
width: 16px;
|
|
4754
|
+
height: 16px;
|
|
4755
|
+
padding: 0;
|
|
4756
|
+
border-radius: 2px;
|
|
4757
|
+
margin-left: 8px;
|
|
4586
4758
|
}
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
text-align: $align-position;
|
|
4591
|
-
}
|
|
4759
|
+
|
|
4760
|
+
&.__selected.tab-title-text {
|
|
4761
|
+
margin-left: 8px;
|
|
4592
4762
|
}
|
|
4593
4763
|
}
|
|
4594
4764
|
|
|
4595
|
-
&.
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
@include text-align-style(left);
|
|
4600
|
-
}
|
|
4601
|
-
&.align-right {
|
|
4602
|
-
@include text-align-style(right);
|
|
4765
|
+
&.__selected {
|
|
4766
|
+
padding-left: 16px;
|
|
4767
|
+
background: $fills-light-general-general-light;
|
|
4768
|
+
color: $text-light-general;
|
|
4603
4769
|
}
|
|
4604
4770
|
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
}
|
|
4608
|
-
}
|
|
4609
|
-
.ant-list-item-action {
|
|
4610
|
-
padding: 4px;
|
|
4611
|
-
width: 24px;
|
|
4612
|
-
height: 24px;
|
|
4613
|
-
overflow: hidden;
|
|
4614
|
-
li {
|
|
4615
|
-
padding: 0;
|
|
4771
|
+
&.__hidden {
|
|
4772
|
+
display: none;
|
|
4616
4773
|
}
|
|
4617
4774
|
}
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4775
|
+
}
|
|
4776
|
+
}
|
|
4777
|
+
|
|
4778
|
+
.E_ti12z2 {
|
|
4779
|
+
&.ant-dropdown-open {
|
|
4780
|
+
color: $text-light-general;
|
|
4781
|
+
background: $fills-light-trans-3;
|
|
4782
|
+
}
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
.E_m19lu3v {
|
|
4786
|
+
cursor: default;
|
|
4787
|
+
& .menu-wrapper {
|
|
4788
|
+
min-width: 160px;
|
|
4789
|
+
max-width: 400px;
|
|
4790
|
+
padding: 6px;
|
|
4791
|
+
background: $white;
|
|
4792
|
+
box-shadow:
|
|
4793
|
+
0px 0px 10px rgba(107, 125, 153, 0.18),
|
|
4794
|
+
0px 12px 40px rgba(45, 58, 86, 0.3);
|
|
4795
|
+
border-radius: 8px;
|
|
4796
|
+
max-height: calc(100vh - 250px);
|
|
4797
|
+
overflow: auto;
|
|
4798
|
+
|
|
4799
|
+
& .tab-menu-item {
|
|
4800
|
+
display: flex;
|
|
4801
|
+
place-items: center;
|
|
4802
|
+
width: var(--itemWidth);
|
|
4803
|
+
|
|
4804
|
+
& + .tab-menu-item {
|
|
4805
|
+
margin-top: 8px;
|
|
4625
4806
|
}
|
|
4626
|
-
.eagle-table-form-cell {
|
|
4627
|
-
.ant-input,
|
|
4628
|
-
.ant-select-selector {
|
|
4629
|
-
border-radius: 5px;
|
|
4630
|
-
font-size: 12px;
|
|
4631
|
-
}
|
|
4632
|
-
.ant-input-affix-wrapper {
|
|
4633
|
-
font-size: inherit;
|
|
4634
|
-
}
|
|
4635
4807
|
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4808
|
+
&.__selected {
|
|
4809
|
+
padding: 6px;
|
|
4810
|
+
background: $fills-light-general-general-light;
|
|
4811
|
+
color: $text-light-general;
|
|
4812
|
+
|
|
4813
|
+
&E_l1fbkbzo {
|
|
4814
|
+
@include Inter(bold !important);
|
|
4640
4815
|
}
|
|
4641
4816
|
}
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4817
|
+
|
|
4818
|
+
&.ant-dropdown-menu-item {
|
|
4819
|
+
padding: 5px 12px;
|
|
4820
|
+
border-radius: 4px;
|
|
4821
|
+
}
|
|
4822
|
+
|
|
4823
|
+
&.ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover {
|
|
4824
|
+
color: $text-light-general;
|
|
4825
|
+
background: $fills-light-trans-3;
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
&-text {
|
|
4829
|
+
text-align: left;
|
|
4830
|
+
flex: 1;
|
|
4831
|
+
overflow: hidden;
|
|
4832
|
+
text-overflow: ellipsis;
|
|
4833
|
+
white-space: nowrap;
|
|
4653
4834
|
}
|
|
4654
4835
|
}
|
|
4655
4836
|
}
|
|
4656
4837
|
}
|
|
4657
4838
|
|
|
4658
|
-
.
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4839
|
+
.E_i1bmwe2m {
|
|
4840
|
+
margin: auto;
|
|
4841
|
+
cursor: pointer;
|
|
4842
|
+
line-height: normal;
|
|
4843
|
+
height: 16px;
|
|
4844
|
+
margin-right: 3px;
|
|
4663
4845
|
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
height:
|
|
4667
|
-
}
|
|
4668
|
-
& > span.maximum-desc {
|
|
4669
|
-
display: none;
|
|
4670
|
-
color: $text-secondary-light;
|
|
4671
|
-
&.disabled {
|
|
4672
|
-
display: inline;
|
|
4673
|
-
}
|
|
4846
|
+
.icon-inner {
|
|
4847
|
+
display: block;
|
|
4848
|
+
height: 16px;
|
|
4674
4849
|
}
|
|
4675
4850
|
}
|
|
4676
4851
|
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4852
|
+
|
|
4853
|
+
.E_w7ob4th {
|
|
4854
|
+
&.outside-tag {
|
|
4855
|
+
padding-left: 0;
|
|
4856
|
+
.inside-tag {
|
|
4857
|
+
border-radius: 4px 0 0 4px;
|
|
4858
|
+
padding-right: 4px;
|
|
4859
|
+
margin-right: 4px;
|
|
4860
|
+
}
|
|
4861
|
+
}
|
|
4682
4862
|
}
|
|
4683
4863
|
|
|
4684
4864
|
|
|
@@ -4906,12 +5086,6 @@
|
|
|
4906
5086
|
}
|
|
4907
5087
|
|
|
4908
5088
|
|
|
4909
|
-
.E_i1g85yz3 {
|
|
4910
|
-
margin-right: 4px;
|
|
4911
|
-
height: 16px;
|
|
4912
|
-
}
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
5089
|
.E_slr2ynn {
|
|
4916
5090
|
padding: 0 8px;
|
|
4917
5091
|
height: 18px;
|
|
@@ -4934,47 +5108,12 @@
|
|
|
4934
5108
|
.E_n1afl31m {
|
|
4935
5109
|
&.ant-tag.ant-tag-gray {
|
|
4936
5110
|
font-weight: 700;
|
|
4937
|
-
color: $text-neutral-primary;
|
|
4938
|
-
background-color: $fill-neutral-trans-1;
|
|
4939
|
-
border: 1px solid $stroke-neutral-trans-2;
|
|
4940
|
-
word-break: break-all;
|
|
4941
|
-
display: inline;
|
|
4942
|
-
white-space: normal;
|
|
4943
|
-
}
|
|
4944
|
-
}
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
.E_t13ef470 {
|
|
4948
|
-
height: 100%;
|
|
4949
|
-
.table-loading-item {
|
|
4950
|
-
padding: 12px 4px;
|
|
4951
|
-
border-bottom: 1px solid rgba($gray-50, 0.18);
|
|
4952
|
-
display: flex;
|
|
4953
|
-
|
|
4954
|
-
> * {
|
|
4955
|
-
height: 16px;
|
|
4956
|
-
margin: 4px;
|
|
4957
|
-
background: rgba($gray-50, 0.18);
|
|
4958
|
-
border-radius: 2px;
|
|
4959
|
-
}
|
|
4960
|
-
.checkbox-loading {
|
|
4961
|
-
width: 16px;
|
|
4962
|
-
}
|
|
4963
|
-
.td-loading {
|
|
4964
|
-
flex: 1;
|
|
4965
|
-
}
|
|
4966
|
-
}
|
|
4967
|
-
|
|
4968
|
-
:nth-child(1) {
|
|
4969
|
-
padding: 8px 4px;
|
|
4970
|
-
> * {
|
|
4971
|
-
background: rgba($gray-70, 0.18);
|
|
4972
|
-
}
|
|
4973
|
-
}
|
|
4974
|
-
:nth-child(1) {
|
|
4975
|
-
> * {
|
|
4976
|
-
background: rgba($gray-60, 0.18);
|
|
4977
|
-
}
|
|
5111
|
+
color: $text-neutral-primary;
|
|
5112
|
+
background-color: $fill-neutral-trans-1;
|
|
5113
|
+
border: 1px solid $stroke-neutral-trans-2;
|
|
5114
|
+
word-break: break-all;
|
|
5115
|
+
display: inline;
|
|
5116
|
+
white-space: normal;
|
|
4978
5117
|
}
|
|
4979
5118
|
}
|
|
4980
5119
|
|
|
@@ -5076,10 +5215,269 @@
|
|
|
5076
5215
|
justify-content: center;
|
|
5077
5216
|
row-gap: var(--p1cmxsf7-0);
|
|
5078
5217
|
|
|
5079
|
-
.antd5-progress-line {
|
|
5080
|
-
font-size: 0;
|
|
5081
|
-
margin-bottom: unset;
|
|
5082
|
-
margin-inline-end: unset;
|
|
5218
|
+
.antd5-progress-line {
|
|
5219
|
+
font-size: 0;
|
|
5220
|
+
margin-bottom: unset;
|
|
5221
|
+
margin-inline-end: unset;
|
|
5222
|
+
}
|
|
5223
|
+
}
|
|
5224
|
+
|
|
5225
|
+
|
|
5226
|
+
.E_i1g85yz3 {
|
|
5227
|
+
margin-right: 4px;
|
|
5228
|
+
height: 16px;
|
|
5229
|
+
}
|
|
5230
|
+
|
|
5231
|
+
|
|
5232
|
+
.E_t1dtlqs1 {
|
|
5233
|
+
margin-bottom: 4px;
|
|
5234
|
+
color: $text-secondary-light;
|
|
5235
|
+
}
|
|
5236
|
+
|
|
5237
|
+
.E_s1ese5oy {
|
|
5238
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5239
|
+
line-height: 32px;
|
|
5240
|
+
height: 32px;
|
|
5241
|
+
margin-bottom: 0;
|
|
5242
|
+
&.primary,
|
|
5243
|
+
&.info {
|
|
5244
|
+
color: $text-light-general;
|
|
5245
|
+
}
|
|
5246
|
+
&.warning {
|
|
5247
|
+
color: #ffa500;
|
|
5248
|
+
}
|
|
5249
|
+
&.success {
|
|
5250
|
+
color: $text-light-positive;
|
|
5251
|
+
}
|
|
5252
|
+
&.danger,
|
|
5253
|
+
&.error {
|
|
5254
|
+
color: $text-light-serious;
|
|
5255
|
+
}
|
|
5256
|
+
&.normal {
|
|
5257
|
+
color: $text-secondary-light;
|
|
5258
|
+
}
|
|
5259
|
+
}
|
|
5260
|
+
|
|
5261
|
+
.E_b1ibis43 {
|
|
5262
|
+
margin-bottom: 0;
|
|
5263
|
+
color: $text-light-primary;
|
|
5264
|
+
}
|
|
5265
|
+
|
|
5266
|
+
.E_b11xxjd2 {
|
|
5267
|
+
line-height: 32px;
|
|
5268
|
+
margin-right: 6px;
|
|
5269
|
+
}
|
|
5270
|
+
|
|
5271
|
+
.E_bsub5bw {
|
|
5272
|
+
&.with-description {
|
|
5273
|
+
height: 24px;
|
|
5274
|
+
flex: 1;
|
|
5275
|
+
position: relative;
|
|
5276
|
+
top: -7px;
|
|
5277
|
+
}
|
|
5278
|
+
p {
|
|
5279
|
+
width: 100%;
|
|
5280
|
+
overflow: hidden;
|
|
5281
|
+
text-overflow: ellipsis;
|
|
5282
|
+
white-space: nowrap;
|
|
5283
|
+
}
|
|
5284
|
+
}
|
|
5285
|
+
|
|
5286
|
+
.E_tmoyoag {
|
|
5287
|
+
border: 1px solid $strokes-light-trans-2;
|
|
5288
|
+
border-radius: 8px;
|
|
5289
|
+
overflow: auto;
|
|
5290
|
+
.ant-list {
|
|
5291
|
+
position: relative;
|
|
5292
|
+
.ant-list-item:last-child {
|
|
5293
|
+
border-bottom: none;
|
|
5294
|
+
}
|
|
5295
|
+
.eagle-table-form-header {
|
|
5296
|
+
position: sticky;
|
|
5297
|
+
top: 0;
|
|
5298
|
+
z-index: $eagle-table-form-header-index;
|
|
5299
|
+
display: flex;
|
|
5300
|
+
padding: 8px;
|
|
5301
|
+
& {
|
|
5302
|
+
align-items: inherit;
|
|
5303
|
+
}
|
|
5304
|
+
flex-wrap: nowrap;
|
|
5305
|
+
justify-content: flex-start;
|
|
5306
|
+
background: $fills-light-opaque-1;
|
|
5307
|
+
font-size: 14px;
|
|
5308
|
+
color: $text-secondary-light;
|
|
5309
|
+
border-bottom: 1px solid $fills-light-trans-2;
|
|
5310
|
+
}
|
|
5311
|
+
.eagle-table-form-header .eagle-table-form-cell > p {
|
|
5312
|
+
margin-bottom: 0;
|
|
5313
|
+
}
|
|
5314
|
+
.eagle-table-form-row {
|
|
5315
|
+
display: flex;
|
|
5316
|
+
justify-content: flex-start;
|
|
5317
|
+
align-items: flex-start;
|
|
5318
|
+
flex-wrap: wrap;
|
|
5319
|
+
padding: 8px;
|
|
5320
|
+
border: none;
|
|
5321
|
+
.row-description {
|
|
5322
|
+
flex-basis: 100%;
|
|
5323
|
+
margin: 12px 0 0;
|
|
5324
|
+
order: 99;
|
|
5325
|
+
color: $text-secondary-light;
|
|
5326
|
+
}
|
|
5327
|
+
.row-error-message {
|
|
5328
|
+
color: $text-light-serious;
|
|
5329
|
+
flex-basis: 100%;
|
|
5330
|
+
order: 98;
|
|
5331
|
+
margin: 12px 0 0;
|
|
5332
|
+
}
|
|
5333
|
+
&:hover {
|
|
5334
|
+
background-color: $fills-light-trans-1;
|
|
5335
|
+
}
|
|
5336
|
+
&.isDragging {
|
|
5337
|
+
background-color: $fills-light-general-general-light;
|
|
5338
|
+
}
|
|
5339
|
+
}
|
|
5340
|
+
.eagle-table-form-cell {
|
|
5341
|
+
flex: 1 0 0;
|
|
5342
|
+
overflow: hidden;
|
|
5343
|
+
.cell-description {
|
|
5344
|
+
color: $text-secondary-light;
|
|
5345
|
+
margin: 0;
|
|
5346
|
+
}
|
|
5347
|
+
|
|
5348
|
+
@mixin text-align-style($align-position) {
|
|
5349
|
+
& > * {
|
|
5350
|
+
text-align: $align-position;
|
|
5351
|
+
}
|
|
5352
|
+
.ant-form-item-control-input-content {
|
|
5353
|
+
&,
|
|
5354
|
+
& > * {
|
|
5355
|
+
text-align: $align-position;
|
|
5356
|
+
}
|
|
5357
|
+
}
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5360
|
+
&.align-center {
|
|
5361
|
+
@include text-align-style(center);
|
|
5362
|
+
}
|
|
5363
|
+
&.align-left {
|
|
5364
|
+
@include text-align-style(left);
|
|
5365
|
+
}
|
|
5366
|
+
&.align-right {
|
|
5367
|
+
@include text-align-style(right);
|
|
5368
|
+
}
|
|
5369
|
+
|
|
5370
|
+
&:not(:last-of-type) {
|
|
5371
|
+
margin-right: 8px;
|
|
5372
|
+
}
|
|
5373
|
+
}
|
|
5374
|
+
.ant-list-item-action {
|
|
5375
|
+
padding: 4px;
|
|
5376
|
+
width: 24px;
|
|
5377
|
+
height: 24px;
|
|
5378
|
+
overflow: hidden;
|
|
5379
|
+
li {
|
|
5380
|
+
padding: 0;
|
|
5381
|
+
}
|
|
5382
|
+
}
|
|
5383
|
+
.delete-row-icon.disabled {
|
|
5384
|
+
cursor: not-allowed;
|
|
5385
|
+
opacity: 0.5;
|
|
5386
|
+
}
|
|
5387
|
+
&.size-default {
|
|
5388
|
+
.ant-list-item-action {
|
|
5389
|
+
margin: 0;
|
|
5390
|
+
}
|
|
5391
|
+
.eagle-table-form-cell {
|
|
5392
|
+
.ant-input,
|
|
5393
|
+
.ant-select-selector {
|
|
5394
|
+
border-radius: 5px;
|
|
5395
|
+
font-size: 12px;
|
|
5396
|
+
}
|
|
5397
|
+
.ant-input-affix-wrapper {
|
|
5398
|
+
font-size: inherit;
|
|
5399
|
+
}
|
|
5400
|
+
|
|
5401
|
+
.ant-form-item-control-input {
|
|
5402
|
+
min-height: 24px;
|
|
5403
|
+
font-size: 12px;
|
|
5404
|
+
position: relative;
|
|
5405
|
+
}
|
|
5406
|
+
}
|
|
5407
|
+
}
|
|
5408
|
+
}
|
|
5409
|
+
&.row-split-by-border {
|
|
5410
|
+
.eagle-table-form-row {
|
|
5411
|
+
border-bottom: 1px solid $fills-light-trans-2;
|
|
5412
|
+
}
|
|
5413
|
+
}
|
|
5414
|
+
&.row-split-by-zebraMarking {
|
|
5415
|
+
.draggable-container {
|
|
5416
|
+
& > :nth-child(2n) {
|
|
5417
|
+
background-color: $fills-trans-primary-light;
|
|
5418
|
+
}
|
|
5419
|
+
}
|
|
5420
|
+
}
|
|
5421
|
+
}
|
|
5422
|
+
|
|
5423
|
+
.E_a138syjm {
|
|
5424
|
+
display: flex;
|
|
5425
|
+
align-items: center;
|
|
5426
|
+
margin-top: 8px;
|
|
5427
|
+
gap: 8px;
|
|
5428
|
+
|
|
5429
|
+
button.ant-btn {
|
|
5430
|
+
padding: 2px 8px;
|
|
5431
|
+
height: 24px;
|
|
5432
|
+
}
|
|
5433
|
+
& > span.maximum-desc {
|
|
5434
|
+
display: none;
|
|
5435
|
+
color: $text-secondary-light;
|
|
5436
|
+
&.disabled {
|
|
5437
|
+
display: inline;
|
|
5438
|
+
}
|
|
5439
|
+
}
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5442
|
+
.E_d77i8u0 {
|
|
5443
|
+
width: 24px;
|
|
5444
|
+
height: 24px;
|
|
5445
|
+
padding: 4px;
|
|
5446
|
+
margin-right: 8px;
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
|
|
5450
|
+
.E_t13ef470 {
|
|
5451
|
+
height: 100%;
|
|
5452
|
+
.table-loading-item {
|
|
5453
|
+
padding: 12px 4px;
|
|
5454
|
+
border-bottom: 1px solid rgba($gray-50, 0.18);
|
|
5455
|
+
display: flex;
|
|
5456
|
+
|
|
5457
|
+
> * {
|
|
5458
|
+
height: 16px;
|
|
5459
|
+
margin: 4px;
|
|
5460
|
+
background: rgba($gray-50, 0.18);
|
|
5461
|
+
border-radius: 2px;
|
|
5462
|
+
}
|
|
5463
|
+
.checkbox-loading {
|
|
5464
|
+
width: 16px;
|
|
5465
|
+
}
|
|
5466
|
+
.td-loading {
|
|
5467
|
+
flex: 1;
|
|
5468
|
+
}
|
|
5469
|
+
}
|
|
5470
|
+
|
|
5471
|
+
:nth-child(1) {
|
|
5472
|
+
padding: 8px 4px;
|
|
5473
|
+
> * {
|
|
5474
|
+
background: rgba($gray-70, 0.18);
|
|
5475
|
+
}
|
|
5476
|
+
}
|
|
5477
|
+
:nth-child(1) {
|
|
5478
|
+
> * {
|
|
5479
|
+
background: rgba($gray-60, 0.18);
|
|
5480
|
+
}
|
|
5083
5481
|
}
|
|
5084
5482
|
}
|
|
5085
5483
|
|
|
@@ -5536,65 +5934,12 @@
|
|
|
5536
5934
|
}
|
|
5537
5935
|
|
|
5538
5936
|
|
|
5539
|
-
.E_t59qhqp {
|
|
5540
|
-
padding: 0px;
|
|
5541
|
-
padding-top: 5px;
|
|
5542
|
-
padding-left: 5px;
|
|
5543
|
-
|
|
5544
|
-
.ant-timeline-item {
|
|
5545
|
-
margin-bottom: 16px;
|
|
5546
|
-
padding-bottom: 0px;
|
|
5547
|
-
}
|
|
5548
|
-
.ant-timeline-item-last,
|
|
5549
|
-
.compact.ant-timeline-item-last {
|
|
5550
|
-
margin-bottom: 0;
|
|
5551
|
-
}
|
|
5552
|
-
.compact.ant-timeline-item {
|
|
5553
|
-
margin-bottom: 12px;
|
|
5554
|
-
}
|
|
5555
|
-
.info-action {
|
|
5556
|
-
align-self: baseline;
|
|
5557
|
-
}
|
|
5558
|
-
}
|
|
5559
|
-
|
|
5560
|
-
.E_t2e44lg {
|
|
5561
|
-
.ant-timeline-item-content {
|
|
5562
|
-
margin-left: 18px;
|
|
5563
|
-
}
|
|
5564
|
-
.item-time {
|
|
5565
|
-
display: flex;
|
|
5566
|
-
flex-direction: column;
|
|
5567
|
-
gap: 4px;
|
|
5568
|
-
margin-top: 4px;
|
|
5569
|
-
}
|
|
5570
|
-
|
|
5571
|
-
&:last-child {
|
|
5572
|
-
.ant-timeline-item-content {
|
|
5573
|
-
padding-bottom: 0;
|
|
5574
|
-
}
|
|
5575
|
-
}
|
|
5576
|
-
}
|
|
5577
|
-
|
|
5578
|
-
.E_e14ua30y {
|
|
5579
|
-
display: flex;
|
|
5580
|
-
flex-direction: column;
|
|
5581
|
-
align-items: center;
|
|
5582
|
-
justify-content: center;
|
|
5583
|
-
}
|
|
5584
|
-
|
|
5585
|
-
.E_s1ikqzph {
|
|
5586
|
-
color: #2C3852BF;
|
|
5587
|
-
}
|
|
5588
|
-
|
|
5589
|
-
.E_i15astnl {
|
|
5590
|
-
color: #00122E;
|
|
5591
|
-
}
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
5937
|
.E_icab5o7 {
|
|
5595
5938
|
--modal-to-viewport-margin: 10px;
|
|
5596
5939
|
--modal-body-padding-bottom: 40px;
|
|
5597
5940
|
--modal-footer-height: 124px;
|
|
5941
|
+
--modal-empty-footer-height: 40px;
|
|
5942
|
+
|
|
5598
5943
|
&.ant-modal {
|
|
5599
5944
|
height: calc(100% - var(--modal-to-viewport-margin) * 2);
|
|
5600
5945
|
width: calc(100% - var(--modal-to-viewport-margin) * 2);
|
|
@@ -5662,6 +6007,21 @@
|
|
|
5662
6007
|
height: var(--modal-footer-height);
|
|
5663
6008
|
padding: 24px 0 60px 0;
|
|
5664
6009
|
}
|
|
6010
|
+
|
|
6011
|
+
&.no-footer {
|
|
6012
|
+
.ant-modal-body {
|
|
6013
|
+
padding-bottom: 0;
|
|
6014
|
+
.middle {
|
|
6015
|
+
padding-bottom: 0;
|
|
6016
|
+
}
|
|
6017
|
+
}
|
|
6018
|
+
.ant-modal-footer {
|
|
6019
|
+
padding: 0;
|
|
6020
|
+
border-top: none;
|
|
6021
|
+
height: var(--modal-empty-footer-height);
|
|
6022
|
+
content: "";
|
|
6023
|
+
}
|
|
6024
|
+
}
|
|
5665
6025
|
}
|
|
5666
6026
|
}
|
|
5667
6027
|
|
|
@@ -5798,6 +6158,61 @@
|
|
|
5798
6158
|
}
|
|
5799
6159
|
|
|
5800
6160
|
|
|
6161
|
+
.E_t59qhqp {
|
|
6162
|
+
padding: 0px;
|
|
6163
|
+
padding-top: 5px;
|
|
6164
|
+
padding-left: 5px;
|
|
6165
|
+
|
|
6166
|
+
.ant-timeline-item {
|
|
6167
|
+
margin-bottom: 16px;
|
|
6168
|
+
padding-bottom: 0px;
|
|
6169
|
+
}
|
|
6170
|
+
.ant-timeline-item-last,
|
|
6171
|
+
.compact.ant-timeline-item-last {
|
|
6172
|
+
margin-bottom: 0;
|
|
6173
|
+
}
|
|
6174
|
+
.compact.ant-timeline-item {
|
|
6175
|
+
margin-bottom: 12px;
|
|
6176
|
+
}
|
|
6177
|
+
.info-action {
|
|
6178
|
+
align-self: baseline;
|
|
6179
|
+
}
|
|
6180
|
+
}
|
|
6181
|
+
|
|
6182
|
+
.E_t2e44lg {
|
|
6183
|
+
.ant-timeline-item-content {
|
|
6184
|
+
margin-left: 18px;
|
|
6185
|
+
}
|
|
6186
|
+
.item-time {
|
|
6187
|
+
display: flex;
|
|
6188
|
+
flex-direction: column;
|
|
6189
|
+
gap: 4px;
|
|
6190
|
+
margin-top: 4px;
|
|
6191
|
+
}
|
|
6192
|
+
|
|
6193
|
+
&:last-child {
|
|
6194
|
+
.ant-timeline-item-content {
|
|
6195
|
+
padding-bottom: 0;
|
|
6196
|
+
}
|
|
6197
|
+
}
|
|
6198
|
+
}
|
|
6199
|
+
|
|
6200
|
+
.E_e14ua30y {
|
|
6201
|
+
display: flex;
|
|
6202
|
+
flex-direction: column;
|
|
6203
|
+
align-items: center;
|
|
6204
|
+
justify-content: center;
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
.E_s1ikqzph {
|
|
6208
|
+
color: #2C3852BF;
|
|
6209
|
+
}
|
|
6210
|
+
|
|
6211
|
+
.E_i15astnl {
|
|
6212
|
+
color: #00122E;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
|
|
5801
6216
|
.E_s20iney {
|
|
5802
6217
|
&.skeleton-box {
|
|
5803
6218
|
display: flex;
|
|
@@ -5831,18 +6246,60 @@
|
|
|
5831
6246
|
}
|
|
5832
6247
|
|
|
5833
6248
|
|
|
6249
|
+
.E_sqv6dmy {
|
|
6250
|
+
display: flex;
|
|
6251
|
+
justify-content: flex-end;
|
|
6252
|
+
}
|
|
6253
|
+
|
|
6254
|
+
.E_p1rm8wzb {
|
|
6255
|
+
margin-right: 8px;
|
|
6256
|
+
}
|
|
6257
|
+
|
|
6258
|
+
.E_sd7qcf4 {
|
|
6259
|
+
height: 100%;
|
|
6260
|
+
width: 100%;
|
|
6261
|
+
overflow: auto;
|
|
6262
|
+
}
|
|
6263
|
+
|
|
6264
|
+
.E_r1fxc9gq {
|
|
6265
|
+
&.right {
|
|
6266
|
+
overflow: auto;
|
|
6267
|
+
padding-right: 2px;
|
|
6268
|
+
width: calc(192px + 6px + 2px);
|
|
6269
|
+
height: fit-content;
|
|
6270
|
+
max-height: calc(
|
|
6271
|
+
100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(
|
|
6272
|
+
--modal-body-padding-bottom
|
|
6273
|
+
) - var(--modal-footer-height)
|
|
6274
|
+
);
|
|
6275
|
+
scrollbar-gutter: stable;
|
|
6276
|
+
&::-webkit-scrollbar {
|
|
6277
|
+
width: 6px;
|
|
6278
|
+
}
|
|
6279
|
+
&::-webkit-scrollbar-track {
|
|
6280
|
+
background: #E1E6F199;
|
|
6281
|
+
}
|
|
6282
|
+
&::-webkit-scrollbar-thumb {
|
|
6283
|
+
background: #ACBAD399;
|
|
6284
|
+
border-radius: 8px;
|
|
6285
|
+
}
|
|
6286
|
+
}
|
|
6287
|
+
}
|
|
6288
|
+
|
|
6289
|
+
|
|
5834
6290
|
.E_dxyv8bv {
|
|
5835
6291
|
--footer-height: 80px;
|
|
5836
6292
|
--modal-content-width: 492px;
|
|
5837
6293
|
--modal-content-min-height: 160px;
|
|
5838
6294
|
--modal-content-max-height: calc(
|
|
5839
|
-
100vh -
|
|
5840
|
-
); // Only consider vertical margins, do not subtract header and footer height
|
|
6295
|
+
100vh - 80px
|
|
6296
|
+
); // Only consider vertical margins(top 40px, bottom 40px), do not subtract header and footer height
|
|
5841
6297
|
--modal-header-padding: 32px 40px 0;
|
|
5842
6298
|
--modal-content-padding-top: 32px;
|
|
5843
6299
|
--modal-content-padding-bottom: 32px;
|
|
5844
6300
|
--modal-content-padding-x: 40px;
|
|
5845
6301
|
--modal-footer-padding: 0 40px;
|
|
6302
|
+
--modal-empty-footer-height: 32px;
|
|
5846
6303
|
|
|
5847
6304
|
padding-bottom: 0;
|
|
5848
6305
|
|
|
@@ -5918,6 +6375,17 @@
|
|
|
5918
6375
|
font-weight: 700;
|
|
5919
6376
|
}
|
|
5920
6377
|
}
|
|
6378
|
+
|
|
6379
|
+
&.no-footer {
|
|
6380
|
+
.ant-modal-body {
|
|
6381
|
+
padding-bottom: 0;
|
|
6382
|
+
}
|
|
6383
|
+
.ant-modal-footer {
|
|
6384
|
+
box-shadow: none;
|
|
6385
|
+
height: var(--modal-empty-footer-height);
|
|
6386
|
+
content: "";
|
|
6387
|
+
}
|
|
6388
|
+
}
|
|
5921
6389
|
}
|
|
5922
6390
|
|
|
5923
6391
|
.E_fbgo4wr {
|
|
@@ -5974,47 +6442,6 @@
|
|
|
5974
6442
|
}
|
|
5975
6443
|
|
|
5976
6444
|
|
|
5977
|
-
.E_sqv6dmy {
|
|
5978
|
-
display: flex;
|
|
5979
|
-
justify-content: flex-end;
|
|
5980
|
-
}
|
|
5981
|
-
|
|
5982
|
-
.E_p1rm8wzb {
|
|
5983
|
-
margin-right: 8px;
|
|
5984
|
-
}
|
|
5985
|
-
|
|
5986
|
-
.E_sd7qcf4 {
|
|
5987
|
-
height: 100%;
|
|
5988
|
-
width: 100%;
|
|
5989
|
-
overflow: auto;
|
|
5990
|
-
}
|
|
5991
|
-
|
|
5992
|
-
.E_r1fxc9gq {
|
|
5993
|
-
&.right {
|
|
5994
|
-
overflow: auto;
|
|
5995
|
-
padding-right: 2px;
|
|
5996
|
-
width: calc(192px + 6px + 2px);
|
|
5997
|
-
height: fit-content;
|
|
5998
|
-
max-height: calc(
|
|
5999
|
-
100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(
|
|
6000
|
-
--modal-body-padding-bottom
|
|
6001
|
-
) - var(--modal-footer-height)
|
|
6002
|
-
);
|
|
6003
|
-
scrollbar-gutter: stable;
|
|
6004
|
-
&::-webkit-scrollbar {
|
|
6005
|
-
width: 6px;
|
|
6006
|
-
}
|
|
6007
|
-
&::-webkit-scrollbar-track {
|
|
6008
|
-
background: #E1E6F199;
|
|
6009
|
-
}
|
|
6010
|
-
&::-webkit-scrollbar-thumb {
|
|
6011
|
-
background: #ACBAD399;
|
|
6012
|
-
border-radius: 8px;
|
|
6013
|
-
}
|
|
6014
|
-
}
|
|
6015
|
-
}
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
6445
|
.E_t1g36k2w {
|
|
6019
6446
|
overflow: hidden;
|
|
6020
6447
|
height: 100%;
|
|
@@ -6030,44 +6457,18 @@
|
|
|
6030
6457
|
background: #EDF1FA99;
|
|
6031
6458
|
border-radius: 2px;
|
|
6032
6459
|
}
|
|
6033
|
-
.checkbox-loading {
|
|
6034
|
-
width: 16px;
|
|
6035
|
-
}
|
|
6036
|
-
.td-loading {
|
|
6037
|
-
flex: 1;
|
|
6038
|
-
}
|
|
6039
|
-
}
|
|
6040
|
-
|
|
6041
|
-
:nth-child(1) {
|
|
6042
|
-
padding: 8px 4px;
|
|
6043
|
-
> * {
|
|
6044
|
-
background: #E1E6F199;
|
|
6045
|
-
}
|
|
6046
|
-
}
|
|
6047
|
-
}
|
|
6048
|
-
|
|
6049
|
-
|
|
6050
|
-
.E_f16blduf {
|
|
6051
|
-
&.ant-form-item {
|
|
6052
|
-
margin-bottom: 0;
|
|
6053
|
-
}
|
|
6054
|
-
|
|
6055
|
-
.ant-form-item-explain {
|
|
6056
|
-
display: none;
|
|
6057
|
-
min-height: 18px;
|
|
6058
|
-
margin-top: 5px;
|
|
6059
|
-
font-family: "Inter";
|
|
6060
|
-
font-weight: 400;
|
|
6061
|
-
font-size: 12px;
|
|
6062
|
-
line-height: 18px;
|
|
6460
|
+
.checkbox-loading {
|
|
6461
|
+
width: 16px;
|
|
6462
|
+
}
|
|
6463
|
+
.td-loading {
|
|
6464
|
+
flex: 1;
|
|
6465
|
+
}
|
|
6063
6466
|
}
|
|
6064
6467
|
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
.ant-form-item-explain {
|
|
6070
|
-
display: block;
|
|
6468
|
+
:nth-child(1) {
|
|
6469
|
+
padding: 8px 4px;
|
|
6470
|
+
> * {
|
|
6471
|
+
background: #E1E6F199;
|
|
6071
6472
|
}
|
|
6072
6473
|
}
|
|
6073
6474
|
}
|
|
@@ -6102,6 +6503,32 @@
|
|
|
6102
6503
|
}
|
|
6103
6504
|
|
|
6104
6505
|
|
|
6506
|
+
.E_f16blduf {
|
|
6507
|
+
&.ant-form-item {
|
|
6508
|
+
margin-bottom: 0;
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6511
|
+
.ant-form-item-explain {
|
|
6512
|
+
display: none;
|
|
6513
|
+
min-height: 18px;
|
|
6514
|
+
margin-top: 5px;
|
|
6515
|
+
font-family: "Inter";
|
|
6516
|
+
font-weight: 400;
|
|
6517
|
+
font-size: 12px;
|
|
6518
|
+
line-height: 18px;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
&.ant-form-item[class*="ant-form-item-has"]:not(
|
|
6522
|
+
.ant-form-item-has-error-leave
|
|
6523
|
+
) {
|
|
6524
|
+
white-space: pre-wrap;
|
|
6525
|
+
.ant-form-item-explain {
|
|
6526
|
+
display: block;
|
|
6527
|
+
}
|
|
6528
|
+
}
|
|
6529
|
+
}
|
|
6530
|
+
|
|
6531
|
+
|
|
6105
6532
|
.E_a9y3flr {
|
|
6106
6533
|
margin-left: 8px;
|
|
6107
6534
|
}
|
|
@@ -6163,147 +6590,20 @@
|
|
|
6163
6590
|
}
|
|
6164
6591
|
|
|
6165
6592
|
|
|
6166
|
-
.
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
.E_s1tui002 {
|
|
6172
|
-
white-space: nowrap;
|
|
6173
|
-
}
|
|
6174
|
-
|
|
6175
|
-
.E_mxrc2zg {
|
|
6176
|
-
display: -webkit-box;
|
|
6177
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
6178
|
-
-webkit-box-orient: vertical;
|
|
6179
|
-
word-break: break-all;
|
|
6180
|
-
}
|
|
6181
|
-
|
|
6182
|
-
.E_t1vv6d68 {
|
|
6183
|
-
.ant-tooltip-arrow {
|
|
6184
|
-
display: none;
|
|
6185
|
-
}
|
|
6186
|
-
.ant-tooltip-inner {
|
|
6187
|
-
background: $gray-a80-9;
|
|
6188
|
-
border-radius: 4px;
|
|
6189
|
-
&:has(.eagle-ellipsis-content) {
|
|
6190
|
-
visibility: hidden;
|
|
6191
|
-
}
|
|
6192
|
-
}
|
|
6193
|
-
}
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
.E_t1sqg15u {
|
|
6197
|
-
background: white;
|
|
6198
|
-
|
|
6199
|
-
&.inline {
|
|
6200
|
-
.table-row {
|
|
6201
|
-
flex-direction: column;
|
|
6202
|
-
|
|
6203
|
-
> label {
|
|
6204
|
-
padding: 0 16px 7px 0;
|
|
6205
|
-
}
|
|
6206
|
-
}
|
|
6207
|
-
}
|
|
6208
|
-
|
|
6209
|
-
&.has-border {
|
|
6210
|
-
.table-header {
|
|
6211
|
-
border-bottom: 1px solid $strokes-light-trans-1;
|
|
6212
|
-
}
|
|
6213
|
-
|
|
6214
|
-
.hiddenBorder {
|
|
6215
|
-
border-top: none !important;
|
|
6216
|
-
}
|
|
6217
|
-
|
|
6218
|
-
.table-row + .table-row {
|
|
6219
|
-
border-top: 1px solid $strokes-light-trans-1;
|
|
6220
|
-
}
|
|
6221
|
-
|
|
6222
|
-
.table-row:last-of-type {
|
|
6223
|
-
padding-bottom: 0;
|
|
6224
|
-
}
|
|
6225
|
-
}
|
|
6226
|
-
|
|
6227
|
-
&.align-right {
|
|
6228
|
-
.content {
|
|
6229
|
-
text-align: right;
|
|
6230
|
-
}
|
|
6231
|
-
}
|
|
6232
|
-
.uuid-row {
|
|
6233
|
-
display: flex;
|
|
6234
|
-
justify-content: space-between;
|
|
6235
|
-
|
|
6236
|
-
.id-text {
|
|
6237
|
-
white-space: nowrap;
|
|
6238
|
-
overflow: hidden;
|
|
6239
|
-
text-overflow: ellipsis;
|
|
6240
|
-
}
|
|
6241
|
-
}
|
|
6242
|
-
}
|
|
6243
|
-
|
|
6244
|
-
.E_t4zczcp {
|
|
6245
|
-
display: flex;
|
|
6246
|
-
justify-content: space-between;
|
|
6247
|
-
align-items: center;
|
|
6248
|
-
padding: 8px;
|
|
6249
|
-
min-height: 32px;
|
|
6250
|
-
|
|
6251
|
-
.table-title {
|
|
6252
|
-
color: $text-secondary-light;
|
|
6253
|
-
font-weight: 600;
|
|
6254
|
-
font-size: 12px;
|
|
6255
|
-
line-height: 8px;
|
|
6256
|
-
}
|
|
6257
|
-
|
|
6258
|
-
.edit-icon {
|
|
6259
|
-
font-size: 16px;
|
|
6260
|
-
color: $strokes-translucent-2-light;
|
|
6261
|
-
cursor: pointer;
|
|
6262
|
-
}
|
|
6263
|
-
}
|
|
6264
|
-
|
|
6265
|
-
.E_t1s7goww {
|
|
6266
|
-
font-size: 12px;
|
|
6267
|
-
line-height: 18px;
|
|
6268
|
-
}
|
|
6269
|
-
|
|
6270
|
-
.E_t93e4cf {
|
|
6593
|
+
.E_skwah65 {
|
|
6594
|
+
height: 8px;
|
|
6595
|
+
box-sizing: border-box;
|
|
6596
|
+
border-radius: 2px;
|
|
6597
|
+
background: #f5f7fa;
|
|
6271
6598
|
display: flex;
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
.hidden {
|
|
6276
|
-
display: none;
|
|
6277
|
-
}
|
|
6278
|
-
|
|
6279
|
-
.ant-btn.ant-btn-link {
|
|
6280
|
-
height: auto;
|
|
6281
|
-
}
|
|
6282
|
-
|
|
6283
|
-
.content {
|
|
6284
|
-
overflow: hidden;
|
|
6285
|
-
overflow-x: auto;
|
|
6286
|
-
width: 100%;
|
|
6287
|
-
white-space: pre-wrap;
|
|
6288
|
-
|
|
6289
|
-
.ant-btn {
|
|
6290
|
-
white-space: pre-wrap;
|
|
6291
|
-
text-align: left;
|
|
6292
|
-
}
|
|
6599
|
+
width: 100%;
|
|
6600
|
+
overflow: hidden;
|
|
6293
6601
|
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
}
|
|
6602
|
+
.stack-bar-item + .stack-bar-item {
|
|
6603
|
+
margin-left: 1px;
|
|
6297
6604
|
}
|
|
6298
6605
|
}
|
|
6299
6606
|
|
|
6300
|
-
.E_rhz2uv5 {
|
|
6301
|
-
width: var(--rhz2uv5-0);
|
|
6302
|
-
flex-shrink: 0;
|
|
6303
|
-
color: $text-secondary-light;
|
|
6304
|
-
padding-right: 12px;
|
|
6305
|
-
}
|
|
6306
|
-
|
|
6307
6607
|
|
|
6308
6608
|
.E_c18bcrac {
|
|
6309
6609
|
display: inline-block;
|
|
@@ -6360,33 +6660,70 @@
|
|
|
6360
6660
|
}
|
|
6361
6661
|
|
|
6362
6662
|
|
|
6363
|
-
.
|
|
6364
|
-
@at-root {
|
|
6365
|
-
span#{&} {
|
|
6366
|
-
margin: 0 2px;
|
|
6367
|
-
}
|
|
6368
|
-
}
|
|
6369
|
-
}
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
.E_n12mqh7z {
|
|
6663
|
+
.E_s1ebs0ra {
|
|
6373
6664
|
display: flex;
|
|
6374
6665
|
align-items: center;
|
|
6375
|
-
|
|
6376
|
-
|
|
6666
|
+
justify-content: space-between;
|
|
6667
|
+
background: $backgrounds-light-grouped;
|
|
6668
|
+
padding: 8px 12px;
|
|
6669
|
+
position: sticky;
|
|
6670
|
+
top: 0;
|
|
6671
|
+
z-index: 1;
|
|
6672
|
+
margin-bottom: -52px;
|
|
6377
6673
|
|
|
6378
|
-
|
|
6379
|
-
|
|
6674
|
+
.select-total {
|
|
6675
|
+
display: flex;
|
|
6676
|
+
align-items: center;
|
|
6677
|
+
font-weight: 700;
|
|
6678
|
+
flex-shrink: 0;
|
|
6679
|
+
|
|
6680
|
+
.icon-wrapper {
|
|
6681
|
+
cursor: pointer;
|
|
6682
|
+
margin-left: 8px;
|
|
6683
|
+
width: 32px;
|
|
6684
|
+
height: 32px;
|
|
6685
|
+
border-radius: 50%;
|
|
6686
|
+
justify-content: center;
|
|
6687
|
+
|
|
6688
|
+
&:hover {
|
|
6689
|
+
background: $fills-light-trans-2;
|
|
6690
|
+
}
|
|
6691
|
+
}
|
|
6380
6692
|
}
|
|
6381
|
-
|
|
6693
|
+
.action-group {
|
|
6694
|
+
flex: 1;
|
|
6695
|
+
margin-left: 88px;
|
|
6696
|
+
white-space: nowrap;
|
|
6697
|
+
text-align: right;
|
|
6698
|
+
position: relative;
|
|
6699
|
+
padding: 4px 0;
|
|
6700
|
+
margin-top: -4px;
|
|
6701
|
+
overflow: hidden;
|
|
6702
|
+
.sub-menu-delete {
|
|
6703
|
+
transform: translateY(-4px);
|
|
6704
|
+
}
|
|
6705
|
+
button {
|
|
6706
|
+
border: none;
|
|
6707
|
+
}
|
|
6708
|
+
> *:not(:last-child) {
|
|
6709
|
+
margin-right: 8px;
|
|
6710
|
+
}
|
|
6382
6711
|
|
|
6383
|
-
|
|
6384
|
-
|
|
6385
|
-
}
|
|
6712
|
+
> button:last-child {
|
|
6713
|
+
margin-right: 4px;
|
|
6714
|
+
}
|
|
6715
|
+
.more-btn {
|
|
6716
|
+
cursor: pointer;
|
|
6717
|
+
width: 32px;
|
|
6718
|
+
height: 32px;
|
|
6719
|
+
justify-content: center;
|
|
6720
|
+
border-radius: 50%;
|
|
6386
6721
|
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6722
|
+
&:hover {
|
|
6723
|
+
background: $white;
|
|
6724
|
+
}
|
|
6725
|
+
}
|
|
6726
|
+
}
|
|
6390
6727
|
}
|
|
6391
6728
|
|
|
6392
6729
|
|
|
@@ -6488,68 +6825,10 @@
|
|
|
6488
6825
|
}
|
|
6489
6826
|
|
|
6490
6827
|
|
|
6491
|
-
.
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
background: $backgrounds-light-grouped;
|
|
6496
|
-
padding: 8px 12px;
|
|
6497
|
-
position: sticky;
|
|
6498
|
-
top: 0;
|
|
6499
|
-
z-index: 1;
|
|
6500
|
-
margin-bottom: -52px;
|
|
6501
|
-
|
|
6502
|
-
.select-total {
|
|
6503
|
-
display: flex;
|
|
6504
|
-
align-items: center;
|
|
6505
|
-
font-weight: 700;
|
|
6506
|
-
flex-shrink: 0;
|
|
6507
|
-
|
|
6508
|
-
.icon-wrapper {
|
|
6509
|
-
cursor: pointer;
|
|
6510
|
-
margin-left: 8px;
|
|
6511
|
-
width: 32px;
|
|
6512
|
-
height: 32px;
|
|
6513
|
-
border-radius: 50%;
|
|
6514
|
-
justify-content: center;
|
|
6515
|
-
|
|
6516
|
-
&:hover {
|
|
6517
|
-
background: $fills-light-trans-2;
|
|
6518
|
-
}
|
|
6519
|
-
}
|
|
6520
|
-
}
|
|
6521
|
-
.action-group {
|
|
6522
|
-
flex: 1;
|
|
6523
|
-
margin-left: 88px;
|
|
6524
|
-
white-space: nowrap;
|
|
6525
|
-
text-align: right;
|
|
6526
|
-
position: relative;
|
|
6527
|
-
padding: 4px 0;
|
|
6528
|
-
margin-top: -4px;
|
|
6529
|
-
overflow: hidden;
|
|
6530
|
-
.sub-menu-delete {
|
|
6531
|
-
transform: translateY(-4px);
|
|
6532
|
-
}
|
|
6533
|
-
button {
|
|
6534
|
-
border: none;
|
|
6535
|
-
}
|
|
6536
|
-
> *:not(:last-child) {
|
|
6537
|
-
margin-right: 8px;
|
|
6538
|
-
}
|
|
6539
|
-
|
|
6540
|
-
> button:last-child {
|
|
6541
|
-
margin-right: 4px;
|
|
6542
|
-
}
|
|
6543
|
-
.more-btn {
|
|
6544
|
-
cursor: pointer;
|
|
6545
|
-
width: 32px;
|
|
6546
|
-
height: 32px;
|
|
6547
|
-
justify-content: center;
|
|
6548
|
-
border-radius: 50%;
|
|
6549
|
-
|
|
6550
|
-
&:hover {
|
|
6551
|
-
background: $white;
|
|
6552
|
-
}
|
|
6828
|
+
.E_tqjc4ui {
|
|
6829
|
+
@at-root {
|
|
6830
|
+
span#{&} {
|
|
6831
|
+
margin: 0 2px;
|
|
6553
6832
|
}
|
|
6554
6833
|
}
|
|
6555
6834
|
}
|
|
@@ -6568,44 +6847,6 @@
|
|
|
6568
6847
|
}
|
|
6569
6848
|
|
|
6570
6849
|
|
|
6571
|
-
.E_s1iv0tp1 {
|
|
6572
|
-
.enabled-switch {
|
|
6573
|
-
display: flex;
|
|
6574
|
-
align-items: center;
|
|
6575
|
-
}
|
|
6576
|
-
|
|
6577
|
-
.enabled-text {
|
|
6578
|
-
margin-right: 8px;
|
|
6579
|
-
}
|
|
6580
|
-
}
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
.E_wg1tsps {
|
|
6584
|
-
display: flex;
|
|
6585
|
-
align-items: center;
|
|
6586
|
-
justify-content: flex-end;
|
|
6587
|
-
}
|
|
6588
|
-
|
|
6589
|
-
.E_b1ctd5xy {
|
|
6590
|
-
display: flex;
|
|
6591
|
-
align-items: center;
|
|
6592
|
-
width: calc(100% - 40px);
|
|
6593
|
-
|
|
6594
|
-
.chart {
|
|
6595
|
-
display: inline-block;
|
|
6596
|
-
width: 100%;
|
|
6597
|
-
}
|
|
6598
|
-
}
|
|
6599
|
-
|
|
6600
|
-
.E_u1p8acpn {
|
|
6601
|
-
min-width: 40px;
|
|
6602
|
-
|
|
6603
|
-
.unit {
|
|
6604
|
-
color: $text-light-primary !important;
|
|
6605
|
-
}
|
|
6606
|
-
}
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
6850
|
.E_c1up1pdz {
|
|
6610
6851
|
width: 648px;
|
|
6611
6852
|
|
|
@@ -6756,31 +6997,224 @@
|
|
|
6756
6997
|
margin-top: 4px;
|
|
6757
6998
|
}
|
|
6758
6999
|
}
|
|
6759
|
-
.month-day-option {
|
|
6760
|
-
width: 32px;
|
|
6761
|
-
padding: 0;
|
|
6762
|
-
margin-bottom: 8px;
|
|
7000
|
+
.month-day-option {
|
|
7001
|
+
width: 32px;
|
|
7002
|
+
padding: 0;
|
|
7003
|
+
margin-bottom: 8px;
|
|
7004
|
+
|
|
7005
|
+
&.active {
|
|
7006
|
+
background-color: $blue;
|
|
7007
|
+
border-color: $blue;
|
|
7008
|
+
color: $white;
|
|
7009
|
+
}
|
|
7010
|
+
}
|
|
7011
|
+
}
|
|
7012
|
+
|
|
7013
|
+
|
|
7014
|
+
.E_n12mqh7z {
|
|
7015
|
+
display: flex;
|
|
7016
|
+
align-items: center;
|
|
7017
|
+
font-size: 12px;
|
|
7018
|
+
line-height: 18px;
|
|
7019
|
+
|
|
7020
|
+
&:not(:last-child) {
|
|
7021
|
+
margin-bottom: 4px;
|
|
7022
|
+
}
|
|
7023
|
+
}
|
|
7024
|
+
|
|
7025
|
+
.E_tf5bynu {
|
|
7026
|
+
margin: 0 3px;
|
|
7027
|
+
}
|
|
7028
|
+
|
|
7029
|
+
.E_tcckoz1 {
|
|
7030
|
+
max-height: 400px;
|
|
7031
|
+
overflow: auto;
|
|
7032
|
+
}
|
|
7033
|
+
|
|
7034
|
+
|
|
7035
|
+
.E_wg1tsps {
|
|
7036
|
+
display: flex;
|
|
7037
|
+
align-items: center;
|
|
7038
|
+
justify-content: flex-end;
|
|
7039
|
+
}
|
|
7040
|
+
|
|
7041
|
+
.E_b1ctd5xy {
|
|
7042
|
+
display: flex;
|
|
7043
|
+
align-items: center;
|
|
7044
|
+
width: calc(100% - 40px);
|
|
7045
|
+
|
|
7046
|
+
.chart {
|
|
7047
|
+
display: inline-block;
|
|
7048
|
+
width: 100%;
|
|
7049
|
+
}
|
|
7050
|
+
}
|
|
7051
|
+
|
|
7052
|
+
.E_u1p8acpn {
|
|
7053
|
+
min-width: 40px;
|
|
7054
|
+
|
|
7055
|
+
.unit {
|
|
7056
|
+
color: $text-light-primary !important;
|
|
7057
|
+
}
|
|
7058
|
+
}
|
|
7059
|
+
|
|
7060
|
+
|
|
7061
|
+
.E_t1sqg15u {
|
|
7062
|
+
background: white;
|
|
7063
|
+
|
|
7064
|
+
&.inline {
|
|
7065
|
+
.table-row {
|
|
7066
|
+
flex-direction: column;
|
|
7067
|
+
|
|
7068
|
+
> label {
|
|
7069
|
+
padding: 0 16px 7px 0;
|
|
7070
|
+
}
|
|
7071
|
+
}
|
|
7072
|
+
}
|
|
7073
|
+
|
|
7074
|
+
&.has-border {
|
|
7075
|
+
.table-header {
|
|
7076
|
+
border-bottom: 1px solid $strokes-light-trans-1;
|
|
7077
|
+
}
|
|
7078
|
+
|
|
7079
|
+
.hiddenBorder {
|
|
7080
|
+
border-top: none !important;
|
|
7081
|
+
}
|
|
7082
|
+
|
|
7083
|
+
.table-row + .table-row {
|
|
7084
|
+
border-top: 1px solid $strokes-light-trans-1;
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
.table-row:last-of-type {
|
|
7088
|
+
padding-bottom: 0;
|
|
7089
|
+
}
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7092
|
+
&.align-right {
|
|
7093
|
+
.content {
|
|
7094
|
+
text-align: right;
|
|
7095
|
+
}
|
|
7096
|
+
}
|
|
7097
|
+
.uuid-row {
|
|
7098
|
+
display: flex;
|
|
7099
|
+
justify-content: space-between;
|
|
7100
|
+
|
|
7101
|
+
.id-text {
|
|
7102
|
+
white-space: nowrap;
|
|
7103
|
+
overflow: hidden;
|
|
7104
|
+
text-overflow: ellipsis;
|
|
7105
|
+
}
|
|
7106
|
+
}
|
|
7107
|
+
}
|
|
7108
|
+
|
|
7109
|
+
.E_t4zczcp {
|
|
7110
|
+
display: flex;
|
|
7111
|
+
justify-content: space-between;
|
|
7112
|
+
align-items: center;
|
|
7113
|
+
padding: 8px;
|
|
7114
|
+
min-height: 32px;
|
|
7115
|
+
|
|
7116
|
+
.table-title {
|
|
7117
|
+
color: $text-secondary-light;
|
|
7118
|
+
font-weight: 600;
|
|
7119
|
+
font-size: 12px;
|
|
7120
|
+
line-height: 8px;
|
|
7121
|
+
}
|
|
7122
|
+
|
|
7123
|
+
.edit-icon {
|
|
7124
|
+
font-size: 16px;
|
|
7125
|
+
color: $strokes-translucent-2-light;
|
|
7126
|
+
cursor: pointer;
|
|
7127
|
+
}
|
|
7128
|
+
}
|
|
7129
|
+
|
|
7130
|
+
.E_t1s7goww {
|
|
7131
|
+
font-size: 12px;
|
|
7132
|
+
line-height: 18px;
|
|
7133
|
+
}
|
|
7134
|
+
|
|
7135
|
+
.E_t93e4cf {
|
|
7136
|
+
display: flex;
|
|
7137
|
+
padding: 8px 0;
|
|
7138
|
+
color: $text-primary-light;
|
|
7139
|
+
|
|
7140
|
+
.hidden {
|
|
7141
|
+
display: none;
|
|
7142
|
+
}
|
|
6763
7143
|
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
|
|
7144
|
+
.ant-btn.ant-btn-link {
|
|
7145
|
+
height: auto;
|
|
7146
|
+
}
|
|
7147
|
+
|
|
7148
|
+
.content {
|
|
7149
|
+
overflow: hidden;
|
|
7150
|
+
overflow-x: auto;
|
|
7151
|
+
width: 100%;
|
|
7152
|
+
white-space: pre-wrap;
|
|
7153
|
+
|
|
7154
|
+
.ant-btn {
|
|
7155
|
+
white-space: pre-wrap;
|
|
7156
|
+
text-align: left;
|
|
7157
|
+
}
|
|
7158
|
+
|
|
7159
|
+
.unit-chart {
|
|
7160
|
+
justify-content: flex-start;
|
|
6768
7161
|
}
|
|
6769
7162
|
}
|
|
6770
7163
|
}
|
|
6771
7164
|
|
|
7165
|
+
.E_rhz2uv5 {
|
|
7166
|
+
width: var(--rhz2uv5-0);
|
|
7167
|
+
flex-shrink: 0;
|
|
7168
|
+
color: $text-secondary-light;
|
|
7169
|
+
padding-right: 12px;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
6772
7172
|
|
|
6773
|
-
.
|
|
6774
|
-
height: 8px;
|
|
6775
|
-
box-sizing: border-box;
|
|
6776
|
-
border-radius: 2px;
|
|
6777
|
-
background: #f5f7fa;
|
|
6778
|
-
display: flex;
|
|
6779
|
-
width: 100%;
|
|
7173
|
+
.E_ou7iq30 {
|
|
6780
7174
|
overflow: hidden;
|
|
7175
|
+
text-overflow: ellipsis;
|
|
7176
|
+
}
|
|
6781
7177
|
|
|
6782
|
-
|
|
6783
|
-
|
|
7178
|
+
.E_s1tui002 {
|
|
7179
|
+
white-space: nowrap;
|
|
7180
|
+
}
|
|
7181
|
+
|
|
7182
|
+
.E_mxrc2zg {
|
|
7183
|
+
display: -webkit-box;
|
|
7184
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
7185
|
+
-webkit-box-orient: vertical;
|
|
7186
|
+
word-break: break-all;
|
|
7187
|
+
}
|
|
7188
|
+
|
|
7189
|
+
.E_t1vv6d68 {
|
|
7190
|
+
.ant-tooltip-arrow {
|
|
7191
|
+
display: none;
|
|
7192
|
+
}
|
|
7193
|
+
.ant-tooltip-inner {
|
|
7194
|
+
background: $gray-a80-9;
|
|
7195
|
+
border-radius: 4px;
|
|
7196
|
+
&:has(.eagle-ellipsis-content) {
|
|
7197
|
+
visibility: hidden;
|
|
7198
|
+
}
|
|
7199
|
+
}
|
|
7200
|
+
}
|
|
7201
|
+
|
|
7202
|
+
|
|
7203
|
+
.E_u15heuvq {
|
|
7204
|
+
&.content {
|
|
7205
|
+
cursor: default !important;
|
|
7206
|
+
&.link {
|
|
7207
|
+
cursor: pointer !important;
|
|
7208
|
+
&:hover {
|
|
7209
|
+
color: $text-colorful-outstanding;
|
|
7210
|
+
}
|
|
7211
|
+
}
|
|
7212
|
+
&.black {
|
|
7213
|
+
color: $text-neutral-primary;
|
|
7214
|
+
}
|
|
7215
|
+
&.gray {
|
|
7216
|
+
color: $text-neutral-secondary;
|
|
7217
|
+
}
|
|
6784
7218
|
}
|
|
6785
7219
|
}
|
|
6786
7220
|
|
|
@@ -6924,21 +7358,14 @@
|
|
|
6924
7358
|
}
|
|
6925
7359
|
|
|
6926
7360
|
|
|
6927
|
-
.
|
|
6928
|
-
|
|
6929
|
-
|
|
6930
|
-
|
|
6931
|
-
|
|
6932
|
-
|
|
6933
|
-
|
|
6934
|
-
|
|
6935
|
-
}
|
|
6936
|
-
&.black {
|
|
6937
|
-
color: $text-neutral-primary;
|
|
6938
|
-
}
|
|
6939
|
-
&.gray {
|
|
6940
|
-
color: $text-neutral-secondary;
|
|
6941
|
-
}
|
|
7361
|
+
.E_s1iv0tp1 {
|
|
7362
|
+
.enabled-switch {
|
|
7363
|
+
display: flex;
|
|
7364
|
+
align-items: center;
|
|
7365
|
+
}
|
|
7366
|
+
|
|
7367
|
+
.enabled-text {
|
|
7368
|
+
margin-right: 8px;
|
|
6942
7369
|
}
|
|
6943
7370
|
}
|
|
6944
7371
|
|
|
@@ -7275,6 +7702,13 @@
|
|
|
7275
7702
|
}
|
|
7276
7703
|
|
|
7277
7704
|
|
|
7705
|
+
.E_h1ol2wl7 {
|
|
7706
|
+
font-weight: bold;
|
|
7707
|
+
background-color: unset;
|
|
7708
|
+
padding: unset;
|
|
7709
|
+
}
|
|
7710
|
+
|
|
7711
|
+
|
|
7278
7712
|
.E_kr6am0s {
|
|
7279
7713
|
.ant-modal-body {
|
|
7280
7714
|
padding: 60px 128px;
|
|
@@ -7393,10 +7827,21 @@
|
|
|
7393
7827
|
}
|
|
7394
7828
|
|
|
7395
7829
|
|
|
7396
|
-
.
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7830
|
+
.E_l12xdkhl {
|
|
7831
|
+
width: 64px;
|
|
7832
|
+
height: 64px;
|
|
7833
|
+
max-width: 64px;
|
|
7834
|
+
max-height: 64px;
|
|
7835
|
+
overflow: hidden;
|
|
7836
|
+
display: flex;
|
|
7837
|
+
align-items: center;
|
|
7838
|
+
justify-content: center;
|
|
7839
|
+
position: relative;
|
|
7840
|
+
opacity: 0.6;
|
|
7841
|
+
.icon-wrapper {
|
|
7842
|
+
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } };
|
|
7843
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
7844
|
+
}
|
|
7400
7845
|
}
|
|
7401
7846
|
|
|
7402
7847
|
|
|
@@ -7410,63 +7855,6 @@
|
|
|
7410
7855
|
}
|
|
7411
7856
|
|
|
7412
7857
|
|
|
7413
|
-
.E_c1ss4prm {
|
|
7414
|
-
color: $text-light-secondary;
|
|
7415
|
-
&:is(ul, ol) {
|
|
7416
|
-
padding-inline-start: 12px;
|
|
7417
|
-
}
|
|
7418
|
-
|
|
7419
|
-
li {
|
|
7420
|
-
margin-bottom: 4px;
|
|
7421
|
-
|
|
7422
|
-
&:last-child {
|
|
7423
|
-
margin-bottom: 0;
|
|
7424
|
-
}
|
|
7425
|
-
}
|
|
7426
|
-
}
|
|
7427
|
-
|
|
7428
|
-
.E_ms3tlei {
|
|
7429
|
-
background: $fill-neutral-trans-2;
|
|
7430
|
-
padding: 8px;
|
|
7431
|
-
border-radius: 6px;
|
|
7432
|
-
color: $gray-a60-8;
|
|
7433
|
-
|
|
7434
|
-
.icon-wrapper {
|
|
7435
|
-
margin-top: 1px; // The text line height is 18px, the icon height is 16px, so a 1px offset is needed
|
|
7436
|
-
margin-right: 4px;
|
|
7437
|
-
}
|
|
7438
|
-
|
|
7439
|
-
li {
|
|
7440
|
-
margin-bottom: 4px;
|
|
7441
|
-
display: flex;
|
|
7442
|
-
align-items: flex-start;
|
|
7443
|
-
|
|
7444
|
-
&:last-child {
|
|
7445
|
-
margin-bottom: 0;
|
|
7446
|
-
}
|
|
7447
|
-
}
|
|
7448
|
-
}
|
|
7449
|
-
|
|
7450
|
-
.E_du44iy7 {
|
|
7451
|
-
margin-bottom: 4px;
|
|
7452
|
-
}
|
|
7453
|
-
|
|
7454
|
-
.E_p1qmhanr {
|
|
7455
|
-
margin-bottom: 8px;
|
|
7456
|
-
}
|
|
7457
|
-
|
|
7458
|
-
.E_srje1h0 {
|
|
7459
|
-
color: $text-light-secondary;
|
|
7460
|
-
margin-bottom: 8px;
|
|
7461
|
-
}
|
|
7462
|
-
|
|
7463
|
-
.E_di3zi7v {
|
|
7464
|
-
height: 1px;
|
|
7465
|
-
background: $strokes-light-opaque-2;
|
|
7466
|
-
margin: 16px 0;
|
|
7467
|
-
}
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
7858
|
.E_c14ouk5o {
|
|
7471
7859
|
width: 100%;
|
|
7472
7860
|
height: 100%;
|
|
@@ -8117,20 +8505,59 @@
|
|
|
8117
8505
|
}
|
|
8118
8506
|
|
|
8119
8507
|
|
|
8120
|
-
.
|
|
8121
|
-
|
|
8122
|
-
|
|
8123
|
-
|
|
8124
|
-
|
|
8125
|
-
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8508
|
+
.E_c1ss4prm {
|
|
8509
|
+
color: $text-light-secondary;
|
|
8510
|
+
&:is(ul, ol) {
|
|
8511
|
+
padding-inline-start: 12px;
|
|
8512
|
+
}
|
|
8513
|
+
|
|
8514
|
+
li {
|
|
8515
|
+
margin-bottom: 4px;
|
|
8516
|
+
|
|
8517
|
+
&:last-child {
|
|
8518
|
+
margin-bottom: 0;
|
|
8519
|
+
}
|
|
8520
|
+
}
|
|
8521
|
+
}
|
|
8522
|
+
|
|
8523
|
+
.E_ms3tlei {
|
|
8524
|
+
background: $fill-neutral-trans-2;
|
|
8525
|
+
padding: 8px;
|
|
8526
|
+
border-radius: 6px;
|
|
8527
|
+
color: $gray-a60-8;
|
|
8528
|
+
|
|
8131
8529
|
.icon-wrapper {
|
|
8132
|
-
|
|
8133
|
-
|
|
8530
|
+
margin-top: 1px; // The text line height is 18px, the icon height is 16px, so a 1px offset is needed
|
|
8531
|
+
margin-right: 4px;
|
|
8532
|
+
}
|
|
8533
|
+
|
|
8534
|
+
li {
|
|
8535
|
+
margin-bottom: 4px;
|
|
8536
|
+
display: flex;
|
|
8537
|
+
align-items: flex-start;
|
|
8538
|
+
|
|
8539
|
+
&:last-child {
|
|
8540
|
+
margin-bottom: 0;
|
|
8541
|
+
}
|
|
8134
8542
|
}
|
|
8135
8543
|
}
|
|
8136
8544
|
|
|
8545
|
+
.E_du44iy7 {
|
|
8546
|
+
margin-bottom: 4px;
|
|
8547
|
+
}
|
|
8548
|
+
|
|
8549
|
+
.E_p1qmhanr {
|
|
8550
|
+
margin-bottom: 8px;
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
.E_srje1h0 {
|
|
8554
|
+
color: $text-light-secondary;
|
|
8555
|
+
margin-bottom: 8px;
|
|
8556
|
+
}
|
|
8557
|
+
|
|
8558
|
+
.E_di3zi7v {
|
|
8559
|
+
height: 1px;
|
|
8560
|
+
background: $strokes-light-opaque-2;
|
|
8561
|
+
margin: 16px 0;
|
|
8562
|
+
}
|
|
8563
|
+
|