@epam/uui 4.9.0-alpha.0 → 4.9.0
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/bundle-stats.json +1 -1
- package/components/buttons/Button.d.ts +1 -1
- package/components/buttons/LinkButton.d.ts +1 -1
- package/components/buttons/TabButton.d.ts +1 -1
- package/components/buttons/VerticalTabButton.d.ts +1 -1
- package/components/inputs/TextInput.d.ts +1 -1
- package/components/layout/FlexItems/FlexCell.d.ts +2 -2
- package/components/layout/FlexItems/FlexRow.d.ts +1 -2
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/layout/FlexItems/Panel.d.ts +1 -1
- package/components/pickers/DataPickerFooter.d.ts +3 -3
- package/components/pickers/DataPickerFooter.d.ts.map +1 -1
- package/components/pickers/PickerInput.d.ts +2 -2
- package/components/pickers/PickerInput.d.ts.map +1 -1
- package/components/pickers/PickerList.d.ts +3 -3
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/pickers/PickerModal.d.ts +3 -3
- package/components/pickers/PickerModal.d.ts.map +1 -1
- package/components/pickers/PickerToggler.d.ts.map +1 -1
- package/components/tables/Presets/Preset.d.ts +0 -1
- package/components/tables/Presets/Preset.d.ts.map +1 -1
- package/components/tables/Presets/Presets.d.ts.map +1 -1
- package/components/types.d.ts +1 -0
- package/components/types.d.ts.map +1 -1
- package/components/typography/Text.d.ts +1 -1
- package/components/typography/Text.d.ts.map +1 -1
- package/components/widgets/Badge.d.ts +1 -1
- package/components/widgets/Tag.d.ts +1 -1
- package/index.js +727 -811
- package/index.js.map +1 -1
- package/package.json +6 -6
- package/styles.css +620 -617
- package/styles.css.map +1 -1
package/styles.css
CHANGED
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
font-weight: normal;
|
|
34
34
|
src: url("https://static.cdn.epam.com/uploads/690afa39a93c88c4dd13758fe1d869d5/EPM-UUI/fonts/RobotoSlab-Regular.ttf") format("truetype");
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
._2esRM.uui-button-box {
|
|
37
37
|
border-style: solid;
|
|
38
38
|
justify-content: center;
|
|
39
39
|
min-width: inherit;
|
|
40
40
|
border-radius: var(--button-border-radius);
|
|
41
41
|
}
|
|
42
|
-
.
|
|
42
|
+
._2esRM .uui-caption {
|
|
43
43
|
overflow: hidden;
|
|
44
44
|
text-overflow: ellipsis;
|
|
45
45
|
min-width: 0;
|
|
@@ -50,234 +50,234 @@
|
|
|
50
50
|
user-select: none;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
.
|
|
53
|
+
._1cJXd {
|
|
54
54
|
background-color: var(--button-bg-color);
|
|
55
55
|
color: var(--button-caption-color);
|
|
56
56
|
fill: var(--button-caption-color);
|
|
57
57
|
border-color: var(--button-bg-color);
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
._1cJXd.-clickable:hover {
|
|
60
60
|
background-color: var(--button-bg-color-hover);
|
|
61
61
|
border-color: var(--button-bg-color-hover);
|
|
62
62
|
}
|
|
63
|
-
.
|
|
63
|
+
._1cJXd.-clickable:focus {
|
|
64
64
|
background-color: var(--button-bg-color-hover);
|
|
65
65
|
border-color: var(--button-bg-color-hover);
|
|
66
66
|
box-shadow: var(--button-focus-shadow);
|
|
67
67
|
outline: var(--button-focus-outline);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
._1cJXd.-clickable:active {
|
|
70
70
|
background-color: var(--button-bg-color-active);
|
|
71
71
|
border-color: var(--button-bg-color-active);
|
|
72
72
|
}
|
|
73
|
-
.
|
|
73
|
+
._1cJXd.uui-disabled {
|
|
74
74
|
background-color: var(--button-bg-color-disabled);
|
|
75
75
|
color: var(--button-caption-color-disabled);
|
|
76
76
|
fill: var(--button-caption-color-disabled);
|
|
77
77
|
border-color: var(--button-border-color-disabled);
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
._1cJXd.-clickable.uui-disabled, ._1cJXd:hover.uui-disabled, ._1cJXd:active.uui-disabled, ._1cJXd:focus.uui-disabled {
|
|
80
80
|
background-color: var(--button-bg-color-disabled);
|
|
81
81
|
color: var(--button-caption-color-disabled);
|
|
82
82
|
fill: var(--button-caption-color-disabled);
|
|
83
83
|
border-color: var(--button-border-color-disabled);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
.
|
|
86
|
+
._2AiE1 {
|
|
87
87
|
background-color: var(--button-bg-color-halftone);
|
|
88
88
|
color: var(--button-caption-halftone-color);
|
|
89
89
|
fill: var(--button-caption-halftone-color);
|
|
90
90
|
border-color: var(--button-border-color);
|
|
91
91
|
}
|
|
92
|
-
.
|
|
92
|
+
._2AiE1.-clickable:hover, ._2AiE1.-clickable:focus {
|
|
93
93
|
background-color: var(--button-bg-color-halftone-hover);
|
|
94
94
|
color: var(--button-caption-halftone-color);
|
|
95
95
|
fill: var(--button-caption-halftone-color);
|
|
96
96
|
border-color: var(--button-border-color);
|
|
97
97
|
}
|
|
98
|
-
.
|
|
98
|
+
._2AiE1.-clickable:active {
|
|
99
99
|
background-color: var(--button-bg-color-halftone-active);
|
|
100
100
|
color: var(--button-caption-halftone-color);
|
|
101
101
|
fill: var(--button-caption-halftone-color);
|
|
102
102
|
border-color: var(--button-border-color);
|
|
103
103
|
}
|
|
104
|
-
.
|
|
104
|
+
._2AiE1.uui-disabled {
|
|
105
105
|
background-color: var(--button-bg-color-halftone);
|
|
106
106
|
color: var(--button-caption-color-disabled);
|
|
107
107
|
fill: var(--button-caption-color-disabled);
|
|
108
108
|
border-color: var(--button-border-color-disabled);
|
|
109
109
|
}
|
|
110
|
-
.
|
|
110
|
+
._2AiE1.-clickable.uui-disabled, ._2AiE1:hover.uui-disabled, ._2AiE1:active.uui-disabled, ._2AiE1:focus.uui-disabled {
|
|
111
111
|
background-color: var(--button-bg-color-halftone);
|
|
112
112
|
color: var(--button-caption-color-disabled);
|
|
113
113
|
fill: var(--button-caption-color-disabled);
|
|
114
114
|
border-color: var(--button-border-color-disabled);
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
.
|
|
117
|
+
._3kF_i {
|
|
118
118
|
background-color: transparent;
|
|
119
119
|
color: var(--button-caption-halftone-color);
|
|
120
120
|
fill: var(--button-caption-halftone-color);
|
|
121
121
|
border-color: var(--button-border-color);
|
|
122
122
|
}
|
|
123
|
-
.
|
|
123
|
+
._3kF_i.-clickable:hover, ._3kF_i.-clickable:focus {
|
|
124
124
|
background-color: var(--button-bg-color-halftone-hover);
|
|
125
125
|
color: var(--button-caption-halftone-color);
|
|
126
126
|
fill: var(--button-caption-halftone-color);
|
|
127
127
|
border-color: var(--button-border-color);
|
|
128
128
|
}
|
|
129
|
-
.
|
|
129
|
+
._3kF_i.-clickable:active {
|
|
130
130
|
background-color: var(--button-bg-color-halftone-active);
|
|
131
131
|
color: var(--button-caption-halftone-color);
|
|
132
132
|
fill: var(--button-caption-halftone-color);
|
|
133
133
|
border-color: var(--button-border-color);
|
|
134
134
|
}
|
|
135
|
-
.
|
|
135
|
+
._3kF_i.uui-disabled {
|
|
136
136
|
background-color: transparent;
|
|
137
137
|
color: var(--button-caption-color-disabled);
|
|
138
138
|
fill: var(--button-caption-color-disabled);
|
|
139
139
|
border-color: var(--button-border-color-disabled);
|
|
140
140
|
}
|
|
141
|
-
.
|
|
141
|
+
._3kF_i.-clickable.uui-disabled, ._3kF_i:hover.uui-disabled, ._3kF_i:active.uui-disabled, ._3kF_i:focus.uui-disabled {
|
|
142
142
|
background-color: transparent;
|
|
143
143
|
color: var(--button-caption-color-disabled);
|
|
144
144
|
fill: var(--button-caption-color-disabled);
|
|
145
145
|
border-color: var(--button-border-color-disabled);
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
.
|
|
148
|
+
._16zcg {
|
|
149
149
|
background-color: transparent;
|
|
150
150
|
color: var(--button-caption-halftone-color);
|
|
151
151
|
fill: var(--button-caption-halftone-color);
|
|
152
152
|
border-color: transparent;
|
|
153
153
|
}
|
|
154
|
-
.
|
|
154
|
+
._16zcg.-clickable:hover, ._16zcg.-clickable:focus {
|
|
155
155
|
background-color: var(--button-bg-color-halftone-hover);
|
|
156
156
|
border-color: var(--button-bg-color-halftone-hover);
|
|
157
157
|
}
|
|
158
|
-
.
|
|
158
|
+
._16zcg.-clickable:active {
|
|
159
159
|
background-color: var(--button-bg-color-halftone-active);
|
|
160
160
|
border-color: var(--button-bg-color-halftone-active);
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
._16zcg.uui-disabled {
|
|
163
163
|
background-color: transparent;
|
|
164
164
|
color: var(--button-caption-color-disabled);
|
|
165
165
|
fill: var(--button-caption-color-disabled);
|
|
166
166
|
border-color: transparent;
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
._16zcg.-clickable.uui-disabled, ._16zcg:hover.uui-disabled, ._16zcg:active.uui-disabled, ._16zcg:focus.uui-disabled {
|
|
169
169
|
background-color: transparent;
|
|
170
170
|
color: var(--button-caption-color-disabled);
|
|
171
171
|
fill: var(--button-caption-color-disabled);
|
|
172
172
|
border-color: transparent;
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
.
|
|
175
|
+
.OFy-c {
|
|
176
176
|
min-width: 24px;
|
|
177
177
|
padding-left: 5px;
|
|
178
178
|
padding-right: 5px;
|
|
179
179
|
}
|
|
180
|
-
.
|
|
180
|
+
.OFy-c .uui-caption {
|
|
181
181
|
padding-left: 6px;
|
|
182
182
|
padding-right: 6px;
|
|
183
183
|
}
|
|
184
|
-
.
|
|
184
|
+
.OFy-c.uui-button-box {
|
|
185
185
|
min-height: 24px;
|
|
186
186
|
border-width: 1px;
|
|
187
187
|
}
|
|
188
|
-
.
|
|
188
|
+
.OFy-c .uui-caption {
|
|
189
189
|
line-height: 18px;
|
|
190
190
|
font-size: 12px;
|
|
191
191
|
padding-top: 2px;
|
|
192
192
|
padding-bottom: 2px;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
.
|
|
195
|
+
._1qv6z {
|
|
196
196
|
min-width: 30px;
|
|
197
197
|
padding-left: 5px;
|
|
198
198
|
padding-right: 5px;
|
|
199
199
|
}
|
|
200
|
-
.
|
|
200
|
+
._1qv6z .uui-caption {
|
|
201
201
|
padding-left: 6px;
|
|
202
202
|
padding-right: 6px;
|
|
203
203
|
}
|
|
204
|
-
.
|
|
204
|
+
._1qv6z.uui-button-box {
|
|
205
205
|
min-height: 30px;
|
|
206
206
|
border-width: 1px;
|
|
207
207
|
}
|
|
208
|
-
.
|
|
208
|
+
._1qv6z .uui-caption {
|
|
209
209
|
line-height: 18px;
|
|
210
210
|
font-size: 14px;
|
|
211
211
|
padding-top: 5px;
|
|
212
212
|
padding-bottom: 5px;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
.
|
|
215
|
+
._3yFGo {
|
|
216
216
|
min-width: 36px;
|
|
217
217
|
padding-left: 5px;
|
|
218
218
|
padding-right: 5px;
|
|
219
219
|
}
|
|
220
|
-
.
|
|
220
|
+
._3yFGo .uui-caption {
|
|
221
221
|
padding-left: 6px;
|
|
222
222
|
padding-right: 6px;
|
|
223
223
|
}
|
|
224
|
-
.
|
|
224
|
+
._3yFGo.uui-button-box {
|
|
225
225
|
min-height: 36px;
|
|
226
226
|
border-width: 1px;
|
|
227
227
|
}
|
|
228
|
-
.
|
|
228
|
+
._3yFGo .uui-caption {
|
|
229
229
|
line-height: 18px;
|
|
230
230
|
font-size: 14px;
|
|
231
231
|
padding-top: 8px;
|
|
232
232
|
padding-bottom: 8px;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
|
-
.
|
|
235
|
+
._3tBo_ {
|
|
236
236
|
min-width: 42px;
|
|
237
237
|
padding-left: 11px;
|
|
238
238
|
padding-right: 11px;
|
|
239
239
|
}
|
|
240
|
-
.
|
|
240
|
+
._3tBo_ .uui-caption {
|
|
241
241
|
padding-left: 6px;
|
|
242
242
|
padding-right: 6px;
|
|
243
243
|
}
|
|
244
|
-
.
|
|
244
|
+
._3tBo_.uui-button-box {
|
|
245
245
|
min-height: 42px;
|
|
246
246
|
border-width: 1px;
|
|
247
247
|
}
|
|
248
|
-
.
|
|
248
|
+
._3tBo_ .uui-caption {
|
|
249
249
|
line-height: 24px;
|
|
250
250
|
font-size: 16px;
|
|
251
251
|
padding-top: 8px;
|
|
252
252
|
padding-bottom: 8px;
|
|
253
253
|
font-size: 14px;
|
|
254
254
|
}
|
|
255
|
-
.
|
|
255
|
+
._3tBo_ .uui-caption {
|
|
256
256
|
font-family: var(--font-primary);
|
|
257
257
|
text-transform: uppercase;
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
.
|
|
260
|
+
.r9Kq2 {
|
|
261
261
|
min-width: 48px;
|
|
262
262
|
padding-left: 11px;
|
|
263
263
|
padding-right: 11px;
|
|
264
264
|
}
|
|
265
|
-
.
|
|
265
|
+
.r9Kq2 .uui-caption {
|
|
266
266
|
padding-left: 6px;
|
|
267
267
|
padding-right: 6px;
|
|
268
268
|
}
|
|
269
|
-
.
|
|
269
|
+
.r9Kq2.uui-button-box {
|
|
270
270
|
min-height: 48px;
|
|
271
271
|
border-width: 1px;
|
|
272
272
|
}
|
|
273
|
-
.
|
|
273
|
+
.r9Kq2 .uui-caption {
|
|
274
274
|
line-height: 24px;
|
|
275
275
|
font-size: 16px;
|
|
276
276
|
padding-top: 11px;
|
|
277
277
|
padding-bottom: 11px;
|
|
278
278
|
font-size: 14px;
|
|
279
279
|
}
|
|
280
|
-
.
|
|
280
|
+
.r9Kq2 .uui-caption {
|
|
281
281
|
font-family: var(--font-primary);
|
|
282
282
|
text-transform: uppercase;
|
|
283
283
|
}
|
|
@@ -393,182 +393,182 @@
|
|
|
393
393
|
--icon-button-icon-color-active: var(--secondary-active-color);
|
|
394
394
|
--icon-button-icon-color-disabled: var(--secondary-disabled-color);
|
|
395
395
|
}
|
|
396
|
-
.
|
|
396
|
+
.R4vSy {
|
|
397
397
|
fill: var(--icon-button-icon-color);
|
|
398
398
|
}
|
|
399
|
-
.
|
|
399
|
+
.R4vSy.-clickable:hover, .R4vSy.-clickable:focus {
|
|
400
400
|
fill: var(--icon-button-icon-color-hover);
|
|
401
401
|
}
|
|
402
|
-
.
|
|
402
|
+
.R4vSy.-clickable:active {
|
|
403
403
|
fill: var(--icon-button-icon-color-active);
|
|
404
404
|
}
|
|
405
|
-
.
|
|
405
|
+
.R4vSy.uui-disabled {
|
|
406
406
|
fill: var(--icon-button-icon-color-disabled);
|
|
407
407
|
}
|
|
408
|
-
.
|
|
408
|
+
.R4vSy.uui-disabled.-clickable:hover, .R4vSy.uui-disabled.-clickable:focus {
|
|
409
409
|
fill: var(--icon-button-icon-color-disabled);
|
|
410
410
|
}
|
|
411
|
-
.
|
|
411
|
+
.R4vSy.uui-disabled.-clickable:active {
|
|
412
412
|
fill: var(--icon-button-icon-color-disabled);
|
|
413
413
|
}
|
|
414
|
-
.
|
|
414
|
+
.R4vSy.uui-invalid {
|
|
415
415
|
fill: var(--icon-button-icon-color-invalid);
|
|
416
416
|
}
|
|
417
|
-
.
|
|
417
|
+
._3D2cP.uui-button-box {
|
|
418
418
|
background-color: transparent;
|
|
419
419
|
color: var(--link-button-text-color);
|
|
420
420
|
fill: var(--link-button-text-color);
|
|
421
421
|
}
|
|
422
|
-
.
|
|
422
|
+
._3D2cP.uui-button-box.-clickable:not(.uui-disabled):hover, ._3D2cP.uui-button-box.-clickable:not(.uui-disabled):focus {
|
|
423
423
|
color: var(--link-button-text-color-hover);
|
|
424
424
|
fill: var(--link-button-text-color-hover);
|
|
425
425
|
}
|
|
426
|
-
.
|
|
426
|
+
._3D2cP.uui-button-box.-clickable:not(.uui-disabled):active {
|
|
427
427
|
color: var(--link-button-text-color-active);
|
|
428
428
|
fill: var(--link-button-text-color-active);
|
|
429
429
|
}
|
|
430
|
-
.
|
|
430
|
+
._3D2cP.uui-button-box.-clickable:not(.uui-disabled):focus {
|
|
431
431
|
box-shadow: none;
|
|
432
432
|
}
|
|
433
|
-
.
|
|
433
|
+
._3D2cP.uui-button-box.uui-disabled {
|
|
434
434
|
color: var(--link-button-text-color-disabled);
|
|
435
435
|
fill: var(--link-button-text-color-disabled);
|
|
436
436
|
background-color: transparent;
|
|
437
437
|
}
|
|
438
|
-
.
|
|
438
|
+
._3D2cP.uui-button-box.uui-disabled:hover {
|
|
439
439
|
background-color: transparent;
|
|
440
440
|
}
|
|
441
|
-
.
|
|
441
|
+
._3D2cP .uui-caption {
|
|
442
442
|
font-family: var(--font-semibold);
|
|
443
443
|
font-weight: normal;
|
|
444
444
|
}
|
|
445
|
-
.
|
|
445
|
+
._3D2cP.vW0wM {
|
|
446
446
|
min-width: 18px;
|
|
447
447
|
min-width: auto;
|
|
448
448
|
}
|
|
449
|
-
.
|
|
449
|
+
._3D2cP.vW0wM.uui-has-left-icon .uui-caption {
|
|
450
450
|
padding-left: 6px;
|
|
451
451
|
}
|
|
452
|
-
.
|
|
452
|
+
._3D2cP.vW0wM.uui-has-right-icon .uui-caption {
|
|
453
453
|
padding-right: 6px;
|
|
454
454
|
}
|
|
455
|
-
.
|
|
455
|
+
._3D2cP.vW0wM.uui-button-box {
|
|
456
456
|
min-height: 18px;
|
|
457
457
|
border-width: 0;
|
|
458
458
|
}
|
|
459
|
-
.
|
|
459
|
+
._3D2cP.vW0wM .uui-caption {
|
|
460
460
|
line-height: 12px;
|
|
461
461
|
font-size: 10px;
|
|
462
462
|
padding-top: 3px;
|
|
463
463
|
padding-bottom: 3px;
|
|
464
464
|
}
|
|
465
|
-
.
|
|
465
|
+
._3D2cP._3RMWF {
|
|
466
466
|
min-width: 24px;
|
|
467
467
|
min-width: auto;
|
|
468
468
|
}
|
|
469
|
-
.
|
|
469
|
+
._3D2cP._3RMWF.uui-has-left-icon .uui-caption {
|
|
470
470
|
padding-left: 6px;
|
|
471
471
|
}
|
|
472
|
-
.
|
|
472
|
+
._3D2cP._3RMWF.uui-has-right-icon .uui-caption {
|
|
473
473
|
padding-right: 6px;
|
|
474
474
|
}
|
|
475
|
-
.
|
|
475
|
+
._3D2cP._3RMWF.uui-button-box {
|
|
476
476
|
min-height: 24px;
|
|
477
477
|
border-width: 0;
|
|
478
478
|
}
|
|
479
|
-
.
|
|
479
|
+
._3D2cP._3RMWF .uui-caption {
|
|
480
480
|
line-height: 18px;
|
|
481
481
|
font-size: 12px;
|
|
482
482
|
padding-top: 3px;
|
|
483
483
|
padding-bottom: 3px;
|
|
484
484
|
}
|
|
485
|
-
.
|
|
485
|
+
._3D2cP._2-v4N {
|
|
486
486
|
min-width: 30px;
|
|
487
487
|
min-width: auto;
|
|
488
488
|
}
|
|
489
|
-
.
|
|
489
|
+
._3D2cP._2-v4N.uui-has-left-icon .uui-caption {
|
|
490
490
|
padding-left: 6px;
|
|
491
491
|
}
|
|
492
|
-
.
|
|
492
|
+
._3D2cP._2-v4N.uui-has-right-icon .uui-caption {
|
|
493
493
|
padding-right: 6px;
|
|
494
494
|
}
|
|
495
|
-
.
|
|
495
|
+
._3D2cP._2-v4N.uui-button-box {
|
|
496
496
|
min-height: 30px;
|
|
497
497
|
border-width: 0;
|
|
498
498
|
}
|
|
499
|
-
.
|
|
499
|
+
._3D2cP._2-v4N .uui-caption {
|
|
500
500
|
line-height: 18px;
|
|
501
501
|
font-size: 14px;
|
|
502
502
|
padding-top: 6px;
|
|
503
503
|
padding-bottom: 6px;
|
|
504
504
|
}
|
|
505
|
-
.
|
|
505
|
+
._3D2cP._1zswv {
|
|
506
506
|
min-width: 36px;
|
|
507
507
|
min-width: auto;
|
|
508
508
|
}
|
|
509
|
-
.
|
|
509
|
+
._3D2cP._1zswv.uui-has-left-icon .uui-caption {
|
|
510
510
|
padding-left: 6px;
|
|
511
511
|
}
|
|
512
|
-
.
|
|
512
|
+
._3D2cP._1zswv.uui-has-right-icon .uui-caption {
|
|
513
513
|
padding-right: 6px;
|
|
514
514
|
}
|
|
515
|
-
.
|
|
515
|
+
._3D2cP._1zswv.uui-button-box {
|
|
516
516
|
min-height: 36px;
|
|
517
517
|
border-width: 0;
|
|
518
518
|
}
|
|
519
|
-
.
|
|
519
|
+
._3D2cP._1zswv .uui-caption {
|
|
520
520
|
line-height: 18px;
|
|
521
521
|
font-size: 14px;
|
|
522
522
|
padding-top: 9px;
|
|
523
523
|
padding-bottom: 9px;
|
|
524
524
|
}
|
|
525
|
-
.
|
|
525
|
+
._3D2cP._1BnJD {
|
|
526
526
|
min-width: 42px;
|
|
527
527
|
min-width: auto;
|
|
528
528
|
}
|
|
529
|
-
.
|
|
529
|
+
._3D2cP._1BnJD.uui-has-left-icon .uui-caption {
|
|
530
530
|
padding-left: 6px;
|
|
531
531
|
}
|
|
532
|
-
.
|
|
532
|
+
._3D2cP._1BnJD.uui-has-right-icon .uui-caption {
|
|
533
533
|
padding-right: 6px;
|
|
534
534
|
}
|
|
535
|
-
.
|
|
535
|
+
._3D2cP._1BnJD.uui-button-box {
|
|
536
536
|
min-height: 42px;
|
|
537
537
|
border-width: 0;
|
|
538
538
|
}
|
|
539
|
-
.
|
|
539
|
+
._3D2cP._1BnJD .uui-caption {
|
|
540
540
|
line-height: 24px;
|
|
541
541
|
font-size: 16px;
|
|
542
542
|
padding-top: 9px;
|
|
543
543
|
padding-bottom: 9px;
|
|
544
544
|
font-size: 14px;
|
|
545
545
|
}
|
|
546
|
-
.
|
|
546
|
+
._3D2cP._1BnJD .uui-caption {
|
|
547
547
|
font-family: var(--font-primary);
|
|
548
548
|
text-transform: uppercase;
|
|
549
549
|
}
|
|
550
|
-
.
|
|
550
|
+
._3D2cP._3LDtU {
|
|
551
551
|
min-width: 48px;
|
|
552
552
|
min-width: auto;
|
|
553
553
|
}
|
|
554
|
-
.
|
|
554
|
+
._3D2cP._3LDtU.uui-has-left-icon .uui-caption {
|
|
555
555
|
padding-left: 6px;
|
|
556
556
|
}
|
|
557
|
-
.
|
|
557
|
+
._3D2cP._3LDtU.uui-has-right-icon .uui-caption {
|
|
558
558
|
padding-right: 6px;
|
|
559
559
|
}
|
|
560
|
-
.
|
|
560
|
+
._3D2cP._3LDtU.uui-button-box {
|
|
561
561
|
min-height: 48px;
|
|
562
562
|
border-width: 0;
|
|
563
563
|
}
|
|
564
|
-
.
|
|
564
|
+
._3D2cP._3LDtU .uui-caption {
|
|
565
565
|
line-height: 24px;
|
|
566
566
|
font-size: 16px;
|
|
567
567
|
padding-top: 12px;
|
|
568
568
|
padding-bottom: 12px;
|
|
569
569
|
font-size: 14px;
|
|
570
570
|
}
|
|
571
|
-
.
|
|
571
|
+
._3D2cP._3LDtU .uui-caption {
|
|
572
572
|
font-family: var(--font-primary);
|
|
573
573
|
text-transform: uppercase;
|
|
574
574
|
}
|
|
@@ -586,7 +586,7 @@
|
|
|
586
586
|
--tab-button-count-bg-color: white;
|
|
587
587
|
--tab-button-count-color: var(--text-secondary-color);
|
|
588
588
|
}
|
|
589
|
-
.
|
|
589
|
+
._2QIsK {
|
|
590
590
|
min-width: 36px;
|
|
591
591
|
color: var(--tab-button-text-color);
|
|
592
592
|
fill: var(--tab-button-text-color);
|
|
@@ -602,39 +602,39 @@
|
|
|
602
602
|
font-weight: normal;
|
|
603
603
|
border-bottom: 3px solid transparent;
|
|
604
604
|
}
|
|
605
|
-
.
|
|
605
|
+
._2QIsK.uui-has-left-icon .uui-caption {
|
|
606
606
|
padding-left: 6px;
|
|
607
607
|
}
|
|
608
|
-
.
|
|
608
|
+
._2QIsK.uui-has-right-icon .uui-caption {
|
|
609
609
|
padding-right: 6px;
|
|
610
610
|
}
|
|
611
|
-
.
|
|
611
|
+
._2QIsK:hover, ._2QIsK:focus {
|
|
612
612
|
color: var(--tab-button-text-color-active);
|
|
613
613
|
fill: var(--tab-button-text-color-active);
|
|
614
614
|
}
|
|
615
|
-
.
|
|
615
|
+
._2QIsK.uui-active {
|
|
616
616
|
color: var(--tab-button-text-color-active);
|
|
617
617
|
fill: var(--tab-button-text-color-active);
|
|
618
618
|
border-color: var(--tab-button-text-color-active);
|
|
619
619
|
}
|
|
620
|
-
.
|
|
620
|
+
._2QIsK.uui-active {
|
|
621
621
|
border-color: var(--tab-button-text-color-active);
|
|
622
622
|
}
|
|
623
|
-
.
|
|
623
|
+
._2QIsK.uui-disabled {
|
|
624
624
|
color: var(--tab-button-text-color-disabled);
|
|
625
625
|
fill: var(--tab-button-text-color-disabled);
|
|
626
626
|
background-color: transparent;
|
|
627
627
|
}
|
|
628
|
-
.
|
|
628
|
+
._2QIsK.uui-disabled:hover, ._2QIsK.uui-disabled:focus {
|
|
629
629
|
color: var(--tab-button-text-color-disabled);
|
|
630
630
|
fill: var(--tab-button-text-color-disabled);
|
|
631
631
|
}
|
|
632
|
-
.
|
|
632
|
+
._2QIsK.uui-disabled.uui-active {
|
|
633
633
|
color: var(--tab-button-text-color-disabled);
|
|
634
634
|
fill: var(--tab-button-text-color-disabled);
|
|
635
635
|
border-color: var(--tab-button-text-color-disabled);
|
|
636
636
|
}
|
|
637
|
-
.
|
|
637
|
+
._2QIsK._1EXcr::after {
|
|
638
638
|
content: "";
|
|
639
639
|
margin-bottom: 18px;
|
|
640
640
|
height: 6px;
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
box-shadow: 0 1px 8px 0 var(--negative-color);
|
|
644
644
|
border-radius: 50%;
|
|
645
645
|
}
|
|
646
|
-
.
|
|
646
|
+
._2QIsK .uui-count {
|
|
647
647
|
line-height: 18px;
|
|
648
648
|
font-size: 12px;
|
|
649
649
|
padding-top: 3px;
|
|
@@ -656,112 +656,112 @@
|
|
|
656
656
|
margin-right: 3px;
|
|
657
657
|
border-radius: 9px;
|
|
658
658
|
}
|
|
659
|
-
.
|
|
659
|
+
._2QIsK .uui-caption {
|
|
660
660
|
line-height: 18px;
|
|
661
661
|
font-size: 14px;
|
|
662
662
|
padding-top: 9px;
|
|
663
663
|
padding-bottom: 9px;
|
|
664
664
|
}
|
|
665
|
-
.
|
|
665
|
+
._2QIsK._3V1yR {
|
|
666
666
|
height: 36px;
|
|
667
667
|
}
|
|
668
|
-
.
|
|
668
|
+
._2QIsK._3pUQx {
|
|
669
669
|
height: 48px;
|
|
670
670
|
}
|
|
671
|
-
.
|
|
671
|
+
._2QIsK.cjk6x {
|
|
672
672
|
height: 60px;
|
|
673
673
|
}
|
|
674
|
-
.
|
|
674
|
+
.P6p3T {
|
|
675
675
|
border-bottom: none;
|
|
676
676
|
border-left: 3px solid transparent;
|
|
677
677
|
}
|
|
678
|
-
.
|
|
678
|
+
._3-JqS:hover .uui-checkbox, ._3-JqS:active .uui-checkbox, ._3-JqS:focus-within .uui-checkbox {
|
|
679
679
|
border-color: var(--checkbox-border-color-hover);
|
|
680
680
|
}
|
|
681
|
-
.
|
|
681
|
+
._3-JqS:hover .uui-checked, ._3-JqS:active .uui-checked, ._3-JqS:focus-within .uui-checked {
|
|
682
682
|
background-color: var(--checkbox-bg-color-checked-hover);
|
|
683
683
|
}
|
|
684
|
-
.
|
|
684
|
+
._3-JqS .uui-checkbox {
|
|
685
685
|
background-color: var(--checkbox-bg-color);
|
|
686
686
|
border: 1px solid var(--checkbox-border-color);
|
|
687
687
|
border-radius: var(--checkbox-border-radius);
|
|
688
688
|
}
|
|
689
|
-
.
|
|
689
|
+
._3-JqS .uui-input-label {
|
|
690
690
|
font-family: var(--font-regular);
|
|
691
691
|
color: var(--checkbox-label-color);
|
|
692
692
|
margin-left: 12px;
|
|
693
693
|
flex-grow: 1;
|
|
694
694
|
}
|
|
695
|
-
.
|
|
695
|
+
._3-JqS .uui-checked {
|
|
696
696
|
background-color: var(--checkbox-bg-color-checked);
|
|
697
697
|
border-color: var(--checkbox-border-color-checked);
|
|
698
698
|
fill: var(--checkbox-fill-color);
|
|
699
699
|
}
|
|
700
|
-
.
|
|
700
|
+
._3-JqS.uui-disabled, ._3-JqS.uui-readonly {
|
|
701
701
|
cursor: default;
|
|
702
702
|
}
|
|
703
|
-
.
|
|
703
|
+
._3-JqS.uui-disabled .uui-checkbox, ._3-JqS.uui-readonly .uui-checkbox {
|
|
704
704
|
cursor: default;
|
|
705
705
|
background-color: var(--checkbox-bg-color-disabled);
|
|
706
706
|
border-color: var(--checkbox-border-color-disabled);
|
|
707
707
|
}
|
|
708
|
-
.
|
|
708
|
+
._3-JqS.uui-disabled:hover.uui-checkbox, ._3-JqS.uui-disabled.uui-checked.uui-checkbox, ._3-JqS.uui-disabled:focus-within.uui-checkbox, ._3-JqS.uui-readonly:hover.uui-checkbox, ._3-JqS.uui-readonly.uui-checked.uui-checkbox, ._3-JqS.uui-readonly:focus-within.uui-checkbox {
|
|
709
709
|
border-color: var(--checkbox-border-color-checked-disabled);
|
|
710
710
|
}
|
|
711
|
-
.
|
|
711
|
+
._3-JqS.uui-disabled:hover.uui-icon, ._3-JqS.uui-disabled.uui-checked.uui-icon, ._3-JqS.uui-disabled:focus-within.uui-icon, ._3-JqS.uui-readonly:hover.uui-icon, ._3-JqS.uui-readonly.uui-checked.uui-icon, ._3-JqS.uui-readonly:focus-within.uui-icon {
|
|
712
712
|
background-color: var(--checkbox-bg-color-checked-disabled);
|
|
713
713
|
border-color: var(--checkbox-border-color-checked-disabled);
|
|
714
714
|
}
|
|
715
|
-
.
|
|
715
|
+
._3-JqS.uui-disabled .uui-input-label, ._3-JqS.uui-readonly .uui-input-label {
|
|
716
716
|
color: var(--checkbox-label-color-disabled);
|
|
717
717
|
}
|
|
718
|
-
.
|
|
718
|
+
._3-JqS.uui-disabled .uui-checked, ._3-JqS.uui-readonly .uui-checked {
|
|
719
719
|
background-color: var(--checkbox-bg-color-checked-disabled);
|
|
720
720
|
border-color: var(--checkbox-border-color-checked-disabled);
|
|
721
721
|
}
|
|
722
|
-
.
|
|
722
|
+
._3-JqS.uui-invalid .uui-checkbox {
|
|
723
723
|
border-color: var(--checkbox-error-color);
|
|
724
724
|
fill: var(--checkbox-error-color);
|
|
725
725
|
}
|
|
726
|
-
.
|
|
726
|
+
._3-JqS.uui-invalid .uui-checkbox:hover, ._3-JqS.uui-invalid .uui-checkbox:active, ._3-JqS.uui-invalid .uui-checkbox:focus-within {
|
|
727
727
|
border-color: var(--checkbox-error-color);
|
|
728
728
|
fill: var(--checkbox-error-color);
|
|
729
729
|
}
|
|
730
|
-
.
|
|
730
|
+
._3-JqS.uui-invalid .uui-checkbox.uui-checked {
|
|
731
731
|
fill: var(--checkbox-fill-color);
|
|
732
732
|
background-color: var(--checkbox-error-color);
|
|
733
733
|
border-color: var(--checkbox-error-color);
|
|
734
734
|
}
|
|
735
|
-
.
|
|
735
|
+
._3-JqS.uui-invalid .uui-checkbox.uui-checked:hover, ._3-JqS.uui-invalid .uui-checkbox.uui-checked:active, ._3-JqS.uui-invalid .uui-checkbox.uui-checked:focus-within {
|
|
736
736
|
background-color: var(--checkbox-error-color);
|
|
737
737
|
border-color: var(--checkbox-error-color);
|
|
738
738
|
}
|
|
739
|
-
.
|
|
739
|
+
._3-JqS.uui-invalid .uui-input-label {
|
|
740
740
|
color: var(--checkbox-error-color);
|
|
741
741
|
}
|
|
742
|
-
.
|
|
742
|
+
._3-JqS._2aevd .uui-checkbox {
|
|
743
743
|
width: 18px;
|
|
744
744
|
height: 18px;
|
|
745
745
|
}
|
|
746
|
-
.
|
|
746
|
+
._3-JqS._2aevd .uui-checkbox .uui-icon svg {
|
|
747
747
|
width: 18px;
|
|
748
748
|
}
|
|
749
|
-
.
|
|
749
|
+
._3-JqS._2aevd .uui-input-label {
|
|
750
750
|
font-size: 14px;
|
|
751
751
|
line-height: 18px;
|
|
752
752
|
}
|
|
753
|
-
.
|
|
753
|
+
._3-JqS._2Blg3 .uui-checkbox {
|
|
754
754
|
width: 12px;
|
|
755
755
|
height: 12px;
|
|
756
756
|
}
|
|
757
|
-
.
|
|
757
|
+
._3-JqS._2Blg3 .uui-checkbox .uui-icon svg {
|
|
758
758
|
width: 12px;
|
|
759
759
|
}
|
|
760
|
-
.
|
|
760
|
+
._3-JqS._2Blg3 .uui-input-label {
|
|
761
761
|
font-size: 12px;
|
|
762
762
|
line-height: 12px;
|
|
763
763
|
}
|
|
764
|
-
.
|
|
764
|
+
._3-JqS._2Blg3 .uui-input-label {
|
|
765
765
|
margin-left: 6px;
|
|
766
766
|
}
|
|
767
767
|
.checkbox-vars {
|
|
@@ -796,36 +796,36 @@
|
|
|
796
796
|
--radio-input-fill-color-checked-disabled: var(--input-border-checked-disabled-color);
|
|
797
797
|
--radio-input-error-color: var(--negative-color);
|
|
798
798
|
}
|
|
799
|
-
.
|
|
799
|
+
._5X06G:hover .uui-radioinput, ._5X06G:focus-within .uui-radioinput {
|
|
800
800
|
border-color: var(--radio-input-border-color-hover);
|
|
801
801
|
}
|
|
802
|
-
.
|
|
802
|
+
._5X06G:hover .uui-radioinput.uui-checked, ._5X06G:focus-within .uui-radioinput.uui-checked {
|
|
803
803
|
border-color: var(--radio-input-border-color-hover);
|
|
804
804
|
}
|
|
805
|
-
.
|
|
805
|
+
._5X06G:hover .uui-radioinput.uui-checked .uui-icon, ._5X06G:focus-within .uui-radioinput.uui-checked .uui-icon {
|
|
806
806
|
fill: var(--radio-input-fill-color-hover);
|
|
807
807
|
}
|
|
808
|
-
.
|
|
808
|
+
._5X06G:hover.uui-disabled .uui-radioinput, ._5X06G:hover.uui-readonly .uui-radioinput, ._5X06G:focus-within.uui-disabled .uui-radioinput, ._5X06G:focus-within.uui-readonly .uui-radioinput {
|
|
809
809
|
background-color: var(--radio-input-bg-color-disabled);
|
|
810
810
|
border-color: var(--radio-input-border-color-disabled);
|
|
811
811
|
}
|
|
812
|
-
.
|
|
812
|
+
._5X06G:hover.uui-disabled .uui-radioinput .uui-icon, ._5X06G:hover.uui-readonly .uui-radioinput .uui-icon, ._5X06G:focus-within.uui-disabled .uui-radioinput .uui-icon, ._5X06G:focus-within.uui-readonly .uui-radioinput .uui-icon {
|
|
813
813
|
fill: var(--radio-input-fill-color-checked-disabled);
|
|
814
814
|
}
|
|
815
|
-
.
|
|
815
|
+
._5X06G .uui-radioinput {
|
|
816
816
|
background-color: var(--radio-input-bg-color);
|
|
817
817
|
border: 1px solid var(--radio-input-border-color);
|
|
818
818
|
align-self: baseline;
|
|
819
819
|
flex-shrink: 0;
|
|
820
820
|
box-sizing: border-box;
|
|
821
821
|
}
|
|
822
|
-
.
|
|
822
|
+
._5X06G .uui-radioinput.uui-checked {
|
|
823
823
|
border-color: var(--radio-input-border-color-checked);
|
|
824
824
|
}
|
|
825
|
-
.
|
|
825
|
+
._5X06G .uui-radioinput.uui-checked .uui-icon {
|
|
826
826
|
fill: var(--radio-input-fill-color-checked);
|
|
827
827
|
}
|
|
828
|
-
.
|
|
828
|
+
._5X06G .uui-input-label {
|
|
829
829
|
color: var(--radio-input-label-color);
|
|
830
830
|
flex-grow: 1;
|
|
831
831
|
font-family: var(--font-regular);
|
|
@@ -833,145 +833,145 @@
|
|
|
833
833
|
display: flex;
|
|
834
834
|
align-items: center;
|
|
835
835
|
}
|
|
836
|
-
.
|
|
836
|
+
._5X06G.uui-invalid .uui-icon {
|
|
837
837
|
fill: var(--radio-input-error-color);
|
|
838
838
|
}
|
|
839
|
-
.
|
|
839
|
+
._5X06G.uui-invalid .uui-input-label {
|
|
840
840
|
color: var(--radio-input-error-color);
|
|
841
841
|
}
|
|
842
|
-
.
|
|
842
|
+
._5X06G.uui-invalid .uui-radioinput {
|
|
843
843
|
border-color: var(--radio-input-error-color);
|
|
844
844
|
}
|
|
845
|
-
.
|
|
845
|
+
._5X06G.uui-invalid .uui-checked.uui-radioinput .uui-icon {
|
|
846
846
|
fill: var(--radio-input-error-color);
|
|
847
847
|
}
|
|
848
|
-
.
|
|
848
|
+
._5X06G.uui-invalid:hover .uui-radioinput, ._5X06G.uui-invalid:focus-within .uui-radioinput {
|
|
849
849
|
border-color: var(--radio-input-error-color);
|
|
850
850
|
}
|
|
851
|
-
.
|
|
851
|
+
._5X06G.uui-invalid:hover .uui-icon, ._5X06G.uui-invalid:focus-within .uui-icon {
|
|
852
852
|
fill: var(--radio-input-error-color);
|
|
853
853
|
}
|
|
854
|
-
.
|
|
854
|
+
._5X06G.uui-disabled, ._5X06G.uui-readonly {
|
|
855
855
|
cursor: default;
|
|
856
856
|
}
|
|
857
|
-
.
|
|
857
|
+
._5X06G.uui-disabled .uui-radioinput, ._5X06G.uui-readonly .uui-radioinput {
|
|
858
858
|
cursor: default;
|
|
859
859
|
background-color: var(--radio-input-bg-color-disabled);
|
|
860
860
|
border-color: var(--radio-input-border-color-disabled);
|
|
861
861
|
}
|
|
862
|
-
.
|
|
862
|
+
._5X06G.uui-disabled .uui-radioinput .uui-icon, ._5X06G.uui-readonly .uui-radioinput .uui-icon {
|
|
863
863
|
fill: var(--radio-input-fill-color-checked-disabled);
|
|
864
864
|
}
|
|
865
|
-
.
|
|
865
|
+
._5X06G.uui-disabled .uui-radioinput.uui-checked, ._5X06G.uui-readonly .uui-radioinput.uui-checked {
|
|
866
866
|
border-color: var(--radio-input-border-color-checked-disabled);
|
|
867
867
|
}
|
|
868
|
-
.
|
|
868
|
+
._5X06G.uui-disabled .uui-radioinput.uui-checked .uui-icon, ._5X06G.uui-readonly .uui-radioinput.uui-checked .uui-icon {
|
|
869
869
|
fill: var(--radio-input-fill-color-checked-disabled);
|
|
870
870
|
}
|
|
871
|
-
.
|
|
871
|
+
._5X06G.uui-disabled.uui-invalid .uui-radioinput, ._5X06G.uui-readonly.uui-invalid .uui-radioinput {
|
|
872
872
|
cursor: default;
|
|
873
873
|
background-color: var(--radio-input-bg-color-disabled);
|
|
874
874
|
border-color: var(--radio-input-border-color-disabled);
|
|
875
875
|
}
|
|
876
|
-
.
|
|
876
|
+
._5X06G.uui-disabled.uui-invalid .uui-radioinput .uui-icon, ._5X06G.uui-readonly.uui-invalid .uui-radioinput .uui-icon {
|
|
877
877
|
fill: var(--radio-input-fill-color-checked-disabled);
|
|
878
878
|
}
|
|
879
|
-
.
|
|
879
|
+
._5X06G.uui-readonly .uui-input-label {
|
|
880
880
|
color: var(--radio-input-label-color);
|
|
881
881
|
}
|
|
882
|
-
.
|
|
882
|
+
._5X06G.uui-disabled .uui-input-label {
|
|
883
883
|
color: var(--radio-input-label-color-disabled);
|
|
884
884
|
}
|
|
885
|
-
.
|
|
885
|
+
._5X06G.kFKdK .uui-radioinput {
|
|
886
886
|
width: 18px;
|
|
887
887
|
height: 18px;
|
|
888
888
|
border-radius: 9px;
|
|
889
889
|
margin: 0px 0;
|
|
890
890
|
}
|
|
891
|
-
.
|
|
891
|
+
._5X06G.kFKdK .uui-icon {
|
|
892
892
|
margin: 0px 0;
|
|
893
893
|
}
|
|
894
|
-
.
|
|
894
|
+
._5X06G.kFKdK .uui-icon svg {
|
|
895
895
|
height: 18px;
|
|
896
896
|
width: 18px;
|
|
897
897
|
}
|
|
898
|
-
.
|
|
898
|
+
._5X06G.kFKdK .uui-input-label {
|
|
899
899
|
font-size: 14px;
|
|
900
900
|
line-height: 18px;
|
|
901
901
|
}
|
|
902
|
-
.
|
|
902
|
+
._5X06G.pDIzq .uui-radioinput {
|
|
903
903
|
width: 12px;
|
|
904
904
|
height: 12px;
|
|
905
905
|
border-radius: 6px;
|
|
906
906
|
margin: 1px 0;
|
|
907
907
|
}
|
|
908
|
-
.
|
|
908
|
+
._5X06G.pDIzq .uui-icon {
|
|
909
909
|
margin: 1px 0;
|
|
910
910
|
}
|
|
911
|
-
.
|
|
911
|
+
._5X06G.pDIzq .uui-icon svg {
|
|
912
912
|
height: 12px;
|
|
913
913
|
width: 12px;
|
|
914
914
|
}
|
|
915
|
-
.
|
|
915
|
+
._5X06G.pDIzq .uui-input-label {
|
|
916
916
|
font-size: 12px;
|
|
917
917
|
line-height: 14px;
|
|
918
918
|
}
|
|
919
|
-
.
|
|
919
|
+
._5X06G.pDIzq .uui-input-label {
|
|
920
920
|
margin-left: 6px;
|
|
921
921
|
}
|
|
922
|
-
.
|
|
922
|
+
.pTQfT._3fygH .uui-switch-body {
|
|
923
923
|
height: 12px;
|
|
924
924
|
width: 24px;
|
|
925
925
|
}
|
|
926
|
-
.
|
|
926
|
+
.pTQfT._3fygH .uui-switch-toggler {
|
|
927
927
|
height: 12px;
|
|
928
928
|
width: 12px;
|
|
929
929
|
}
|
|
930
|
-
.
|
|
930
|
+
.pTQfT._3fygH .uui-input-label {
|
|
931
931
|
font-size: 12px;
|
|
932
932
|
letter-spacing: 0.2px;
|
|
933
933
|
}
|
|
934
|
-
.
|
|
934
|
+
.pTQfT._3fygH .uui-checked .uui-switch-toggler {
|
|
935
935
|
transform: translateX(12px);
|
|
936
936
|
}
|
|
937
|
-
.
|
|
937
|
+
.pTQfT._2a5s6 .uui-switch-body {
|
|
938
938
|
height: 18px;
|
|
939
939
|
width: 36px;
|
|
940
940
|
}
|
|
941
|
-
.
|
|
941
|
+
.pTQfT._2a5s6 .uui-switch-toggler {
|
|
942
942
|
height: 18px;
|
|
943
943
|
width: 18px;
|
|
944
944
|
}
|
|
945
|
-
.
|
|
945
|
+
.pTQfT._2a5s6 .uui-input-label {
|
|
946
946
|
font-size: 14px;
|
|
947
947
|
letter-spacing: 0.1px;
|
|
948
948
|
}
|
|
949
|
-
.
|
|
949
|
+
.pTQfT._2a5s6 .uui-checked .uui-switch-toggler {
|
|
950
950
|
transform: translateX(18px);
|
|
951
951
|
}
|
|
952
|
-
.
|
|
952
|
+
.pTQfT._1VjF3 .uui-switch-body {
|
|
953
953
|
height: 24px;
|
|
954
954
|
width: 48px;
|
|
955
955
|
}
|
|
956
|
-
.
|
|
956
|
+
.pTQfT._1VjF3 .uui-switch-toggler {
|
|
957
957
|
height: 24px;
|
|
958
958
|
width: 24px;
|
|
959
959
|
}
|
|
960
|
-
.
|
|
960
|
+
.pTQfT._1VjF3 .uui-input-label {
|
|
961
961
|
font-size: 14px;
|
|
962
962
|
letter-spacing: 0.1px;
|
|
963
963
|
}
|
|
964
|
-
.
|
|
964
|
+
.pTQfT._1VjF3 .uui-checked .uui-switch-toggler {
|
|
965
965
|
transform: translateX(24px);
|
|
966
966
|
}
|
|
967
|
-
.
|
|
967
|
+
.pTQfT .uui-switch-body {
|
|
968
968
|
background-color: var(--switch-bg-color);
|
|
969
969
|
border: 1px solid var(--switch-border-color);
|
|
970
970
|
width: 36px;
|
|
971
971
|
border-radius: 18px;
|
|
972
972
|
box-sizing: border-box;
|
|
973
973
|
}
|
|
974
|
-
.
|
|
974
|
+
.pTQfT .uui-switch-toggler {
|
|
975
975
|
left: -1px;
|
|
976
976
|
border-radius: 50%;
|
|
977
977
|
box-sizing: border-box;
|
|
@@ -979,54 +979,54 @@
|
|
|
979
979
|
border: 1px solid var(--switch-toggler-border-color);
|
|
980
980
|
transition: 0.1s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
981
981
|
}
|
|
982
|
-
.
|
|
982
|
+
.pTQfT .uui-input-label {
|
|
983
983
|
font-family: var(--font-regular);
|
|
984
984
|
color: var(--switch-label-color);
|
|
985
985
|
margin-left: 11px;
|
|
986
986
|
}
|
|
987
|
-
.
|
|
987
|
+
.pTQfT:hover .uui-switch-body, .pTQfT:focus-within .uui-switch-body {
|
|
988
988
|
background-color: var(--switch-bg-color-hover);
|
|
989
989
|
border-color: var(--switch-border-color-hover);
|
|
990
990
|
}
|
|
991
|
-
.
|
|
991
|
+
.pTQfT:hover .uui-switch-toggler, .pTQfT:focus-within .uui-switch-toggler {
|
|
992
992
|
border-color: var(--switch-toggler-border-color-hover);
|
|
993
993
|
}
|
|
994
|
-
.
|
|
994
|
+
.pTQfT:hover .uui-checked.uui-switch-body, .pTQfT:focus-within .uui-checked.uui-switch-body {
|
|
995
995
|
background-color: var(--switch-bg-color-checked-hover);
|
|
996
996
|
border-color: var(--switch-border-color-checked-hover);
|
|
997
997
|
}
|
|
998
|
-
.
|
|
998
|
+
.pTQfT:hover .uui-checked .uui-switch-toggler, .pTQfT:focus-within .uui-checked .uui-switch-toggler {
|
|
999
999
|
border-color: var(--switch-toggler-border-color-checked-hover);
|
|
1000
1000
|
}
|
|
1001
|
-
.
|
|
1001
|
+
.pTQfT .uui-checked.uui-switch-body {
|
|
1002
1002
|
background-color: var(--switch-bg-color-checked);
|
|
1003
1003
|
border: 1px solid var(--switch-border-color-checked);
|
|
1004
1004
|
}
|
|
1005
|
-
.
|
|
1005
|
+
.pTQfT .uui-checked.uui-switch-body .uui-switch-toggler {
|
|
1006
1006
|
border: 1px solid var(--switch-toggler-border-color-checked);
|
|
1007
1007
|
}
|
|
1008
|
-
.
|
|
1008
|
+
.pTQfT.uui-disabled .uui-input-label {
|
|
1009
1009
|
color: var(--switch-label-color-disabled);
|
|
1010
1010
|
}
|
|
1011
|
-
.
|
|
1012
|
-
.
|
|
1013
|
-
.
|
|
1014
|
-
.
|
|
1011
|
+
.pTQfT.uui-disabled,
|
|
1012
|
+
.pTQfT.uui-disabled .uui-switch-toggler,
|
|
1013
|
+
.pTQfT.uui-disabled .uui-switch-body,
|
|
1014
|
+
.pTQfT.uui-disabled .uui-input-label {
|
|
1015
1015
|
cursor: default;
|
|
1016
1016
|
}
|
|
1017
|
-
.
|
|
1017
|
+
.pTQfT.uui-disabled .uui-switch-body {
|
|
1018
1018
|
background-color: var(--switch-bg-color-disabled);
|
|
1019
1019
|
border: 1px solid var(--switch-border-color-disabled);
|
|
1020
1020
|
}
|
|
1021
|
-
.
|
|
1021
|
+
.pTQfT.uui-disabled .uui-switch-toggler, .pTQfT.uui-disabled:hover .uui-switch-toggler, .pTQfT.uui-disabled:focus-within .uui-switch-toggler {
|
|
1022
1022
|
background-color: var(--switch-toggler-bg-color-disabled);
|
|
1023
1023
|
border-color: var(--switch-toggler-border-color-disabled);
|
|
1024
1024
|
}
|
|
1025
|
-
.
|
|
1025
|
+
.pTQfT.uui-disabled .uui-checked.uui-switch-body {
|
|
1026
1026
|
background-color: var(--switch-bg-color-checked-disabled);
|
|
1027
1027
|
border: 1px solid var(--switch-border-color-checked-disabled);
|
|
1028
1028
|
}
|
|
1029
|
-
.
|
|
1029
|
+
.pTQfT.uui-disabled .uui-checked .uui-switch-toggler {
|
|
1030
1030
|
background-color: var(--switch-toggler-bg-color-disabled);
|
|
1031
1031
|
border-color: var(--switch-toggler-border-color-checked-disabled);
|
|
1032
1032
|
}
|
|
@@ -1054,7 +1054,7 @@
|
|
|
1054
1054
|
--switch-toggler-border-color-checked-hover: var(--input-bg-checked-hover-color);
|
|
1055
1055
|
--switch-toggler-border-color-checked-disabled: var(--input-bg-checked-disabled-color);
|
|
1056
1056
|
}
|
|
1057
|
-
.
|
|
1057
|
+
._3H26H {
|
|
1058
1058
|
fill: var(--text-input-icon-color);
|
|
1059
1059
|
border-style: solid;
|
|
1060
1060
|
box-sizing: border-box;
|
|
@@ -1062,159 +1062,159 @@
|
|
|
1062
1062
|
padding-right: 5px;
|
|
1063
1063
|
border-radius: var(--text-input-border-radius);
|
|
1064
1064
|
}
|
|
1065
|
-
.
|
|
1065
|
+
._3H26H .uui-input {
|
|
1066
1066
|
color: var(--text-input-text-color);
|
|
1067
1067
|
font-family: var(--font-regular);
|
|
1068
1068
|
padding-left: 6px;
|
|
1069
1069
|
padding-right: 6px;
|
|
1070
1070
|
}
|
|
1071
|
-
.
|
|
1071
|
+
._3H26H .uui-input::placeholder {
|
|
1072
1072
|
color: var(--text-input-placeholder-color);
|
|
1073
1073
|
}
|
|
1074
|
-
.
|
|
1074
|
+
._3H26H .uui-input:placeholder-shown {
|
|
1075
1075
|
text-overflow: ellipsis;
|
|
1076
1076
|
}
|
|
1077
|
-
.
|
|
1077
|
+
._3H26H .uui-input::-moz-placeholder {
|
|
1078
1078
|
opacity: 1;
|
|
1079
1079
|
}
|
|
1080
|
-
.
|
|
1080
|
+
._3H26H._30jWN {
|
|
1081
1081
|
background-color: var(--text-input-bg-color);
|
|
1082
1082
|
border-color: var(--text-input-border-color);
|
|
1083
1083
|
}
|
|
1084
|
-
.
|
|
1084
|
+
._3H26H._30jWN .-clickable {
|
|
1085
1085
|
fill: var(--text-input-icon-color-clickable);
|
|
1086
1086
|
}
|
|
1087
|
-
.
|
|
1087
|
+
._3H26H._30jWN .-clickable:hover {
|
|
1088
1088
|
fill: var(--text-input-icon-color-clickable-hover);
|
|
1089
1089
|
}
|
|
1090
|
-
.
|
|
1090
|
+
._3H26H._30jWN:hover {
|
|
1091
1091
|
border-color: var(--text-input-border-color-hover);
|
|
1092
1092
|
}
|
|
1093
|
-
.
|
|
1093
|
+
._3H26H._30jWN.uui-focus {
|
|
1094
1094
|
border-color: var(--text-input-border-color-active);
|
|
1095
1095
|
}
|
|
1096
|
-
.
|
|
1096
|
+
._3H26H.xig3t {
|
|
1097
1097
|
background-color: transparent;
|
|
1098
1098
|
border-color: transparent;
|
|
1099
1099
|
}
|
|
1100
|
-
.
|
|
1100
|
+
._3H26H.xig3t .uui-icon:first-child {
|
|
1101
1101
|
padding-left: 6px;
|
|
1102
1102
|
}
|
|
1103
|
-
.
|
|
1103
|
+
._3H26H.xig3t .-clickable {
|
|
1104
1104
|
fill: transparent;
|
|
1105
1105
|
}
|
|
1106
|
-
.
|
|
1106
|
+
._3H26H.xig3t:hover {
|
|
1107
1107
|
background-color: var(--text-input-bg-color);
|
|
1108
1108
|
border-color: var(--text-input-border-color);
|
|
1109
1109
|
}
|
|
1110
|
-
.
|
|
1110
|
+
._3H26H.xig3t:hover .-clickable {
|
|
1111
1111
|
fill: var(--text-input-icon-color-clickable);
|
|
1112
1112
|
}
|
|
1113
|
-
.
|
|
1113
|
+
._3H26H.xig3t:hover .-clickable:hover {
|
|
1114
1114
|
fill: var(--text-input-icon-color-clickable-hover);
|
|
1115
1115
|
}
|
|
1116
|
-
.
|
|
1116
|
+
._3H26H.xig3t.uui-focus {
|
|
1117
1117
|
background-color: var(--text-input-bg-color);
|
|
1118
1118
|
border-color: var(--text-input-border-color-active);
|
|
1119
1119
|
}
|
|
1120
|
-
.
|
|
1120
|
+
._3H26H.uui-invalid._30jWN, ._3H26H.uui-invalid.xig3t {
|
|
1121
1121
|
background-color: var(--text-input-bg-color);
|
|
1122
1122
|
border-color: var(--text-input-border-color-error);
|
|
1123
1123
|
}
|
|
1124
|
-
.
|
|
1124
|
+
._3H26H.uui-readonly {
|
|
1125
1125
|
color: var(--text-input-text-color);
|
|
1126
1126
|
fill: var(--text-input-icon-color);
|
|
1127
1127
|
pointer-events: none;
|
|
1128
1128
|
}
|
|
1129
|
-
.
|
|
1129
|
+
._3H26H.uui-readonly._30jWN {
|
|
1130
1130
|
background-color: var(--text-input-bg-color-readonly);
|
|
1131
1131
|
border-color: var(--text-input-border-color-readonly);
|
|
1132
1132
|
}
|
|
1133
|
-
.
|
|
1133
|
+
._3H26H.uui-readonly.xig3t {
|
|
1134
1134
|
background-color: transparent;
|
|
1135
1135
|
border-color: transparent;
|
|
1136
1136
|
}
|
|
1137
|
-
.
|
|
1137
|
+
._3H26H.uui-disabled {
|
|
1138
1138
|
color: var(--text-input-text-color-disabled);
|
|
1139
1139
|
fill: var(--text-input-icon-color-disabled);
|
|
1140
1140
|
pointer-events: none;
|
|
1141
1141
|
}
|
|
1142
|
-
.
|
|
1142
|
+
._3H26H.uui-disabled .uui-input {
|
|
1143
1143
|
color: var(--text-input-text-color-disabled);
|
|
1144
1144
|
}
|
|
1145
|
-
.
|
|
1145
|
+
._3H26H.uui-disabled .uui-input::placeholder {
|
|
1146
1146
|
color: var(--text-input-placeholder-color-disabled);
|
|
1147
1147
|
}
|
|
1148
|
-
.
|
|
1148
|
+
._3H26H.uui-disabled._30jWN {
|
|
1149
1149
|
background-color: var(--text-input-bg-color-disabled);
|
|
1150
1150
|
border-color: var(--text-input-border-color-disabled);
|
|
1151
1151
|
}
|
|
1152
|
-
.
|
|
1152
|
+
._3H26H.uui-disabled.xig3t {
|
|
1153
1153
|
background-color: transparent;
|
|
1154
1154
|
border-color: transparent;
|
|
1155
1155
|
}
|
|
1156
|
-
.
|
|
1156
|
+
._3H26H.UUYBe {
|
|
1157
1157
|
min-width: 24px;
|
|
1158
1158
|
}
|
|
1159
|
-
.
|
|
1159
|
+
._3H26H.UUYBe .uui-caption, ._3H26H.UUYBe .uui-input {
|
|
1160
1160
|
line-height: 18px;
|
|
1161
1161
|
font-size: 12px;
|
|
1162
1162
|
padding-top: 2px;
|
|
1163
1163
|
padding-bottom: 2px;
|
|
1164
1164
|
}
|
|
1165
|
-
.
|
|
1165
|
+
._3H26H.UUYBe.uui-button-box, ._3H26H.UUYBe.uui-input-box {
|
|
1166
1166
|
min-height: 24px;
|
|
1167
1167
|
border-width: 1px;
|
|
1168
1168
|
}
|
|
1169
|
-
.
|
|
1169
|
+
._3H26H._1p1vJ {
|
|
1170
1170
|
min-width: 30px;
|
|
1171
1171
|
}
|
|
1172
|
-
.
|
|
1172
|
+
._3H26H._1p1vJ .uui-caption, ._3H26H._1p1vJ .uui-input {
|
|
1173
1173
|
line-height: 18px;
|
|
1174
1174
|
font-size: 14px;
|
|
1175
1175
|
padding-top: 5px;
|
|
1176
1176
|
padding-bottom: 5px;
|
|
1177
1177
|
}
|
|
1178
|
-
.
|
|
1178
|
+
._3H26H._1p1vJ.uui-button-box, ._3H26H._1p1vJ.uui-input-box {
|
|
1179
1179
|
min-height: 30px;
|
|
1180
1180
|
border-width: 1px;
|
|
1181
1181
|
}
|
|
1182
|
-
.
|
|
1182
|
+
._3H26H.hA32B {
|
|
1183
1183
|
min-width: 36px;
|
|
1184
1184
|
}
|
|
1185
|
-
.
|
|
1185
|
+
._3H26H.hA32B .uui-caption, ._3H26H.hA32B .uui-input {
|
|
1186
1186
|
line-height: 18px;
|
|
1187
1187
|
font-size: 14px;
|
|
1188
1188
|
padding-top: 8px;
|
|
1189
1189
|
padding-bottom: 8px;
|
|
1190
1190
|
}
|
|
1191
|
-
.
|
|
1191
|
+
._3H26H.hA32B.uui-button-box, ._3H26H.hA32B.uui-input-box {
|
|
1192
1192
|
min-height: 36px;
|
|
1193
1193
|
border-width: 1px;
|
|
1194
1194
|
}
|
|
1195
|
-
.
|
|
1195
|
+
._3H26H._3SdK- {
|
|
1196
1196
|
min-width: 42px;
|
|
1197
1197
|
}
|
|
1198
|
-
.
|
|
1198
|
+
._3H26H._3SdK- .uui-caption, ._3H26H._3SdK- .uui-input {
|
|
1199
1199
|
line-height: 24px;
|
|
1200
1200
|
font-size: 16px;
|
|
1201
1201
|
padding-top: 8px;
|
|
1202
1202
|
padding-bottom: 8px;
|
|
1203
1203
|
}
|
|
1204
|
-
.
|
|
1204
|
+
._3H26H._3SdK-.uui-button-box, ._3H26H._3SdK-.uui-input-box {
|
|
1205
1205
|
min-height: 42px;
|
|
1206
1206
|
border-width: 1px;
|
|
1207
1207
|
}
|
|
1208
|
-
.
|
|
1208
|
+
._3H26H._2l7RZ {
|
|
1209
1209
|
min-width: 48px;
|
|
1210
1210
|
}
|
|
1211
|
-
.
|
|
1211
|
+
._3H26H._2l7RZ .uui-caption, ._3H26H._2l7RZ .uui-input {
|
|
1212
1212
|
line-height: 24px;
|
|
1213
1213
|
font-size: 16px;
|
|
1214
1214
|
padding-top: 11px;
|
|
1215
1215
|
padding-bottom: 11px;
|
|
1216
1216
|
}
|
|
1217
|
-
.
|
|
1217
|
+
._3H26H._2l7RZ.uui-button-box, ._3H26H._2l7RZ.uui-input-box {
|
|
1218
1218
|
min-height: 48px;
|
|
1219
1219
|
border-width: 1px;
|
|
1220
1220
|
}
|
|
@@ -1248,16 +1248,16 @@
|
|
|
1248
1248
|
--accordion-shadow: 0 3px 6px 0 rgba(29, 30, 38, 0.10), 0 1px 3px 0 rgba(29, 30, 38, 0.10);
|
|
1249
1249
|
--accordion-shadow-hovered: 0 6px 12px 0 rgba(29, 30, 38, 0.10), 0 3px 6px 0 rgba(29, 30, 38, 0.10);
|
|
1250
1250
|
}
|
|
1251
|
-
.
|
|
1251
|
+
.QcowB .uui-accordion-toggler {
|
|
1252
1252
|
font-family: var(--font-semibold);
|
|
1253
1253
|
color: var(--accordion-text-color);
|
|
1254
1254
|
cursor: pointer;
|
|
1255
1255
|
}
|
|
1256
|
-
.
|
|
1256
|
+
.QcowB .uui-accordion-body {
|
|
1257
1257
|
font-family: var(--font-regular);
|
|
1258
1258
|
color: var(--accordion-text-color);
|
|
1259
1259
|
}
|
|
1260
|
-
.
|
|
1260
|
+
.QcowB._1CIcy .uui-accordion-toggler {
|
|
1261
1261
|
background: var(--accordion-bg-color);
|
|
1262
1262
|
box-shadow: var(--accordion-shadow);
|
|
1263
1263
|
fill: var(--accordion-icon-color);
|
|
@@ -1265,18 +1265,18 @@
|
|
|
1265
1265
|
font-size: 18px;
|
|
1266
1266
|
padding: 0 18px;
|
|
1267
1267
|
}
|
|
1268
|
-
.
|
|
1268
|
+
.QcowB._1CIcy .uui-accordion-toggler .uui-accordion-toggle-container {
|
|
1269
1269
|
min-height: 48px;
|
|
1270
1270
|
padding-top: 5px;
|
|
1271
1271
|
padding-bottom: 5px;
|
|
1272
1272
|
}
|
|
1273
|
-
.
|
|
1273
|
+
.QcowB._1CIcy .uui-accordion-toggler .uui-accordion-title {
|
|
1274
1274
|
color: var(--accordion-text-color);
|
|
1275
1275
|
}
|
|
1276
|
-
.
|
|
1276
|
+
.QcowB._1CIcy .uui-accordion-toggler:hover, .QcowB._1CIcy .uui-accordion-toggler:focus {
|
|
1277
1277
|
box-shadow: var(--accordion-shadow-hovered);
|
|
1278
1278
|
}
|
|
1279
|
-
.
|
|
1279
|
+
.QcowB._1CIcy .uui-accordion-body {
|
|
1280
1280
|
padding: 18px;
|
|
1281
1281
|
line-height: 24px;
|
|
1282
1282
|
letter-spacing: 0;
|
|
@@ -1284,160 +1284,160 @@
|
|
|
1284
1284
|
box-shadow: var(--accordion-shadow);
|
|
1285
1285
|
border-top: 1px solid var(--accordion-border-color);
|
|
1286
1286
|
}
|
|
1287
|
-
.
|
|
1287
|
+
.QcowB._1CIcy.uui-opened .uui-accordion-toggler:hover, .QcowB._1CIcy.uui-opened .uui-accordion-toggler:focus {
|
|
1288
1288
|
border-color: var(--accordion-border-color);
|
|
1289
1289
|
}
|
|
1290
|
-
.
|
|
1290
|
+
.QcowB._1CIcy.uui-disabled .uui-accordion-toggler {
|
|
1291
1291
|
cursor: default;
|
|
1292
1292
|
fill: var(--accordion-icon-color-disabled);
|
|
1293
1293
|
}
|
|
1294
|
-
.
|
|
1294
|
+
.QcowB._1CIcy.uui-disabled .uui-accordion-toggler .uui-accordion-title {
|
|
1295
1295
|
color: var(--accordion-text-color-disabled);
|
|
1296
1296
|
}
|
|
1297
|
-
.
|
|
1297
|
+
.QcowB._1CIcy.uui-disabled .uui-accordion-toggler:hover, .QcowB._1CIcy.uui-disabled .uui-accordion-toggler:focus {
|
|
1298
1298
|
box-shadow: var(--accordion-shadow);
|
|
1299
1299
|
}
|
|
1300
|
-
.
|
|
1300
|
+
.QcowB._1-VQE .uui-accordion-toggler {
|
|
1301
1301
|
border-bottom: 1px solid var(--accordion-border-color);
|
|
1302
1302
|
fill: var(--accordion-icon-color);
|
|
1303
1303
|
line-height: 18px;
|
|
1304
1304
|
font-size: 14px;
|
|
1305
1305
|
padding: 8px 12px 8px;
|
|
1306
1306
|
}
|
|
1307
|
-
.
|
|
1307
|
+
.QcowB._1-VQE .uui-accordion-toggler .uui-accordion-toggle-container {
|
|
1308
1308
|
min-height: 24px;
|
|
1309
1309
|
}
|
|
1310
|
-
.
|
|
1310
|
+
.QcowB._1-VQE .uui-accordion-toggler .uui-accordion-title {
|
|
1311
1311
|
color: var(--accordion-text-color);
|
|
1312
1312
|
}
|
|
1313
|
-
.
|
|
1313
|
+
.QcowB._1-VQE .uui-accordion-body {
|
|
1314
1314
|
padding: 1px 12px 12px;
|
|
1315
1315
|
border-bottom: 1px solid var(--accordion-border-color);
|
|
1316
1316
|
}
|
|
1317
|
-
.
|
|
1317
|
+
.QcowB._1-VQE.uui-opened .uui-accordion-toggler {
|
|
1318
1318
|
border-bottom: unset;
|
|
1319
1319
|
}
|
|
1320
|
-
.
|
|
1320
|
+
.QcowB._1-VQE.uui-disabled .uui-accordion-toggler {
|
|
1321
1321
|
cursor: default;
|
|
1322
1322
|
fill: var(--accordion-icon-color-disabled);
|
|
1323
1323
|
border-bottom: unset;
|
|
1324
1324
|
}
|
|
1325
|
-
.
|
|
1325
|
+
.QcowB._1-VQE.uui-disabled .uui-accordion-toggler .uui-accordion-title {
|
|
1326
1326
|
color: var(--accordion-text-color-disabled);
|
|
1327
1327
|
}
|
|
1328
|
-
.
|
|
1328
|
+
.QcowB._2PGpB .uui-accordion-toggler, .QcowB._2PGpB .uui-accordion-body {
|
|
1329
1329
|
padding-left: 0px;
|
|
1330
1330
|
padding-right: 0px;
|
|
1331
1331
|
}
|
|
1332
|
-
.
|
|
1332
|
+
.QcowB._2bEf- .uui-accordion-toggler, .QcowB._2bEf- .uui-accordion-body {
|
|
1333
1333
|
padding-left: 6px;
|
|
1334
1334
|
padding-right: 6px;
|
|
1335
1335
|
}
|
|
1336
|
-
.
|
|
1336
|
+
.QcowB._2yCbY .uui-accordion-toggler, .QcowB._2yCbY .uui-accordion-body {
|
|
1337
1337
|
padding-left: 12px;
|
|
1338
1338
|
padding-right: 12px;
|
|
1339
1339
|
}
|
|
1340
|
-
.
|
|
1340
|
+
.QcowB._1B_A9 .uui-accordion-toggler, .QcowB._1B_A9 .uui-accordion-body {
|
|
1341
1341
|
padding-left: 18px;
|
|
1342
1342
|
padding-right: 18px;
|
|
1343
1343
|
}
|
|
1344
|
-
.
|
|
1344
|
+
.sIhcp > :nth-child(n) {
|
|
1345
1345
|
border-radius: 0;
|
|
1346
1346
|
}
|
|
1347
|
-
.
|
|
1347
|
+
.sIhcp > :first-child {
|
|
1348
1348
|
border-top-left-radius: var(--border-radius);
|
|
1349
1349
|
border-bottom-left-radius: var(--border-radius);
|
|
1350
1350
|
}
|
|
1351
|
-
.
|
|
1351
|
+
.sIhcp > :last-child {
|
|
1352
1352
|
border-top-right-radius: var(--border-radius);
|
|
1353
1353
|
border-bottom-right-radius: var(--border-radius);
|
|
1354
1354
|
}
|
|
1355
|
-
.
|
|
1355
|
+
.B_on7 {
|
|
1356
1356
|
box-sizing: content-box;
|
|
1357
1357
|
}
|
|
1358
|
-
.
|
|
1358
|
+
.B_on7.-clickable:hover {
|
|
1359
1359
|
background-color: var(--surface-hover-color);
|
|
1360
1360
|
cursor: pointer;
|
|
1361
1361
|
}
|
|
1362
|
-
.
|
|
1362
|
+
.B_on7._2cEd4 {
|
|
1363
1363
|
box-shadow: inset 0 10px 5px -10px rgba(51, 51, 51, 0.2);
|
|
1364
1364
|
}
|
|
1365
|
-
.
|
|
1365
|
+
.B_on7.D7Ops {
|
|
1366
1366
|
min-height: 24px;
|
|
1367
1367
|
}
|
|
1368
|
-
.
|
|
1368
|
+
.B_on7.Upcrj {
|
|
1369
1369
|
min-height: 30px;
|
|
1370
1370
|
}
|
|
1371
|
-
.
|
|
1371
|
+
.B_on7._3tGWX {
|
|
1372
1372
|
min-height: 36px;
|
|
1373
1373
|
}
|
|
1374
|
-
.
|
|
1374
|
+
.B_on7._395H_ {
|
|
1375
1375
|
min-height: 42px;
|
|
1376
1376
|
}
|
|
1377
|
-
.
|
|
1377
|
+
.B_on7._1xLS7 {
|
|
1378
1378
|
min-height: 48px;
|
|
1379
1379
|
}
|
|
1380
|
-
.
|
|
1380
|
+
.B_on7._1CZX6 {
|
|
1381
1381
|
padding-left: 6px;
|
|
1382
1382
|
padding-right: 6px;
|
|
1383
1383
|
}
|
|
1384
|
-
.
|
|
1384
|
+
.B_on7._2-8mA {
|
|
1385
1385
|
padding-left: 12px;
|
|
1386
1386
|
padding-right: 12px;
|
|
1387
1387
|
}
|
|
1388
|
-
.
|
|
1388
|
+
.B_on7._19YqP {
|
|
1389
1389
|
padding-left: 18px;
|
|
1390
1390
|
padding-right: 18px;
|
|
1391
1391
|
}
|
|
1392
|
-
.
|
|
1392
|
+
.B_on7._1-R5z {
|
|
1393
1393
|
padding-left: 24px;
|
|
1394
1394
|
padding-right: 24px;
|
|
1395
1395
|
}
|
|
1396
|
-
.
|
|
1396
|
+
.B_on7._3uo6d {
|
|
1397
1397
|
margin: 24px;
|
|
1398
1398
|
}
|
|
1399
|
-
.
|
|
1399
|
+
.B_on7._4uQ-v {
|
|
1400
1400
|
margin: 12px;
|
|
1401
1401
|
}
|
|
1402
|
-
.
|
|
1402
|
+
.B_on7._3Ge94 {
|
|
1403
1403
|
padding-top: 6px;
|
|
1404
1404
|
padding-bottom: 6px;
|
|
1405
1405
|
}
|
|
1406
|
-
.
|
|
1406
|
+
.B_on7._119Uw {
|
|
1407
1407
|
padding-top: 9px;
|
|
1408
1408
|
padding-bottom: 9px;
|
|
1409
1409
|
}
|
|
1410
|
-
.
|
|
1410
|
+
.B_on7.R7SEu {
|
|
1411
1411
|
padding-top: 12px;
|
|
1412
1412
|
padding-bottom: 12px;
|
|
1413
1413
|
}
|
|
1414
|
-
.
|
|
1414
|
+
.B_on7._1ToJs {
|
|
1415
1415
|
padding-top: 18px;
|
|
1416
1416
|
padding-bottom: 18px;
|
|
1417
1417
|
}
|
|
1418
|
-
.
|
|
1418
|
+
.B_on7._1iEuQ {
|
|
1419
1419
|
padding-top: 24px;
|
|
1420
1420
|
padding-bottom: 24px;
|
|
1421
1421
|
}
|
|
1422
|
-
.
|
|
1422
|
+
.B_on7._2opwG > *:not(:last-child) {
|
|
1423
1423
|
margin-right: 3px;
|
|
1424
1424
|
}
|
|
1425
|
-
.
|
|
1425
|
+
.B_on7._2opwG > *:not(:first-child) {
|
|
1426
1426
|
margin-left: 3px;
|
|
1427
1427
|
}
|
|
1428
|
-
.
|
|
1428
|
+
.B_on7._1i382 > *:not(:last-child) {
|
|
1429
1429
|
margin-right: 6px;
|
|
1430
1430
|
}
|
|
1431
|
-
.
|
|
1431
|
+
.B_on7._1i382 > *:not(:first-child) {
|
|
1432
1432
|
margin-left: 6px;
|
|
1433
1433
|
}
|
|
1434
|
-
.
|
|
1434
|
+
.B_on7._3XzM0 > *:not(:last-child) {
|
|
1435
1435
|
margin-right: 9px;
|
|
1436
1436
|
}
|
|
1437
|
-
.
|
|
1437
|
+
.B_on7._3XzM0 > *:not(:first-child) {
|
|
1438
1438
|
margin-left: 9px;
|
|
1439
1439
|
}
|
|
1440
|
-
.
|
|
1440
|
+
.B_on7._2A4TQ {
|
|
1441
1441
|
border-bottom: 1px solid var(--divider-color);
|
|
1442
1442
|
}
|
|
1443
1443
|
.panel-vars {
|
|
@@ -1445,29 +1445,29 @@
|
|
|
1445
1445
|
--panel-bg-color: var(--surface-color);
|
|
1446
1446
|
--panel-shadow: var(--shadow, 0 3px 6px 0 rgba(29, 30, 38, 0.10), 0 1px 3px 0 rgba(29, 30, 38, 0.10));
|
|
1447
1447
|
}
|
|
1448
|
-
.
|
|
1448
|
+
._3mJvB {
|
|
1449
1449
|
overflow: hidden;
|
|
1450
1450
|
border-radius: var(--panel-border-radius);
|
|
1451
1451
|
}
|
|
1452
|
-
.
|
|
1452
|
+
._3mJvB._3cQ8S {
|
|
1453
1453
|
background-color: var(--panel-bg-color);
|
|
1454
1454
|
}
|
|
1455
|
-
.
|
|
1455
|
+
._3mJvB.FRpEk {
|
|
1456
1456
|
margin: 24px;
|
|
1457
1457
|
}
|
|
1458
|
-
.
|
|
1458
|
+
._3mJvB._39RwY {
|
|
1459
1459
|
padding: 12px;
|
|
1460
1460
|
}
|
|
1461
|
-
.
|
|
1461
|
+
._3mJvB.H-BRk {
|
|
1462
1462
|
padding: 24px;
|
|
1463
1463
|
}
|
|
1464
|
-
.
|
|
1464
|
+
._3mJvB._24e-z {
|
|
1465
1465
|
box-shadow: var(--panel-shadow);
|
|
1466
1466
|
}
|
|
1467
|
-
.
|
|
1467
|
+
._3mJvB.-clickable:hover {
|
|
1468
1468
|
cursor: pointer;
|
|
1469
1469
|
}
|
|
1470
|
-
.
|
|
1470
|
+
._1H6zv {
|
|
1471
1471
|
fill: var(--icon-container-fill-color);
|
|
1472
1472
|
}
|
|
1473
1473
|
.icon-container-color-info {
|
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
--dropdown-container-shadow: var(--shadow, 0 3px 6px 0 rgba(29, 30, 38, 0.1), 0 1px 3px 0 rgba(29, 30, 38, 0.1));
|
|
1498
1498
|
--dropdown-container-scrollbar-thumb-color: #6C6F80;
|
|
1499
1499
|
}
|
|
1500
|
-
.
|
|
1500
|
+
._1W940.uui-dropdown-body {
|
|
1501
1501
|
display: flex;
|
|
1502
1502
|
flex-direction: column;
|
|
1503
1503
|
min-width: 150px;
|
|
@@ -1507,21 +1507,21 @@
|
|
|
1507
1507
|
border: 0;
|
|
1508
1508
|
overflow: hidden;
|
|
1509
1509
|
}
|
|
1510
|
-
.
|
|
1510
|
+
._1W940.uui-dropdown-body ::-webkit-scrollbar {
|
|
1511
1511
|
width: 5px;
|
|
1512
1512
|
}
|
|
1513
|
-
.
|
|
1513
|
+
._1W940.uui-dropdown-body ::-webkit-scrollbar-thumb {
|
|
1514
1514
|
background: var(--dropdown-container-scrollbar-thumb-color);
|
|
1515
1515
|
}
|
|
1516
|
-
.
|
|
1516
|
+
._36Qvu {
|
|
1517
1517
|
padding: 0;
|
|
1518
1518
|
margin: 0;
|
|
1519
1519
|
}
|
|
1520
|
-
.
|
|
1520
|
+
._36Qvu:focus {
|
|
1521
1521
|
outline: none;
|
|
1522
1522
|
}
|
|
1523
1523
|
|
|
1524
|
-
.
|
|
1524
|
+
._1DQIE {
|
|
1525
1525
|
color: var(--text-primary-color);
|
|
1526
1526
|
fill: var(--icon-color);
|
|
1527
1527
|
font-family: var(--font-regular);
|
|
@@ -1530,32 +1530,32 @@
|
|
|
1530
1530
|
background-color: var(--surface-color);
|
|
1531
1531
|
box-shadow: var(--shadow);
|
|
1532
1532
|
}
|
|
1533
|
-
.
|
|
1533
|
+
._1DQIE .uui-icon svg {
|
|
1534
1534
|
height: 24px;
|
|
1535
1535
|
max-width: 24px;
|
|
1536
1536
|
}
|
|
1537
1537
|
|
|
1538
|
-
.
|
|
1538
|
+
.rEo2e .Q1cl4 {
|
|
1539
1539
|
transform: rotate(-90deg);
|
|
1540
1540
|
}
|
|
1541
1541
|
|
|
1542
|
-
.
|
|
1542
|
+
.HC6kn {
|
|
1543
1543
|
color: transparent;
|
|
1544
1544
|
fill: transparent;
|
|
1545
1545
|
}
|
|
1546
1546
|
|
|
1547
|
-
.
|
|
1547
|
+
.yp9Fv {
|
|
1548
1548
|
display: flex;
|
|
1549
1549
|
width: 100%;
|
|
1550
1550
|
}
|
|
1551
|
-
.
|
|
1551
|
+
.yp9Fv .DZT8X {
|
|
1552
1552
|
width: 100%;
|
|
1553
1553
|
border: 0;
|
|
1554
1554
|
border-top: 1px solid var(--divider-color);
|
|
1555
1555
|
height: 0;
|
|
1556
1556
|
}
|
|
1557
1557
|
|
|
1558
|
-
.
|
|
1558
|
+
.suO5X {
|
|
1559
1559
|
color: var(--text-secondary-color);
|
|
1560
1560
|
fill: var(--text-secondary-color);
|
|
1561
1561
|
padding: 0.5em 1em;
|
|
@@ -1565,184 +1565,184 @@
|
|
|
1565
1565
|
cursor: default;
|
|
1566
1566
|
font-size: 0.9em;
|
|
1567
1567
|
}
|
|
1568
|
-
.
|
|
1568
|
+
.suO5X:focus {
|
|
1569
1569
|
outline: none;
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
1572
|
-
.
|
|
1572
|
+
._2NjaA {
|
|
1573
1573
|
padding: 0.5em 1em;
|
|
1574
1574
|
line-height: 1.5;
|
|
1575
1575
|
box-sizing: border-box;
|
|
1576
1576
|
width: 100%;
|
|
1577
1577
|
}
|
|
1578
|
-
.
|
|
1578
|
+
._2NjaA .uui-icon svg {
|
|
1579
1579
|
height: 24px;
|
|
1580
1580
|
max-width: 24px;
|
|
1581
1581
|
}
|
|
1582
|
-
.
|
|
1582
|
+
._2NjaA.uui-selected {
|
|
1583
1583
|
color: var(--primary-color);
|
|
1584
1584
|
fill: var(--primary-color);
|
|
1585
1585
|
}
|
|
1586
|
-
.
|
|
1586
|
+
._2NjaA.uui-selected:hover, ._2NjaA.uui-selected:focus {
|
|
1587
1587
|
color: var(--primary-color) !important;
|
|
1588
1588
|
fill: var(--primary-color) !important;
|
|
1589
1589
|
}
|
|
1590
|
-
.
|
|
1590
|
+
._2NjaA.uui-selected .HC6kn {
|
|
1591
1591
|
color: var(--primary-color);
|
|
1592
1592
|
fill: var(--primary-color);
|
|
1593
1593
|
}
|
|
1594
|
-
.
|
|
1594
|
+
._2NjaA:focus {
|
|
1595
1595
|
outline: none;
|
|
1596
1596
|
}
|
|
1597
|
-
.
|
|
1597
|
+
._2NjaA .QeBnx {
|
|
1598
1598
|
justify-content: flex-start;
|
|
1599
1599
|
}
|
|
1600
|
-
.
|
|
1600
|
+
._2NjaA._1uC3e {
|
|
1601
1601
|
color: var(--text-primary-color);
|
|
1602
1602
|
fill: var(--icon-color);
|
|
1603
1603
|
display: flex;
|
|
1604
1604
|
align-items: center;
|
|
1605
1605
|
}
|
|
1606
|
-
.
|
|
1606
|
+
._2NjaA._1uC3e.uui-selected {
|
|
1607
1607
|
color: var(--primary-color);
|
|
1608
1608
|
fill: var(--primary-color);
|
|
1609
1609
|
}
|
|
1610
|
-
.
|
|
1610
|
+
._2NjaA._1uC3e.uui-selected:hover, ._2NjaA._1uC3e.uui-selected:focus {
|
|
1611
1611
|
color: var(--primary-color) !important;
|
|
1612
1612
|
fill: var(--primary-color) !important;
|
|
1613
1613
|
}
|
|
1614
|
-
.
|
|
1614
|
+
._2NjaA._1uC3e.uui-selected .HC6kn {
|
|
1615
1615
|
color: var(--primary-color);
|
|
1616
1616
|
fill: var(--primary-color);
|
|
1617
1617
|
}
|
|
1618
|
-
.
|
|
1618
|
+
._2NjaA._1uC3e:focus {
|
|
1619
1619
|
outline: none;
|
|
1620
1620
|
}
|
|
1621
|
-
.
|
|
1621
|
+
._2NjaA.-clickable:not(.uui-disabled):hover, ._2NjaA.-clickable:not(.uui-disabled):focus {
|
|
1622
1622
|
background-color: var(--surface-hover-color);
|
|
1623
1623
|
fill: var(--icon-active-color);
|
|
1624
1624
|
cursor: pointer;
|
|
1625
1625
|
}
|
|
1626
|
-
.
|
|
1626
|
+
._2NjaA.uui-disabled {
|
|
1627
1627
|
color: var(--disabled-color);
|
|
1628
1628
|
fill: var(--disabled-color);
|
|
1629
1629
|
}
|
|
1630
|
-
.
|
|
1630
|
+
._2NjaA.uui-disabled:hover, ._2NjaA.uui-disabled:focus {
|
|
1631
1631
|
background-color: transparent;
|
|
1632
1632
|
cursor: default;
|
|
1633
1633
|
}
|
|
1634
|
-
.
|
|
1634
|
+
._2NjaA > *:not(:last-child) {
|
|
1635
1635
|
margin: 0 0.5em 0 0;
|
|
1636
1636
|
}
|
|
1637
|
-
.
|
|
1637
|
+
._2hA-u {
|
|
1638
1638
|
color: var(--text-color);
|
|
1639
1639
|
}
|
|
1640
|
-
.
|
|
1640
|
+
._129wH {
|
|
1641
1641
|
line-height: 12px;
|
|
1642
1642
|
}
|
|
1643
1643
|
|
|
1644
|
-
.
|
|
1644
|
+
._2Zlon {
|
|
1645
1645
|
line-height: 18px;
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
|
-
.
|
|
1648
|
+
._1hxGv {
|
|
1649
1649
|
line-height: 24px;
|
|
1650
1650
|
}
|
|
1651
1651
|
|
|
1652
|
-
.
|
|
1652
|
+
._31Blu {
|
|
1653
1653
|
line-height: 30px;
|
|
1654
1654
|
}
|
|
1655
1655
|
|
|
1656
|
-
.
|
|
1656
|
+
._2u7SQ {
|
|
1657
1657
|
font-size: 10px;
|
|
1658
1658
|
}
|
|
1659
1659
|
|
|
1660
|
-
.
|
|
1660
|
+
.LHQtu {
|
|
1661
1661
|
font-size: 12px;
|
|
1662
1662
|
}
|
|
1663
1663
|
|
|
1664
|
-
.
|
|
1664
|
+
._13Itg {
|
|
1665
1665
|
font-size: 14px;
|
|
1666
1666
|
}
|
|
1667
1667
|
|
|
1668
|
-
.
|
|
1668
|
+
._14tNx {
|
|
1669
1669
|
font-size: 16px;
|
|
1670
1670
|
}
|
|
1671
1671
|
|
|
1672
|
-
.
|
|
1672
|
+
.GBU6i {
|
|
1673
1673
|
font-size: 18px;
|
|
1674
1674
|
}
|
|
1675
1675
|
|
|
1676
|
-
.
|
|
1676
|
+
._3_hR8 {
|
|
1677
1677
|
font-size: 24px;
|
|
1678
1678
|
}
|
|
1679
1679
|
|
|
1680
|
-
.
|
|
1680
|
+
.tM3Yh {
|
|
1681
1681
|
padding-top: 2px;
|
|
1682
1682
|
padding-bottom: 2px;
|
|
1683
1683
|
}
|
|
1684
1684
|
|
|
1685
|
-
.
|
|
1685
|
+
._149yi {
|
|
1686
1686
|
padding-top: 3px;
|
|
1687
1687
|
padding-bottom: 3px;
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
|
-
.
|
|
1690
|
+
._1mXLF {
|
|
1691
1691
|
padding-top: 5px;
|
|
1692
1692
|
padding-bottom: 5px;
|
|
1693
1693
|
}
|
|
1694
1694
|
|
|
1695
|
-
.
|
|
1695
|
+
._3ji2s {
|
|
1696
1696
|
padding-top: 6px;
|
|
1697
1697
|
padding-bottom: 6px;
|
|
1698
1698
|
}
|
|
1699
1699
|
|
|
1700
|
-
.
|
|
1700
|
+
._3bQWF {
|
|
1701
1701
|
padding-top: 8px;
|
|
1702
1702
|
padding-bottom: 8px;
|
|
1703
1703
|
}
|
|
1704
1704
|
|
|
1705
|
-
.
|
|
1705
|
+
._3cKzE {
|
|
1706
1706
|
padding-top: 9px;
|
|
1707
1707
|
padding-bottom: 9px;
|
|
1708
1708
|
}
|
|
1709
1709
|
|
|
1710
|
-
.
|
|
1710
|
+
._1xtHW {
|
|
1711
1711
|
padding-top: 11px;
|
|
1712
1712
|
padding-bottom: 11px;
|
|
1713
1713
|
}
|
|
1714
1714
|
|
|
1715
|
-
.
|
|
1715
|
+
._15t3R {
|
|
1716
1716
|
padding-top: 12px;
|
|
1717
1717
|
padding-bottom: 12px;
|
|
1718
1718
|
}
|
|
1719
1719
|
|
|
1720
|
-
.
|
|
1720
|
+
._8eSkr {
|
|
1721
1721
|
padding-top: 14px;
|
|
1722
1722
|
padding-bottom: 14px;
|
|
1723
1723
|
}
|
|
1724
1724
|
|
|
1725
|
-
.
|
|
1725
|
+
._2B-Rq {
|
|
1726
1726
|
padding-top: 15px;
|
|
1727
1727
|
padding-bottom: 15px;
|
|
1728
1728
|
}
|
|
1729
1729
|
|
|
1730
|
-
.
|
|
1730
|
+
._3DAxK {
|
|
1731
1731
|
padding-top: 17px;
|
|
1732
1732
|
padding-bottom: 17px;
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
|
-
.
|
|
1735
|
+
._2d0Ib {
|
|
1736
1736
|
padding-top: 18px;
|
|
1737
1737
|
padding-bottom: 18px;
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
|
-
.
|
|
1740
|
+
._3qw5s {
|
|
1741
1741
|
padding-top: 23px;
|
|
1742
1742
|
padding-bottom: 23px;
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
|
-
.
|
|
1745
|
+
._3LqrK {
|
|
1746
1746
|
padding-top: 24px;
|
|
1747
1747
|
padding-bottom: 24px;
|
|
1748
1748
|
}
|
|
@@ -1789,7 +1789,7 @@
|
|
|
1789
1789
|
font-family: var(--font-promo);
|
|
1790
1790
|
font-weight: normal;
|
|
1791
1791
|
}
|
|
1792
|
-
@keyframes
|
|
1792
|
+
@keyframes de2Bs {
|
|
1793
1793
|
0% {
|
|
1794
1794
|
background-position: 200% 0;
|
|
1795
1795
|
}
|
|
@@ -1797,12 +1797,12 @@
|
|
|
1797
1797
|
background-position: 0 0;
|
|
1798
1798
|
}
|
|
1799
1799
|
}
|
|
1800
|
-
.
|
|
1800
|
+
._2uQBc {
|
|
1801
1801
|
display: flex;
|
|
1802
1802
|
flex-wrap: wrap;
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
1805
|
-
.
|
|
1805
|
+
._2ertL {
|
|
1806
1806
|
user-select: none;
|
|
1807
1807
|
font-family: var(--font-redacted);
|
|
1808
1808
|
letter-spacing: -1px;
|
|
@@ -1810,16 +1810,16 @@
|
|
|
1810
1810
|
color: var(--text-placeholder-color);
|
|
1811
1811
|
vertical-align: 1px;
|
|
1812
1812
|
}
|
|
1813
|
-
.
|
|
1813
|
+
._2ertL:last-child {
|
|
1814
1814
|
margin-right: 0;
|
|
1815
1815
|
}
|
|
1816
|
-
.
|
|
1816
|
+
._2ertL.gE82w {
|
|
1817
1817
|
color: transparent;
|
|
1818
1818
|
background: var(--text-placeholder-gradient);
|
|
1819
1819
|
background-size: 200% 100%;
|
|
1820
1820
|
background-clip: border-box;
|
|
1821
1821
|
-webkit-background-clip: text;
|
|
1822
|
-
animation:
|
|
1822
|
+
animation: de2Bs 1s ease infinite;
|
|
1823
1823
|
}
|
|
1824
1824
|
.text-placeholder-vars {
|
|
1825
1825
|
--text-placeholder-gradient: var(--skeleton-gradient);
|
|
@@ -1831,13 +1831,13 @@
|
|
|
1831
1831
|
--modals-shadow: 0 6px 18px 0 rgba(29, 30, 38, 0.05), 0 3px 12px 0 rgba(29, 30, 38, 0.05);
|
|
1832
1832
|
--modals-bg-color: var(--surface-color) ;
|
|
1833
1833
|
}
|
|
1834
|
-
.
|
|
1834
|
+
._2zU29 {
|
|
1835
1835
|
animation-duration: 0.3s;
|
|
1836
|
-
animation-name:
|
|
1836
|
+
animation-name: _1TSUA;
|
|
1837
1837
|
opacity: 1;
|
|
1838
1838
|
transition: all 0.3s ease-out;
|
|
1839
1839
|
}
|
|
1840
|
-
@keyframes
|
|
1840
|
+
@keyframes _1TSUA {
|
|
1841
1841
|
from {
|
|
1842
1842
|
opacity: 0;
|
|
1843
1843
|
}
|
|
@@ -1845,11 +1845,11 @@
|
|
|
1845
1845
|
opacity: 1;
|
|
1846
1846
|
}
|
|
1847
1847
|
}
|
|
1848
|
-
.
|
|
1848
|
+
._2zU29._1CfUk .uui-modal-blocker {
|
|
1849
1849
|
background-color: var(--modals-overlay-color);
|
|
1850
1850
|
}
|
|
1851
1851
|
|
|
1852
|
-
.
|
|
1852
|
+
._3fiGZ.uui-modal-window {
|
|
1853
1853
|
background-color: var(--modals-bg-color);
|
|
1854
1854
|
overflow: auto;
|
|
1855
1855
|
border-radius: var(--modals-border-radius);
|
|
@@ -1858,30 +1858,30 @@
|
|
|
1858
1858
|
box-shadow: var(--modals-shadow);
|
|
1859
1859
|
}
|
|
1860
1860
|
@media (max-width: 640px) {
|
|
1861
|
-
.
|
|
1861
|
+
._3fiGZ.uui-modal-window {
|
|
1862
1862
|
min-width: 100vw;
|
|
1863
1863
|
max-height: 100vh;
|
|
1864
1864
|
border-radius: 0;
|
|
1865
1865
|
}
|
|
1866
1866
|
}
|
|
1867
|
-
.
|
|
1867
|
+
._3fiGZ.uui-modal-window .uui-shadow-top::before {
|
|
1868
1868
|
background: var(--divider-color);
|
|
1869
1869
|
height: 1px;
|
|
1870
1870
|
}
|
|
1871
|
-
.
|
|
1871
|
+
._3fiGZ.uui-modal-window .uui-shadow-bottom::after {
|
|
1872
1872
|
background: var(--divider-color);
|
|
1873
1873
|
height: 1px;
|
|
1874
1874
|
}
|
|
1875
1875
|
|
|
1876
|
-
.
|
|
1876
|
+
._2Tv2A {
|
|
1877
1877
|
border-bottom-left-radius: var(--modals-border-radius);
|
|
1878
1878
|
border-bottom-right-radius: var(--modals-border-radius);
|
|
1879
1879
|
}
|
|
1880
|
-
.
|
|
1880
|
+
._2Tv2A._1M95j {
|
|
1881
1881
|
border-top: 1px solid var(--divider-color);
|
|
1882
1882
|
}
|
|
1883
1883
|
|
|
1884
|
-
.
|
|
1884
|
+
._23Slq {
|
|
1885
1885
|
border-top-left-radius: var(--modals-border-radius);
|
|
1886
1886
|
border-top-right-radius: var(--modals-border-radius);
|
|
1887
1887
|
}
|
|
@@ -1913,11 +1913,11 @@
|
|
|
1913
1913
|
--notification-card-border-color: var(--error-color);
|
|
1914
1914
|
--notification-card-bg-color: white;
|
|
1915
1915
|
}
|
|
1916
|
-
.
|
|
1916
|
+
._2wYRA ._1Ow8Q .uui-icon {
|
|
1917
1917
|
fill: var(--notification-card-fill-color);
|
|
1918
1918
|
}
|
|
1919
1919
|
|
|
1920
|
-
.
|
|
1920
|
+
.BwEly {
|
|
1921
1921
|
border-style: solid;
|
|
1922
1922
|
border-color: var(--notification-card-border-color);
|
|
1923
1923
|
border-width: var(--notification-card-border-width);
|
|
@@ -1929,50 +1929,52 @@
|
|
|
1929
1929
|
border-radius: var(--notification-card-border-radius);
|
|
1930
1930
|
}
|
|
1931
1931
|
@media (max-width: 720px) {
|
|
1932
|
-
.
|
|
1932
|
+
.BwEly {
|
|
1933
1933
|
width: 100%;
|
|
1934
1934
|
}
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
|
-
.
|
|
1938
|
-
height: 100%;
|
|
1937
|
+
._1Ow8Q {
|
|
1939
1938
|
padding: 6px 0;
|
|
1940
|
-
margin-right: 14px;
|
|
1941
1939
|
}
|
|
1942
1940
|
|
|
1943
|
-
.
|
|
1941
|
+
._2MFFy {
|
|
1944
1942
|
display: flex;
|
|
1945
1943
|
}
|
|
1946
1944
|
|
|
1947
|
-
.
|
|
1945
|
+
._1ZHRQ:not(:last-child) {
|
|
1948
1946
|
margin-right: 12px;
|
|
1949
1947
|
}
|
|
1950
1948
|
|
|
1951
|
-
.
|
|
1952
|
-
height: 100%;
|
|
1949
|
+
._1FD1H {
|
|
1953
1950
|
padding: 6px 0;
|
|
1954
|
-
margin-left: 17px;
|
|
1955
1951
|
}
|
|
1956
1952
|
|
|
1957
|
-
.
|
|
1953
|
+
._2Rvl9 {
|
|
1958
1954
|
width: 100%;
|
|
1959
1955
|
display: flex;
|
|
1960
1956
|
align-self: baseline;
|
|
1961
1957
|
}
|
|
1962
1958
|
|
|
1963
|
-
.
|
|
1959
|
+
._2kTT3 {
|
|
1964
1960
|
display: flex;
|
|
1965
1961
|
flex-wrap: wrap;
|
|
1966
1962
|
justify-content: space-between;
|
|
1967
1963
|
width: 100%;
|
|
1964
|
+
margin: 0 12px;
|
|
1968
1965
|
}
|
|
1969
1966
|
|
|
1970
|
-
.
|
|
1967
|
+
.aJWZc {
|
|
1971
1968
|
justify-content: center;
|
|
1972
1969
|
align-items: center;
|
|
1973
1970
|
height: 48px;
|
|
1974
1971
|
padding: 0 18px;
|
|
1975
1972
|
}
|
|
1973
|
+
|
|
1974
|
+
._2HKfc {
|
|
1975
|
+
display: flex;
|
|
1976
|
+
align-items: flex-start;
|
|
1977
|
+
}
|
|
1976
1978
|
.tooltip-vars {
|
|
1977
1979
|
--tooltip-shadow: var(--shadow, 0 1px 4px 0 rgba(44, 47, 60, 0.05), 0 2px 18px 0 rgba(44, 47, 60, 0.03));
|
|
1978
1980
|
--tooltip-arrow-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
@@ -1980,7 +1982,7 @@
|
|
|
1980
1982
|
--tooltip-text-color: white;
|
|
1981
1983
|
--tooltip-border-radius: var(--border-radius);
|
|
1982
1984
|
}
|
|
1983
|
-
.
|
|
1985
|
+
._3sMXu .uui-tooltip-body {
|
|
1984
1986
|
padding: 3px 12px;
|
|
1985
1987
|
line-height: 24px;
|
|
1986
1988
|
font-size: 14px;
|
|
@@ -1990,57 +1992,57 @@
|
|
|
1990
1992
|
word-wrap: break-word;
|
|
1991
1993
|
border-radius: var(--tooltip-border-radius);
|
|
1992
1994
|
}
|
|
1993
|
-
.
|
|
1995
|
+
._3sMXu .uui-tooltip-arrow {
|
|
1994
1996
|
position: absolute;
|
|
1995
1997
|
width: 12px;
|
|
1996
1998
|
height: 12px;
|
|
1997
1999
|
overflow: hidden;
|
|
1998
2000
|
}
|
|
1999
|
-
.
|
|
2001
|
+
._3sMXu .uui-tooltip-arrow::after {
|
|
2000
2002
|
content: "";
|
|
2001
2003
|
position: absolute;
|
|
2002
2004
|
width: 8px;
|
|
2003
2005
|
height: 8px;
|
|
2004
2006
|
box-shadow: var(--tooltip-arrow-shadow);
|
|
2005
2007
|
}
|
|
2006
|
-
.
|
|
2008
|
+
._3sMXu.uui-tooltip-container[data-placement^="right"] .uui-tooltip-arrow {
|
|
2007
2009
|
right: 100%;
|
|
2008
2010
|
}
|
|
2009
|
-
.
|
|
2011
|
+
._3sMXu.uui-tooltip-container[data-placement^="right"] .uui-tooltip-arrow::after {
|
|
2010
2012
|
transform: translateX(100%) translateY(20%) rotate(45deg);
|
|
2011
2013
|
}
|
|
2012
|
-
.
|
|
2014
|
+
._3sMXu.uui-tooltip-container[data-placement^="left"] .uui-tooltip-arrow {
|
|
2013
2015
|
left: 100%;
|
|
2014
2016
|
}
|
|
2015
|
-
.
|
|
2017
|
+
._3sMXu.uui-tooltip-container[data-placement^="left"] .uui-tooltip-arrow::after {
|
|
2016
2018
|
transform: translateX(-50%) translateY(20%) rotate(45deg);
|
|
2017
2019
|
}
|
|
2018
|
-
.
|
|
2020
|
+
._3sMXu.uui-tooltip-container[data-placement^="top"] .uui-tooltip-arrow {
|
|
2019
2021
|
top: 100%;
|
|
2020
2022
|
}
|
|
2021
|
-
.
|
|
2023
|
+
._3sMXu.uui-tooltip-container[data-placement^="top"] .uui-tooltip-arrow::after {
|
|
2022
2024
|
transform: translateX(30%) translateY(-50%) rotate(45deg);
|
|
2023
2025
|
}
|
|
2024
|
-
.
|
|
2026
|
+
._3sMXu.uui-tooltip-container[data-placement^="bottom"] .uui-tooltip-arrow {
|
|
2025
2027
|
bottom: 100%;
|
|
2026
2028
|
}
|
|
2027
|
-
.
|
|
2029
|
+
._3sMXu.uui-tooltip-container[data-placement^="bottom"] .uui-tooltip-arrow::after {
|
|
2028
2030
|
transform: translateX(30%) translateY(100%) rotate(45deg);
|
|
2029
2031
|
}
|
|
2030
|
-
.
|
|
2032
|
+
._3sMXu .uui-tooltip-body {
|
|
2031
2033
|
background-color: var(--tooltip-bg-color);
|
|
2032
2034
|
color: var(--tooltip-text-color);
|
|
2033
2035
|
}
|
|
2034
|
-
.
|
|
2036
|
+
._3sMXu.uui-tooltip-container[data-placement^="right"] .uui-tooltip-arrow::after {
|
|
2035
2037
|
background: var(--tooltip-bg-color);
|
|
2036
2038
|
}
|
|
2037
|
-
.
|
|
2039
|
+
._3sMXu.uui-tooltip-container[data-placement^="left"] .uui-tooltip-arrow::after {
|
|
2038
2040
|
background: var(--tooltip-bg-color);
|
|
2039
2041
|
}
|
|
2040
|
-
.
|
|
2042
|
+
._3sMXu.uui-tooltip-container[data-placement^="top"] .uui-tooltip-arrow::after {
|
|
2041
2043
|
background: var(--tooltip-bg-color);
|
|
2042
2044
|
}
|
|
2043
|
-
.
|
|
2045
|
+
._3sMXu.uui-tooltip-container[data-placement^="bottom"] .uui-tooltip-arrow::after {
|
|
2044
2046
|
background: var(--tooltip-bg-color);
|
|
2045
2047
|
}
|
|
2046
2048
|
.labeled-input-vars {
|
|
@@ -2051,83 +2053,84 @@
|
|
|
2051
2053
|
--labeled-input-optional-text-color: var(--text-secondary-color);
|
|
2052
2054
|
--labeled-input-asterisk-color: var(--error-color);
|
|
2053
2055
|
}
|
|
2054
|
-
.
|
|
2056
|
+
._33qE9 {
|
|
2055
2057
|
width: 100%;
|
|
2056
2058
|
}
|
|
2057
|
-
.
|
|
2059
|
+
._33qE9 .uui-label {
|
|
2058
2060
|
overflow: hidden;
|
|
2059
2061
|
text-overflow: ellipsis;
|
|
2060
2062
|
font-family: var(--font-semibold);
|
|
2061
2063
|
color: var(--labeled-input-color);
|
|
2062
2064
|
}
|
|
2063
|
-
.
|
|
2065
|
+
._33qE9 .uui-label .uui-labeled-input-info-icon {
|
|
2064
2066
|
flex-shrink: 0;
|
|
2065
2067
|
margin: 0 4px;
|
|
2066
2068
|
fill: var(--labeled-input-fill-color);
|
|
2067
2069
|
}
|
|
2068
|
-
.
|
|
2070
|
+
._33qE9 .uui-label .uui-labeled-input-asterisk {
|
|
2069
2071
|
color: var(--labeled-input-asterisk-color);
|
|
2070
2072
|
}
|
|
2071
|
-
.
|
|
2073
|
+
._33qE9 .uui-label .uui-labeled-input-optional {
|
|
2072
2074
|
font-family: var(--font-italic);
|
|
2073
2075
|
font-size: 12px;
|
|
2074
2076
|
line-height: 18px;
|
|
2075
2077
|
color: var(--labeled-input-optional-text-color);
|
|
2076
2078
|
}
|
|
2077
|
-
.
|
|
2079
|
+
._33qE9 .uui-label-left > .uui-label {
|
|
2078
2080
|
margin-right: 5px;
|
|
2079
2081
|
}
|
|
2080
|
-
.
|
|
2082
|
+
._33qE9 .uui-invalid-message {
|
|
2081
2083
|
line-height: 18px;
|
|
2082
2084
|
font-size: 12px;
|
|
2083
2085
|
color: var(--labeled-input-color-error);
|
|
2084
2086
|
font-family: var(--font-regular);
|
|
2087
|
+
margin-top: 3px;
|
|
2085
2088
|
}
|
|
2086
|
-
.
|
|
2089
|
+
._33qE9._2Nbyf .uui-label-top > .uui-label {
|
|
2087
2090
|
margin-bottom: 6px;
|
|
2088
2091
|
}
|
|
2089
|
-
.
|
|
2092
|
+
._33qE9._2Nbyf .uui-label {
|
|
2090
2093
|
font-size: 12px;
|
|
2091
2094
|
line-height: 18px;
|
|
2092
2095
|
}
|
|
2093
|
-
.
|
|
2096
|
+
._33qE9._3Jnda .uui-label-top > .uui-label {
|
|
2094
2097
|
margin-bottom: 6px;
|
|
2095
2098
|
}
|
|
2096
|
-
.
|
|
2099
|
+
._33qE9._3Jnda .uui-label {
|
|
2097
2100
|
font-size: 12px;
|
|
2098
2101
|
line-height: 18px;
|
|
2099
2102
|
}
|
|
2100
|
-
.
|
|
2103
|
+
._33qE9._1plaI .uui-label-top > .uui-label {
|
|
2101
2104
|
margin-bottom: 6px;
|
|
2102
2105
|
}
|
|
2103
|
-
.
|
|
2106
|
+
._33qE9._1plaI .uui-label {
|
|
2104
2107
|
font-size: 14px;
|
|
2105
2108
|
line-height: 18px;
|
|
2106
2109
|
}
|
|
2107
|
-
.
|
|
2110
|
+
._33qE9._1eEnt .uui-label-top > .uui-label {
|
|
2108
2111
|
margin-bottom: 6px;
|
|
2109
2112
|
}
|
|
2110
|
-
.
|
|
2113
|
+
._33qE9._1eEnt .uui-label {
|
|
2111
2114
|
font-size: 14px;
|
|
2112
2115
|
line-height: 18px;
|
|
2113
2116
|
}
|
|
2114
|
-
.
|
|
2117
|
+
._33qE9.-kDpX .uui-label-top > .uui-label {
|
|
2115
2118
|
margin-bottom: 6px;
|
|
2116
2119
|
}
|
|
2117
|
-
.
|
|
2120
|
+
._33qE9.-kDpX .uui-label {
|
|
2118
2121
|
font-size: 14px;
|
|
2119
2122
|
line-height: 18px;
|
|
2120
2123
|
}
|
|
2121
|
-
.
|
|
2124
|
+
._2d-b_.uui-horizontal-direction > * {
|
|
2122
2125
|
margin-left: 12px;
|
|
2123
2126
|
}
|
|
2124
|
-
.
|
|
2127
|
+
._2d-b_.uui-horizontal-direction :first-child {
|
|
2125
2128
|
margin-left: 0;
|
|
2126
2129
|
}
|
|
2127
|
-
.
|
|
2130
|
+
._2d-b_.uui-vertical-direction > * {
|
|
2128
2131
|
margin-bottom: 12px;
|
|
2129
2132
|
}
|
|
2130
|
-
.
|
|
2133
|
+
._2d-b_.uui-vertical-direction :last-child {
|
|
2131
2134
|
margin-bottom: 0;
|
|
2132
2135
|
}
|
|
2133
2136
|
.uui-thumb-vertical, .uui-thumb-horizontal {
|
|
@@ -2208,7 +2211,7 @@
|
|
|
2208
2211
|
height: 6px;
|
|
2209
2212
|
margin-top: 0;
|
|
2210
2213
|
}
|
|
2211
|
-
.
|
|
2214
|
+
._2J_g0 {
|
|
2212
2215
|
display: flex;
|
|
2213
2216
|
flex-direction: column;
|
|
2214
2217
|
flex: 1 1 auto;
|
|
@@ -2216,57 +2219,57 @@
|
|
|
2216
2219
|
width: 100%;
|
|
2217
2220
|
}
|
|
2218
2221
|
|
|
2219
|
-
.
|
|
2222
|
+
._1qu7r {
|
|
2220
2223
|
border: 0;
|
|
2221
2224
|
}
|
|
2222
2225
|
|
|
2223
|
-
.
|
|
2226
|
+
._3sAGo.uui-input-box {
|
|
2224
2227
|
border: 0;
|
|
2225
2228
|
box-shadow: none;
|
|
2226
2229
|
background-color: transparent;
|
|
2227
2230
|
}
|
|
2228
|
-
.
|
|
2231
|
+
._3sAGo.uui-input-box.uui-focus {
|
|
2229
2232
|
border-color: transparent;
|
|
2230
2233
|
box-shadow: none;
|
|
2231
2234
|
}
|
|
2232
2235
|
|
|
2233
|
-
.
|
|
2236
|
+
._3OW7c {
|
|
2234
2237
|
padding: 6px 0;
|
|
2235
2238
|
}
|
|
2236
2239
|
|
|
2237
|
-
.
|
|
2240
|
+
._3hKG2 {
|
|
2238
2241
|
border-bottom: 1px solid var(--divider-color);
|
|
2239
2242
|
padding: 0 4px;
|
|
2240
2243
|
}
|
|
2241
2244
|
|
|
2242
|
-
.
|
|
2245
|
+
._2AzpZ, ._2L64F, ._3zk64, ._11MzA {
|
|
2243
2246
|
padding: 0 5px;
|
|
2244
2247
|
}
|
|
2245
2248
|
|
|
2246
|
-
.
|
|
2249
|
+
.uP6b1 {
|
|
2247
2250
|
padding-top: 20px;
|
|
2248
2251
|
padding-bottom: 20px;
|
|
2249
2252
|
}
|
|
2250
2253
|
|
|
2251
|
-
.
|
|
2254
|
+
._3VB1M, ._3-AIe, ._27FOf {
|
|
2252
2255
|
padding-top: 23px;
|
|
2253
2256
|
padding-bottom: 23px;
|
|
2254
2257
|
}
|
|
2255
|
-
.
|
|
2258
|
+
._2vbWG {
|
|
2256
2259
|
border-top: 1px solid var(--divider-color);
|
|
2257
2260
|
}
|
|
2258
|
-
.
|
|
2261
|
+
._38SnF {
|
|
2259
2262
|
display: none;
|
|
2260
2263
|
justify-content: center;
|
|
2261
2264
|
position: relative;
|
|
2262
2265
|
}
|
|
2263
2266
|
@media screen and (max-width: 720px) {
|
|
2264
|
-
.
|
|
2267
|
+
._38SnF {
|
|
2265
2268
|
display: flex;
|
|
2266
2269
|
}
|
|
2267
2270
|
}
|
|
2268
2271
|
|
|
2269
|
-
.
|
|
2272
|
+
._5dLbF {
|
|
2270
2273
|
height: 100%;
|
|
2271
2274
|
position: absolute;
|
|
2272
2275
|
top: 0;
|
|
@@ -2275,50 +2278,50 @@
|
|
|
2275
2278
|
justify-content: center;
|
|
2276
2279
|
right: 24px;
|
|
2277
2280
|
}
|
|
2278
|
-
.
|
|
2281
|
+
._2aax2 {
|
|
2279
2282
|
position: relative;
|
|
2280
2283
|
box-sizing: border-box;
|
|
2281
2284
|
width: 0;
|
|
2282
2285
|
}
|
|
2283
|
-
.
|
|
2286
|
+
._2aax2._3k3Co {
|
|
2284
2287
|
display: flex;
|
|
2285
2288
|
align-items: flex-start;
|
|
2286
2289
|
}
|
|
2287
|
-
.
|
|
2290
|
+
._2aax2._3YpWd._38Wqy .uui-checkbox, ._2aax2._3YpWd._38Wqy .VkLcX, ._2aax2._3YpWd.HaSOB .uui-checkbox, ._2aax2._3YpWd.HaSOB .VkLcX {
|
|
2288
2291
|
margin-top: 6px;
|
|
2289
2292
|
}
|
|
2290
|
-
.
|
|
2293
|
+
._2aax2._3YpWd._4Y6bF .uui-checkbox, ._2aax2._3YpWd._4Y6bF .VkLcX {
|
|
2291
2294
|
margin-top: 9px;
|
|
2292
2295
|
}
|
|
2293
|
-
.
|
|
2296
|
+
._2aax2._3YpWd._1MjNQ .uui-checkbox, ._2aax2._3YpWd._1MjNQ .VkLcX {
|
|
2294
2297
|
margin-top: 12px;
|
|
2295
2298
|
}
|
|
2296
|
-
.
|
|
2299
|
+
._2aax2._3YpWd._3SVoA .uui-checkbox, ._2aax2._3YpWd._3SVoA .VkLcX {
|
|
2297
2300
|
margin-top: 15px;
|
|
2298
2301
|
}
|
|
2299
|
-
.
|
|
2302
|
+
._2aax2._3YpWd._2x4Ew .uui-checkbox, ._2aax2._3YpWd._2x4Ew .VkLcX {
|
|
2300
2303
|
margin-top: 21px;
|
|
2301
2304
|
}
|
|
2302
|
-
.
|
|
2305
|
+
._2aax2.eG3Dl {
|
|
2303
2306
|
align-self: center;
|
|
2304
2307
|
}
|
|
2305
|
-
.
|
|
2308
|
+
._2aax2.s6s39 {
|
|
2306
2309
|
padding: 0 12px;
|
|
2307
2310
|
}
|
|
2308
|
-
.
|
|
2311
|
+
._2aax2._3bhlB {
|
|
2309
2312
|
padding: 0 24px;
|
|
2310
2313
|
}
|
|
2311
|
-
.
|
|
2314
|
+
._2aax2._3DR_L {
|
|
2312
2315
|
padding-left: 12px;
|
|
2313
2316
|
}
|
|
2314
|
-
.
|
|
2317
|
+
._2aax2.c_DYF {
|
|
2315
2318
|
padding-left: 24px;
|
|
2316
2319
|
}
|
|
2317
|
-
.
|
|
2320
|
+
._2aax2._3sT1l {
|
|
2318
2321
|
padding-right: 24px;
|
|
2319
2322
|
}
|
|
2320
2323
|
|
|
2321
|
-
.
|
|
2324
|
+
._3PSem {
|
|
2322
2325
|
position: absolute;
|
|
2323
2326
|
left: 2px;
|
|
2324
2327
|
width: 6px;
|
|
@@ -2327,15 +2330,15 @@
|
|
|
2327
2330
|
align-self: stretch;
|
|
2328
2331
|
visibility: hidden;
|
|
2329
2332
|
}
|
|
2330
|
-
.-draggable.uui-table-row:not(.uui-drop-accepted):hover .
|
|
2333
|
+
.-draggable.uui-table-row:not(.uui-drop-accepted):hover ._3PSem {
|
|
2331
2334
|
visibility: visible;
|
|
2332
2335
|
}
|
|
2333
2336
|
|
|
2334
|
-
.
|
|
2337
|
+
._1wliz {
|
|
2335
2338
|
padding-right: 12px;
|
|
2336
2339
|
}
|
|
2337
2340
|
|
|
2338
|
-
.
|
|
2341
|
+
._3K8OA {
|
|
2339
2342
|
display: flex;
|
|
2340
2343
|
justify-content: flex-start;
|
|
2341
2344
|
flex-grow: 0;
|
|
@@ -2344,55 +2347,55 @@
|
|
|
2344
2347
|
padding-right: 12px;
|
|
2345
2348
|
}
|
|
2346
2349
|
|
|
2347
|
-
.
|
|
2350
|
+
.VkLcX {
|
|
2348
2351
|
margin: auto 0;
|
|
2349
2352
|
}
|
|
2350
|
-
.
|
|
2353
|
+
.VkLcX.uui-icon {
|
|
2351
2354
|
position: relative;
|
|
2352
2355
|
fill: var(--icon-color);
|
|
2353
2356
|
}
|
|
2354
2357
|
|
|
2355
|
-
.
|
|
2358
|
+
._34Fqt.uui-icon {
|
|
2356
2359
|
left: -2px;
|
|
2357
2360
|
flex: 0 0 12px;
|
|
2358
2361
|
width: 12px;
|
|
2359
2362
|
height: 12px;
|
|
2360
2363
|
}
|
|
2361
2364
|
|
|
2362
|
-
.
|
|
2365
|
+
.NVqeZ.uui-icon {
|
|
2363
2366
|
left: -4px;
|
|
2364
2367
|
flex: 0 0 18px;
|
|
2365
2368
|
width: 18px;
|
|
2366
2369
|
height: 18px;
|
|
2367
2370
|
}
|
|
2368
|
-
.
|
|
2371
|
+
._1osBr {
|
|
2369
2372
|
flex-wrap: nowrap;
|
|
2370
2373
|
}
|
|
2371
2374
|
|
|
2372
|
-
.
|
|
2375
|
+
.nWM23 {
|
|
2373
2376
|
width: 18px;
|
|
2374
2377
|
padding: 0;
|
|
2375
2378
|
}
|
|
2376
2379
|
|
|
2377
|
-
.
|
|
2380
|
+
._1Vf7i {
|
|
2378
2381
|
padding-top: 6px;
|
|
2379
2382
|
padding-bottom: 6px;
|
|
2380
2383
|
}
|
|
2381
2384
|
|
|
2382
|
-
.
|
|
2385
|
+
._2kOvV {
|
|
2383
2386
|
height: 1px;
|
|
2384
2387
|
width: 100%;
|
|
2385
2388
|
background-color: var(--divider-color);
|
|
2386
2389
|
}
|
|
2387
2390
|
|
|
2388
|
-
.
|
|
2391
|
+
._2aEN7 {
|
|
2389
2392
|
flex-basis: 200px;
|
|
2390
2393
|
}
|
|
2391
2394
|
|
|
2392
|
-
.
|
|
2395
|
+
._3pNI8 {
|
|
2393
2396
|
overflow: visible;
|
|
2394
2397
|
}
|
|
2395
|
-
.
|
|
2398
|
+
._3pNI8:after {
|
|
2396
2399
|
display: block;
|
|
2397
2400
|
content: "";
|
|
2398
2401
|
position: absolute;
|
|
@@ -2403,45 +2406,45 @@
|
|
|
2403
2406
|
right: -3px;
|
|
2404
2407
|
top: -3px;
|
|
2405
2408
|
}
|
|
2406
|
-
.
|
|
2409
|
+
.bhz5- {
|
|
2407
2410
|
flex-grow: 1;
|
|
2408
2411
|
}
|
|
2409
|
-
.
|
|
2412
|
+
._3wiur {
|
|
2410
2413
|
display: flex;
|
|
2411
2414
|
flex: auto;
|
|
2412
2415
|
}
|
|
2413
2416
|
|
|
2414
|
-
.
|
|
2417
|
+
.RO09u {
|
|
2415
2418
|
display: flex;
|
|
2416
2419
|
justify-content: center;
|
|
2417
2420
|
align-items: center;
|
|
2418
2421
|
}
|
|
2419
2422
|
|
|
2420
|
-
.
|
|
2423
|
+
.qB7yM.uui-focus {
|
|
2421
2424
|
background-color: var(--surface-hover-color);
|
|
2422
2425
|
}
|
|
2423
|
-
.
|
|
2426
|
+
.qB7yM.-clickable {
|
|
2424
2427
|
cursor: pointer;
|
|
2425
2428
|
}
|
|
2426
|
-
.
|
|
2429
|
+
._1TYYe {
|
|
2427
2430
|
display: flex;
|
|
2428
2431
|
justify-content: center;
|
|
2429
2432
|
align-items: center;
|
|
2430
2433
|
border-top: 1px solid var(--divider-color);
|
|
2431
2434
|
}
|
|
2432
|
-
.
|
|
2435
|
+
._1TYYe.uui-button-box {
|
|
2433
2436
|
background-color: #fff;
|
|
2434
2437
|
border-width: 1px !important;
|
|
2435
2438
|
}
|
|
2436
|
-
.
|
|
2439
|
+
._24MNK {
|
|
2437
2440
|
border-bottom: 1px solid var(--divider-color);
|
|
2438
2441
|
padding: 6px 24px;
|
|
2439
2442
|
}
|
|
2440
2443
|
|
|
2441
|
-
.
|
|
2444
|
+
._1J2gq {
|
|
2442
2445
|
margin-bottom: 6px;
|
|
2443
2446
|
}
|
|
2444
|
-
.
|
|
2447
|
+
._23Lwp .uui-count {
|
|
2445
2448
|
font-family: var(--font-semibold);
|
|
2446
2449
|
margin: auto;
|
|
2447
2450
|
height: 18px;
|
|
@@ -2453,23 +2456,23 @@
|
|
|
2453
2456
|
min-width: 6px;
|
|
2454
2457
|
text-align: center;
|
|
2455
2458
|
}
|
|
2456
|
-
.
|
|
2459
|
+
._23Lwp .uui-count:not(:first-child) {
|
|
2457
2460
|
margin-left: 6px;
|
|
2458
2461
|
}
|
|
2459
|
-
.
|
|
2462
|
+
._23Lwp .uui-caption {
|
|
2460
2463
|
font-family: var(--font-regular);
|
|
2461
2464
|
}
|
|
2462
|
-
.
|
|
2465
|
+
._23Lwp.uui-button-box {
|
|
2463
2466
|
border-width: 1px;
|
|
2464
2467
|
}
|
|
2465
|
-
.
|
|
2468
|
+
._23Lwp._31dkO {
|
|
2466
2469
|
min-width: 18px;
|
|
2467
2470
|
min-height: 18px;
|
|
2468
2471
|
padding-left: 3px;
|
|
2469
2472
|
padding-right: 3px;
|
|
2470
2473
|
border-radius: 9px;
|
|
2471
2474
|
}
|
|
2472
|
-
.
|
|
2475
|
+
._23Lwp._31dkO .uui-count {
|
|
2473
2476
|
height: 12px;
|
|
2474
2477
|
line-height: 12px;
|
|
2475
2478
|
font-size: 8px;
|
|
@@ -2477,178 +2480,178 @@
|
|
|
2477
2480
|
padding-left: 3px;
|
|
2478
2481
|
padding-right: 3px;
|
|
2479
2482
|
}
|
|
2480
|
-
.
|
|
2483
|
+
._23Lwp._31dkO .uui-count:not(:first-child) {
|
|
2481
2484
|
margin-left: 3px;
|
|
2482
2485
|
}
|
|
2483
|
-
.
|
|
2486
|
+
._23Lwp._31dkO .uui-caption {
|
|
2484
2487
|
padding: 2px 3px;
|
|
2485
2488
|
line-height: 12px;
|
|
2486
2489
|
font-size: 12px;
|
|
2487
2490
|
}
|
|
2488
|
-
.
|
|
2491
|
+
._23Lwp._31dkO.hlKMJ .uui-caption {
|
|
2489
2492
|
margin-left: 8px;
|
|
2490
2493
|
}
|
|
2491
|
-
.
|
|
2494
|
+
._23Lwp._31dkO.hlKMJ::before {
|
|
2492
2495
|
width: 8px;
|
|
2493
2496
|
height: 8px;
|
|
2494
2497
|
top: 4px;
|
|
2495
2498
|
left: 1px;
|
|
2496
2499
|
}
|
|
2497
|
-
.
|
|
2500
|
+
._23Lwp._1YcL- {
|
|
2498
2501
|
min-width: 24px;
|
|
2499
2502
|
padding-left: 5px;
|
|
2500
2503
|
padding-right: 5px;
|
|
2501
2504
|
border-radius: 12px;
|
|
2502
2505
|
min-height: 24px;
|
|
2503
2506
|
}
|
|
2504
|
-
.
|
|
2507
|
+
._23Lwp._1YcL- .uui-caption {
|
|
2505
2508
|
padding-left: 6px;
|
|
2506
2509
|
padding-right: 6px;
|
|
2507
2510
|
}
|
|
2508
|
-
.
|
|
2511
|
+
._23Lwp._1YcL- .uui-caption {
|
|
2509
2512
|
padding-top: 2px;
|
|
2510
2513
|
padding-bottom: 2px;
|
|
2511
2514
|
line-height: 18px;
|
|
2512
2515
|
font-size: 14px;
|
|
2513
2516
|
}
|
|
2514
|
-
.
|
|
2517
|
+
._23Lwp._1YcL-.hlKMJ .uui-caption {
|
|
2515
2518
|
margin-left: 12px;
|
|
2516
2519
|
}
|
|
2517
|
-
.
|
|
2520
|
+
._23Lwp._1YcL-.hlKMJ::before {
|
|
2518
2521
|
width: 12px;
|
|
2519
2522
|
height: 12px;
|
|
2520
2523
|
top: 5px;
|
|
2521
2524
|
left: 2px;
|
|
2522
2525
|
}
|
|
2523
|
-
.
|
|
2526
|
+
._23Lwp._2jd90 {
|
|
2524
2527
|
min-width: 30px;
|
|
2525
2528
|
padding-left: 5px;
|
|
2526
2529
|
padding-right: 5px;
|
|
2527
2530
|
border-radius: 15px;
|
|
2528
2531
|
min-height: 30px;
|
|
2529
2532
|
}
|
|
2530
|
-
.
|
|
2533
|
+
._23Lwp._2jd90 .uui-caption {
|
|
2531
2534
|
padding-left: 6px;
|
|
2532
2535
|
padding-right: 6px;
|
|
2533
2536
|
}
|
|
2534
|
-
.
|
|
2537
|
+
._23Lwp._2jd90 .uui-caption {
|
|
2535
2538
|
padding-top: 5px;
|
|
2536
2539
|
padding-bottom: 5px;
|
|
2537
2540
|
line-height: 18px;
|
|
2538
2541
|
font-size: 14px;
|
|
2539
2542
|
}
|
|
2540
|
-
.
|
|
2543
|
+
._23Lwp._2jd90.hlKMJ .uui-caption {
|
|
2541
2544
|
margin-left: 12px;
|
|
2542
2545
|
}
|
|
2543
|
-
.
|
|
2546
|
+
._23Lwp._2jd90.hlKMJ::before {
|
|
2544
2547
|
width: 12px;
|
|
2545
2548
|
height: 12px;
|
|
2546
2549
|
top: 8px;
|
|
2547
2550
|
left: 2px;
|
|
2548
2551
|
}
|
|
2549
|
-
.
|
|
2552
|
+
._23Lwp._2Mz3c {
|
|
2550
2553
|
min-width: 36px;
|
|
2551
2554
|
padding-left: 5px;
|
|
2552
2555
|
padding-right: 5px;
|
|
2553
2556
|
border-radius: 18px;
|
|
2554
2557
|
min-height: 36px;
|
|
2555
2558
|
}
|
|
2556
|
-
.
|
|
2559
|
+
._23Lwp._2Mz3c .uui-caption {
|
|
2557
2560
|
padding-left: 6px;
|
|
2558
2561
|
padding-right: 6px;
|
|
2559
2562
|
}
|
|
2560
|
-
.
|
|
2563
|
+
._23Lwp._2Mz3c .uui-caption {
|
|
2561
2564
|
padding-top: 5px;
|
|
2562
2565
|
padding-bottom: 5px;
|
|
2563
2566
|
line-height: 24px;
|
|
2564
2567
|
font-size: 14px;
|
|
2565
2568
|
}
|
|
2566
|
-
.
|
|
2569
|
+
._23Lwp._2Mz3c.hlKMJ .uui-caption {
|
|
2567
2570
|
margin-left: 12px;
|
|
2568
2571
|
}
|
|
2569
|
-
.
|
|
2572
|
+
._23Lwp._2Mz3c.hlKMJ::before {
|
|
2570
2573
|
width: 12px;
|
|
2571
2574
|
height: 12px;
|
|
2572
2575
|
top: 11px;
|
|
2573
2576
|
left: 2px;
|
|
2574
2577
|
}
|
|
2575
|
-
.
|
|
2578
|
+
._23Lwp._30rcT {
|
|
2576
2579
|
min-width: 42px;
|
|
2577
2580
|
padding-left: 11px;
|
|
2578
2581
|
padding-right: 11px;
|
|
2579
2582
|
border-radius: 21px;
|
|
2580
2583
|
min-height: 42px;
|
|
2581
2584
|
}
|
|
2582
|
-
.
|
|
2585
|
+
._23Lwp._30rcT .uui-caption {
|
|
2583
2586
|
padding-left: 6px;
|
|
2584
2587
|
padding-right: 6px;
|
|
2585
2588
|
}
|
|
2586
|
-
.
|
|
2589
|
+
._23Lwp._30rcT .uui-count {
|
|
2587
2590
|
height: 24px;
|
|
2588
2591
|
line-height: 24px;
|
|
2589
2592
|
font-size: 14px;
|
|
2590
2593
|
border-radius: 12px;
|
|
2591
2594
|
min-width: 12px;
|
|
2592
2595
|
}
|
|
2593
|
-
.
|
|
2596
|
+
._23Lwp._30rcT .uui-caption {
|
|
2594
2597
|
padding-top: 8px;
|
|
2595
2598
|
padding-bottom: 8px;
|
|
2596
2599
|
line-height: 24px;
|
|
2597
2600
|
font-size: 16px;
|
|
2598
2601
|
}
|
|
2599
|
-
.
|
|
2602
|
+
._23Lwp._30rcT.hlKMJ .uui-caption {
|
|
2600
2603
|
margin-left: 12px;
|
|
2601
2604
|
}
|
|
2602
|
-
.
|
|
2605
|
+
._23Lwp._30rcT.hlKMJ::before {
|
|
2603
2606
|
width: 16px;
|
|
2604
2607
|
height: 16px;
|
|
2605
2608
|
top: 12px;
|
|
2606
2609
|
left: 3px;
|
|
2607
2610
|
}
|
|
2608
|
-
.
|
|
2611
|
+
._23Lwp._3i-5f {
|
|
2609
2612
|
min-width: 48px;
|
|
2610
2613
|
padding-left: 11px;
|
|
2611
2614
|
padding-right: 11px;
|
|
2612
2615
|
border-radius: 24px;
|
|
2613
2616
|
min-height: 48px;
|
|
2614
2617
|
}
|
|
2615
|
-
.
|
|
2618
|
+
._23Lwp._3i-5f .uui-caption {
|
|
2616
2619
|
padding-left: 6px;
|
|
2617
2620
|
padding-right: 6px;
|
|
2618
2621
|
}
|
|
2619
|
-
.
|
|
2622
|
+
._23Lwp._3i-5f .uui-count {
|
|
2620
2623
|
height: 24px;
|
|
2621
2624
|
line-height: 24px;
|
|
2622
2625
|
font-size: 14px;
|
|
2623
2626
|
border-radius: 12px;
|
|
2624
2627
|
min-width: 12px;
|
|
2625
2628
|
}
|
|
2626
|
-
.
|
|
2629
|
+
._23Lwp._3i-5f .uui-caption {
|
|
2627
2630
|
padding-top: 11px;
|
|
2628
2631
|
padding-bottom: 11px;
|
|
2629
2632
|
line-height: 24px;
|
|
2630
2633
|
font-size: 16px;
|
|
2631
2634
|
}
|
|
2632
|
-
.
|
|
2635
|
+
._23Lwp._3i-5f.hlKMJ .uui-caption {
|
|
2633
2636
|
margin-left: 12px;
|
|
2634
2637
|
}
|
|
2635
|
-
.
|
|
2638
|
+
._23Lwp._3i-5f.hlKMJ::before {
|
|
2636
2639
|
width: 16px;
|
|
2637
2640
|
height: 16px;
|
|
2638
2641
|
top: 15px;
|
|
2639
2642
|
left: 3px;
|
|
2640
2643
|
}
|
|
2641
|
-
.
|
|
2644
|
+
._23Lwp._3Pg94 {
|
|
2642
2645
|
background-color: var(--badge-bg-color);
|
|
2643
2646
|
color: var(--badge-caption-color-solid);
|
|
2644
2647
|
fill: var(--badge-caption-color-solid);
|
|
2645
2648
|
border-color: var(--badge-bg-color);
|
|
2646
2649
|
}
|
|
2647
|
-
.
|
|
2650
|
+
._23Lwp._3Pg94 .uui-count {
|
|
2648
2651
|
background-color: var(--badge-count-bg-color);
|
|
2649
2652
|
color: var(--badge-count-color);
|
|
2650
2653
|
}
|
|
2651
|
-
.
|
|
2654
|
+
._23Lwp._3Pg94.-clickable:hover {
|
|
2652
2655
|
background-color: var(--badge-bg-color-hover);
|
|
2653
2656
|
border-color: var(--badge-bg-color-hover);
|
|
2654
2657
|
cursor: pointer;
|
|
@@ -2693,12 +2696,12 @@
|
|
|
2693
2696
|
--tag-count-bg-color: white;
|
|
2694
2697
|
--tag-count-color: var(--text-secondary-color);
|
|
2695
2698
|
}
|
|
2696
|
-
.
|
|
2699
|
+
._2K1zB.uui-button-box {
|
|
2697
2700
|
background-color: var(--tag-bg-color);
|
|
2698
2701
|
fill: var(--tag-fill-color);
|
|
2699
2702
|
border: 0;
|
|
2700
2703
|
}
|
|
2701
|
-
.
|
|
2704
|
+
._2K1zB.uui-button-box .uui-count {
|
|
2702
2705
|
background-color: var(--tag-count-bg-color);
|
|
2703
2706
|
color: var(--tag-count-color);
|
|
2704
2707
|
font-family: var(--font-semibold);
|
|
@@ -2710,25 +2713,25 @@
|
|
|
2710
2713
|
padding-left: 6px;
|
|
2711
2714
|
padding-right: 6px;
|
|
2712
2715
|
}
|
|
2713
|
-
.
|
|
2716
|
+
._2K1zB.uui-button-box .uui-count:not(:first-child) {
|
|
2714
2717
|
margin-left: 6px;
|
|
2715
2718
|
}
|
|
2716
|
-
.
|
|
2719
|
+
._2K1zB.uui-button-box.-clickable:hover {
|
|
2717
2720
|
background-color: var(--tag-bg-color-hover);
|
|
2718
2721
|
fill: var(--tag-fill-color-hover);
|
|
2719
2722
|
cursor: pointer;
|
|
2720
2723
|
}
|
|
2721
|
-
.
|
|
2724
|
+
._2K1zB.uui-button-box .uui-caption {
|
|
2722
2725
|
font-family: var(--font-regular);
|
|
2723
2726
|
color: var(--tag-caption-color);
|
|
2724
2727
|
}
|
|
2725
|
-
.
|
|
2728
|
+
._2K1zB.GGpjN {
|
|
2726
2729
|
min-height: 18px;
|
|
2727
2730
|
min-width: 18px;
|
|
2728
2731
|
padding-left: 3px;
|
|
2729
2732
|
padding-right: 3px;
|
|
2730
2733
|
}
|
|
2731
|
-
.
|
|
2734
|
+
._2K1zB.GGpjN .uui-count {
|
|
2732
2735
|
height: 12px;
|
|
2733
2736
|
min-width: 6px;
|
|
2734
2737
|
line-height: 12px;
|
|
@@ -2737,102 +2740,102 @@
|
|
|
2737
2740
|
padding-left: 3px;
|
|
2738
2741
|
padding-right: 3px;
|
|
2739
2742
|
}
|
|
2740
|
-
.
|
|
2743
|
+
._2K1zB.GGpjN .uui-count:not(:first-child) {
|
|
2741
2744
|
margin-left: 3px;
|
|
2742
2745
|
}
|
|
2743
|
-
.
|
|
2746
|
+
._2K1zB.GGpjN .uui-caption, ._2K1zB.GGpjN .uui-input {
|
|
2744
2747
|
padding: 3px 3px;
|
|
2745
2748
|
line-height: 12px;
|
|
2746
2749
|
font-size: 12px;
|
|
2747
2750
|
}
|
|
2748
|
-
.
|
|
2751
|
+
._2K1zB._2_Cff {
|
|
2749
2752
|
min-width: 24px;
|
|
2750
2753
|
padding-left: 6px;
|
|
2751
2754
|
padding-right: 6px;
|
|
2752
2755
|
min-height: 24px;
|
|
2753
2756
|
}
|
|
2754
|
-
.
|
|
2757
|
+
._2K1zB._2_Cff .uui-caption {
|
|
2755
2758
|
padding-left: 6px;
|
|
2756
2759
|
padding-right: 6px;
|
|
2757
2760
|
}
|
|
2758
|
-
.
|
|
2761
|
+
._2K1zB._2_Cff .uui-caption, ._2K1zB._2_Cff .uui-input {
|
|
2759
2762
|
padding-top: 3px;
|
|
2760
2763
|
padding-bottom: 3px;
|
|
2761
2764
|
line-height: 18px;
|
|
2762
2765
|
font-size: 14px;
|
|
2763
2766
|
}
|
|
2764
|
-
.
|
|
2767
|
+
._2K1zB.KPhis {
|
|
2765
2768
|
min-width: 30px;
|
|
2766
2769
|
padding-left: 6px;
|
|
2767
2770
|
padding-right: 6px;
|
|
2768
2771
|
min-height: 30px;
|
|
2769
2772
|
}
|
|
2770
|
-
.
|
|
2773
|
+
._2K1zB.KPhis .uui-caption {
|
|
2771
2774
|
padding-left: 6px;
|
|
2772
2775
|
padding-right: 6px;
|
|
2773
2776
|
}
|
|
2774
|
-
.
|
|
2777
|
+
._2K1zB.KPhis .uui-caption, ._2K1zB.KPhis .uui-input {
|
|
2775
2778
|
padding-top: 6px;
|
|
2776
2779
|
padding-bottom: 6px;
|
|
2777
2780
|
line-height: 18px;
|
|
2778
2781
|
font-size: 14px;
|
|
2779
2782
|
}
|
|
2780
|
-
.
|
|
2783
|
+
._2K1zB._1Cyjz {
|
|
2781
2784
|
min-width: 36px;
|
|
2782
2785
|
padding-left: 6px;
|
|
2783
2786
|
padding-right: 6px;
|
|
2784
2787
|
min-height: 36px;
|
|
2785
2788
|
}
|
|
2786
|
-
.
|
|
2789
|
+
._2K1zB._1Cyjz .uui-caption {
|
|
2787
2790
|
padding-left: 6px;
|
|
2788
2791
|
padding-right: 6px;
|
|
2789
2792
|
}
|
|
2790
|
-
.
|
|
2793
|
+
._2K1zB._1Cyjz .uui-caption, ._2K1zB._1Cyjz .uui-input {
|
|
2791
2794
|
padding-top: 6px;
|
|
2792
2795
|
padding-bottom: 6px;
|
|
2793
2796
|
line-height: 24px;
|
|
2794
2797
|
font-size: 14px;
|
|
2795
2798
|
}
|
|
2796
|
-
.
|
|
2799
|
+
._2K1zB._2saLz {
|
|
2797
2800
|
min-width: 42px;
|
|
2798
2801
|
padding-left: 12px;
|
|
2799
2802
|
padding-right: 12px;
|
|
2800
2803
|
min-height: 42px;
|
|
2801
2804
|
}
|
|
2802
|
-
.
|
|
2805
|
+
._2K1zB._2saLz .uui-caption {
|
|
2803
2806
|
padding-left: 6px;
|
|
2804
2807
|
padding-right: 6px;
|
|
2805
2808
|
}
|
|
2806
|
-
.
|
|
2809
|
+
._2K1zB._2saLz .uui-caption, ._2K1zB._2saLz .uui-input {
|
|
2807
2810
|
padding-top: 9px;
|
|
2808
2811
|
padding-bottom: 9px;
|
|
2809
2812
|
line-height: 24px;
|
|
2810
2813
|
font-size: 16px;
|
|
2811
2814
|
}
|
|
2812
|
-
.
|
|
2815
|
+
._2K1zB._2saLz .uui-count {
|
|
2813
2816
|
height: 24px;
|
|
2814
2817
|
line-height: 24px;
|
|
2815
2818
|
font-size: 14px;
|
|
2816
2819
|
border-radius: 12px;
|
|
2817
2820
|
min-width: 12px;
|
|
2818
2821
|
}
|
|
2819
|
-
.
|
|
2822
|
+
._2K1zB._1sozt {
|
|
2820
2823
|
min-width: 48px;
|
|
2821
2824
|
padding-left: 12px;
|
|
2822
2825
|
padding-right: 12px;
|
|
2823
2826
|
min-height: 48px;
|
|
2824
2827
|
}
|
|
2825
|
-
.
|
|
2828
|
+
._2K1zB._1sozt .uui-caption {
|
|
2826
2829
|
padding-left: 6px;
|
|
2827
2830
|
padding-right: 6px;
|
|
2828
2831
|
}
|
|
2829
|
-
.
|
|
2832
|
+
._2K1zB._1sozt .uui-caption, ._2K1zB._1sozt .uui-input {
|
|
2830
2833
|
padding-top: 12px;
|
|
2831
2834
|
padding-bottom: 12px;
|
|
2832
2835
|
line-height: 24px;
|
|
2833
2836
|
font-size: 16px;
|
|
2834
2837
|
}
|
|
2835
|
-
.
|
|
2838
|
+
._2K1zB._1sozt .uui-count {
|
|
2836
2839
|
height: 24px;
|
|
2837
2840
|
line-height: 24px;
|
|
2838
2841
|
font-size: 14px;
|
|
@@ -2854,7 +2857,7 @@
|
|
|
2854
2857
|
--picker-toggler-icon-color-clickable-hover: var(--icon-hover-color);
|
|
2855
2858
|
--picker-toggler-border-radius: var(--border-radius);
|
|
2856
2859
|
}
|
|
2857
|
-
.
|
|
2860
|
+
.v-I8s {
|
|
2858
2861
|
padding-top: 2px;
|
|
2859
2862
|
padding-left: 5px;
|
|
2860
2863
|
padding-right: 5px;
|
|
@@ -2862,87 +2865,87 @@
|
|
|
2862
2865
|
box-sizing: border-box;
|
|
2863
2866
|
border-style: solid;
|
|
2864
2867
|
}
|
|
2865
|
-
.
|
|
2868
|
+
.v-I8s._9RUwm {
|
|
2866
2869
|
background-color: var(--picker-toggler-bg-color);
|
|
2867
2870
|
border-color: var(--picker-toggler-border-color);
|
|
2868
2871
|
fill: var(--picker-toggler-icon-color);
|
|
2869
2872
|
border-radius: var(--picker-toggler-border-radius);
|
|
2870
2873
|
}
|
|
2871
|
-
.
|
|
2874
|
+
.v-I8s._9RUwm .uui-icon.-clickable.uui-enabled, .v-I8s._9RUwm .uui-icon-dropdown.uui-enabled {
|
|
2872
2875
|
fill: var(--picker-toggler-icon-color-clickable);
|
|
2873
2876
|
}
|
|
2874
|
-
.
|
|
2877
|
+
.v-I8s._9RUwm .uui-icon.-clickable.uui-enabled:hover, .v-I8s._9RUwm .uui-icon-dropdown.uui-enabled:hover {
|
|
2875
2878
|
fill: var(--picker-toggler-icon-color-clickable-hover);
|
|
2876
2879
|
}
|
|
2877
|
-
.
|
|
2880
|
+
.v-I8s._9RUwm .uui-icon.-clickable.uui-disabled, .v-I8s._9RUwm .uui-icon-dropdown.uui-disabled {
|
|
2878
2881
|
fill: var(--picker-toggler-icon-color-disabled);
|
|
2879
2882
|
}
|
|
2880
|
-
.
|
|
2883
|
+
.v-I8s._9RUwm:hover {
|
|
2881
2884
|
border-color: var(--picker-toggler-border-color-hover);
|
|
2882
2885
|
}
|
|
2883
|
-
.
|
|
2886
|
+
.v-I8s._9RUwm.uui-focus {
|
|
2884
2887
|
border-color: var(--picker-toggler-border-color-active);
|
|
2885
2888
|
outline: none;
|
|
2886
2889
|
}
|
|
2887
|
-
.
|
|
2890
|
+
.v-I8s.SRZOG {
|
|
2888
2891
|
background-color: transparent;
|
|
2889
2892
|
border-color: transparent;
|
|
2890
2893
|
fill: var(--picker-toggler-icon-color);
|
|
2891
2894
|
}
|
|
2892
|
-
.
|
|
2895
|
+
.v-I8s.SRZOG .uui-icon.-clickable, .v-I8s.SRZOG .uui-icon-dropdown {
|
|
2893
2896
|
cursor: pointer;
|
|
2894
2897
|
}
|
|
2895
|
-
.
|
|
2898
|
+
.v-I8s.SRZOG .uui-icon.-clickable.uui-enabled, .v-I8s.SRZOG .uui-icon-dropdown.uui-enabled {
|
|
2896
2899
|
fill: transparent;
|
|
2897
2900
|
}
|
|
2898
|
-
.
|
|
2901
|
+
.v-I8s.SRZOG .uui-icon.-clickable.uui-disabled, .v-I8s.SRZOG .uui-icon-dropdown.uui-disabled {
|
|
2899
2902
|
fill: transparent;
|
|
2900
2903
|
}
|
|
2901
|
-
.
|
|
2904
|
+
.v-I8s.SRZOG:hover {
|
|
2902
2905
|
background-color: white;
|
|
2903
2906
|
border-color: var(--picker-toggler-border-color);
|
|
2904
2907
|
}
|
|
2905
|
-
.
|
|
2908
|
+
.v-I8s.SRZOG:hover .uui-icon.-clickable.uui-enabled, .v-I8s.SRZOG:hover .uui-icon-dropdown.uui-enabled {
|
|
2906
2909
|
fill: var(--picker-toggler-icon-color-clickable);
|
|
2907
2910
|
}
|
|
2908
|
-
.
|
|
2911
|
+
.v-I8s.SRZOG:hover .uui-icon.-clickable.uui-enabled:hover, .v-I8s.SRZOG:hover .uui-icon-dropdown.uui-enabled:hover {
|
|
2909
2912
|
fill: var(--picker-toggler-icon-color-clickable-hover);
|
|
2910
2913
|
}
|
|
2911
|
-
.
|
|
2914
|
+
.v-I8s.SRZOG:hover .uui-icon.-clickable.uui-disabled, .v-I8s.SRZOG:hover .uui-icon-dropdown.uui-disabled {
|
|
2912
2915
|
fill: transparent;
|
|
2913
2916
|
}
|
|
2914
|
-
.
|
|
2917
|
+
.v-I8s.SRZOG.uui-focus {
|
|
2915
2918
|
background-color: white;
|
|
2916
2919
|
border-color: var(--picker-toggler-border-color-active);
|
|
2917
2920
|
outline: none;
|
|
2918
2921
|
}
|
|
2919
|
-
.
|
|
2922
|
+
.v-I8s.uui-invalid._9RUwm, .v-I8s.uui-invalid.SRZOG {
|
|
2920
2923
|
border-color: var(--picker-toggler-border-color-error);
|
|
2921
2924
|
}
|
|
2922
|
-
.
|
|
2925
|
+
.v-I8s.uui-readonly._9RUwm {
|
|
2923
2926
|
background-color: var(--input-bg-readonly-color);
|
|
2924
2927
|
border-color: var(--input-border-readonly-color);
|
|
2925
2928
|
pointer-events: none;
|
|
2926
2929
|
}
|
|
2927
|
-
.
|
|
2930
|
+
.v-I8s.uui-readonly._9RUwm:hover {
|
|
2928
2931
|
border-color: var(--input-border-readonly-color);
|
|
2929
2932
|
}
|
|
2930
|
-
.
|
|
2933
|
+
.v-I8s.uui-readonly.SRZOG {
|
|
2931
2934
|
background-color: transparent;
|
|
2932
2935
|
border-color: transparent;
|
|
2933
2936
|
pointer-events: none;
|
|
2934
2937
|
}
|
|
2935
|
-
.
|
|
2938
|
+
.v-I8s.uui-readonly.SRZOG:hover {
|
|
2936
2939
|
background-color: transparent;
|
|
2937
2940
|
border-color: transparent;
|
|
2938
2941
|
}
|
|
2939
|
-
.
|
|
2942
|
+
.v-I8s.uui-readonly .uui-icon-dropdown, .v-I8s.uui-readonly .uui-icon-cancel {
|
|
2940
2943
|
visibility: hidden;
|
|
2941
2944
|
}
|
|
2942
|
-
.
|
|
2945
|
+
.v-I8s.uui-disabled {
|
|
2943
2946
|
fill: var(--picker-toggler-icon-color-disabled);
|
|
2944
2947
|
}
|
|
2945
|
-
.
|
|
2948
|
+
.v-I8s.uui-disabled._9RUwm {
|
|
2946
2949
|
background-color: var(--input-bg-disabled-color);
|
|
2947
2950
|
color: var(--input-text-disabled-color);
|
|
2948
2951
|
fill: var(--input-text-disabled-color);
|
|
@@ -2950,29 +2953,29 @@
|
|
|
2950
2953
|
cursor: default;
|
|
2951
2954
|
pointer-events: none;
|
|
2952
2955
|
}
|
|
2953
|
-
.
|
|
2956
|
+
.v-I8s.uui-disabled._9RUwm .uui-input {
|
|
2954
2957
|
color: var(--input-text-disabled-color);
|
|
2955
2958
|
}
|
|
2956
|
-
.
|
|
2959
|
+
.v-I8s.uui-disabled._9RUwm .uui-input::placeholder {
|
|
2957
2960
|
color: var(--input-placeholder-disabled-color);
|
|
2958
2961
|
}
|
|
2959
|
-
.
|
|
2962
|
+
.v-I8s.uui-disabled._9RUwm:hover, .v-I8s.uui-disabled._9RUwm:active, .v-I8s.uui-disabled._9RUwm:focus {
|
|
2960
2963
|
background-color: var(--input-bg-disabled-color);
|
|
2961
2964
|
color: var(--input-text-disabled-color);
|
|
2962
2965
|
fill: var(--input-text-disabled-color);
|
|
2963
2966
|
border-color: var(--input-border-disabled-color);
|
|
2964
2967
|
box-shadow: none;
|
|
2965
2968
|
}
|
|
2966
|
-
.
|
|
2969
|
+
.v-I8s.uui-disabled._9RUwm:hover .uui-input, .v-I8s.uui-disabled._9RUwm:active .uui-input, .v-I8s.uui-disabled._9RUwm:focus .uui-input {
|
|
2967
2970
|
color: var(--input-text-disabled-color);
|
|
2968
2971
|
}
|
|
2969
|
-
.
|
|
2972
|
+
.v-I8s.uui-disabled._9RUwm:hover .uui-input::placeholder, .v-I8s.uui-disabled._9RUwm:active .uui-input::placeholder, .v-I8s.uui-disabled._9RUwm:focus .uui-input::placeholder {
|
|
2970
2973
|
color: var(--input-placeholder-disabled-color);
|
|
2971
2974
|
}
|
|
2972
|
-
.
|
|
2975
|
+
.v-I8s.uui-disabled._9RUwm::placeholder {
|
|
2973
2976
|
color: var(--input-placeholder-disabled-color);
|
|
2974
2977
|
}
|
|
2975
|
-
.
|
|
2978
|
+
.v-I8s.uui-disabled.SRZOG {
|
|
2976
2979
|
background-color: transparent;
|
|
2977
2980
|
color: var(--input-text-disabled-color);
|
|
2978
2981
|
fill: var(--input-text-disabled-color);
|
|
@@ -2980,84 +2983,84 @@
|
|
|
2980
2983
|
cursor: default;
|
|
2981
2984
|
pointer-events: none;
|
|
2982
2985
|
}
|
|
2983
|
-
.
|
|
2986
|
+
.v-I8s.uui-disabled.SRZOG .uui-input {
|
|
2984
2987
|
color: var(--input-text-disabled-color);
|
|
2985
2988
|
}
|
|
2986
|
-
.
|
|
2989
|
+
.v-I8s.uui-disabled.SRZOG .uui-input::placeholder {
|
|
2987
2990
|
color: var(--input-placeholder-disabled-color);
|
|
2988
2991
|
}
|
|
2989
|
-
.
|
|
2992
|
+
.v-I8s.uui-disabled.SRZOG:hover, .v-I8s.uui-disabled.SRZOG:active, .v-I8s.uui-disabled.SRZOG:focus {
|
|
2990
2993
|
background-color: transparent;
|
|
2991
2994
|
color: var(--input-text-disabled-color);
|
|
2992
2995
|
fill: var(--input-text-disabled-color);
|
|
2993
2996
|
border-color: transparent;
|
|
2994
2997
|
box-shadow: none;
|
|
2995
2998
|
}
|
|
2996
|
-
.
|
|
2999
|
+
.v-I8s.uui-disabled.SRZOG:hover .uui-input, .v-I8s.uui-disabled.SRZOG:active .uui-input, .v-I8s.uui-disabled.SRZOG:focus .uui-input {
|
|
2997
3000
|
color: var(--input-text-disabled-color);
|
|
2998
3001
|
}
|
|
2999
|
-
.
|
|
3002
|
+
.v-I8s.uui-disabled.SRZOG:hover .uui-input::placeholder, .v-I8s.uui-disabled.SRZOG:active .uui-input::placeholder, .v-I8s.uui-disabled.SRZOG:focus .uui-input::placeholder {
|
|
3000
3003
|
color: var(--input-placeholder-disabled-color);
|
|
3001
3004
|
}
|
|
3002
|
-
.
|
|
3005
|
+
.v-I8s.uui-disabled.SRZOG::placeholder {
|
|
3003
3006
|
color: var(--input-placeholder-disabled-color);
|
|
3004
3007
|
}
|
|
3005
|
-
.
|
|
3008
|
+
.v-I8s.uui-disabled .uui-input {
|
|
3006
3009
|
cursor: default;
|
|
3007
3010
|
}
|
|
3008
|
-
.
|
|
3011
|
+
.v-I8s.uui-disabled .uui-input::placeholder {
|
|
3009
3012
|
color: var(--picker-toggler-text-color-disabled);
|
|
3010
3013
|
}
|
|
3011
|
-
.
|
|
3014
|
+
.v-I8s.uui-disabled .uui-icon-dropdown, .v-I8s.uui-disabled .uui-icon-cancel {
|
|
3012
3015
|
visibility: hidden;
|
|
3013
3016
|
}
|
|
3014
|
-
.
|
|
3017
|
+
.v-I8s .uui-input {
|
|
3015
3018
|
padding-left: 6px;
|
|
3016
3019
|
padding-right: 6px;
|
|
3017
3020
|
margin-bottom: 2px;
|
|
3018
3021
|
font-family: var(--font-regular);
|
|
3019
3022
|
color: var(--picker-toggler-text-color);
|
|
3020
3023
|
}
|
|
3021
|
-
.
|
|
3024
|
+
.v-I8s .uui-input::placeholder {
|
|
3022
3025
|
color: var(--picker-toggler-placeholder-color);
|
|
3023
3026
|
}
|
|
3024
|
-
.
|
|
3027
|
+
.v-I8s .uui-input::-moz-placeholder {
|
|
3025
3028
|
opacity: 1;
|
|
3026
3029
|
}
|
|
3027
|
-
.
|
|
3030
|
+
.v-I8s .uui-caption {
|
|
3028
3031
|
overflow: hidden;
|
|
3029
3032
|
text-overflow: ellipsis;
|
|
3030
3033
|
font-family: var(--font-regular);
|
|
3031
3034
|
align-self: center;
|
|
3032
3035
|
white-space: nowrap;
|
|
3033
3036
|
}
|
|
3034
|
-
.
|
|
3037
|
+
.v-I8s .uui-button-box {
|
|
3035
3038
|
margin-right: 3px;
|
|
3036
3039
|
margin-bottom: 2px;
|
|
3037
3040
|
}
|
|
3038
|
-
.
|
|
3041
|
+
.v-I8s .uui-button-box:last-of-type {
|
|
3039
3042
|
margin-right: 0;
|
|
3040
3043
|
}
|
|
3041
|
-
.
|
|
3044
|
+
.v-I8s .uui-placeholder {
|
|
3042
3045
|
color: var(--picker-toggler-text-color);
|
|
3043
3046
|
}
|
|
3044
|
-
.
|
|
3047
|
+
.v-I8s .uui-placeholder::placeholder {
|
|
3045
3048
|
color: var(--picker-toggler-text-color);
|
|
3046
3049
|
}
|
|
3047
|
-
.
|
|
3050
|
+
.v-I8s .uui-placeholder::-moz-placeholder {
|
|
3048
3051
|
opacity: 1;
|
|
3049
3052
|
}
|
|
3050
|
-
.
|
|
3053
|
+
.v-I8s .uui-icon-cancel {
|
|
3051
3054
|
margin-left: 6px;
|
|
3052
3055
|
}
|
|
3053
|
-
.
|
|
3056
|
+
.v-I8s._1MBII {
|
|
3054
3057
|
min-width: 24px;
|
|
3055
3058
|
}
|
|
3056
|
-
.
|
|
3059
|
+
.v-I8s._1MBII.uui-input-box {
|
|
3057
3060
|
min-height: 24px;
|
|
3058
3061
|
border-width: 1px;
|
|
3059
3062
|
}
|
|
3060
|
-
.
|
|
3063
|
+
.v-I8s._1MBII .uui-input {
|
|
3061
3064
|
line-height: 18px;
|
|
3062
3065
|
font-size: 12px;
|
|
3063
3066
|
padding-top: 3px;
|
|
@@ -3065,18 +3068,18 @@
|
|
|
3065
3068
|
padding-top: 0;
|
|
3066
3069
|
padding-bottom: 0;
|
|
3067
3070
|
}
|
|
3068
|
-
.
|
|
3071
|
+
.v-I8s._1MBII :not(.uui-button-box) > .uui-icon {
|
|
3069
3072
|
height: 18px;
|
|
3070
3073
|
margin-bottom: 2px;
|
|
3071
3074
|
}
|
|
3072
|
-
.
|
|
3075
|
+
.v-I8s._2LgCP {
|
|
3073
3076
|
min-width: 30px;
|
|
3074
3077
|
}
|
|
3075
|
-
.
|
|
3078
|
+
.v-I8s._2LgCP.uui-input-box {
|
|
3076
3079
|
min-height: 30px;
|
|
3077
3080
|
border-width: 1px;
|
|
3078
3081
|
}
|
|
3079
|
-
.
|
|
3082
|
+
.v-I8s._2LgCP .uui-input {
|
|
3080
3083
|
line-height: 18px;
|
|
3081
3084
|
font-size: 14px;
|
|
3082
3085
|
padding-top: 6px;
|
|
@@ -3084,18 +3087,18 @@
|
|
|
3084
3087
|
padding-top: 3px;
|
|
3085
3088
|
padding-bottom: 3px;
|
|
3086
3089
|
}
|
|
3087
|
-
.
|
|
3090
|
+
.v-I8s._2LgCP :not(.uui-button-box) > .uui-icon {
|
|
3088
3091
|
height: 24px;
|
|
3089
3092
|
margin-bottom: 2px;
|
|
3090
3093
|
}
|
|
3091
|
-
.
|
|
3094
|
+
.v-I8s._22Onq {
|
|
3092
3095
|
min-width: 36px;
|
|
3093
3096
|
}
|
|
3094
|
-
.
|
|
3097
|
+
.v-I8s._22Onq.uui-input-box {
|
|
3095
3098
|
min-height: 36px;
|
|
3096
3099
|
border-width: 1px;
|
|
3097
3100
|
}
|
|
3098
|
-
.
|
|
3101
|
+
.v-I8s._22Onq .uui-input {
|
|
3099
3102
|
line-height: 18px;
|
|
3100
3103
|
font-size: 14px;
|
|
3101
3104
|
padding-top: 9px;
|
|
@@ -3103,18 +3106,18 @@
|
|
|
3103
3106
|
padding-top: 6px;
|
|
3104
3107
|
padding-bottom: 6px;
|
|
3105
3108
|
}
|
|
3106
|
-
.
|
|
3109
|
+
.v-I8s._22Onq :not(.uui-button-box) > .uui-icon {
|
|
3107
3110
|
height: 30px;
|
|
3108
3111
|
margin-bottom: 2px;
|
|
3109
3112
|
}
|
|
3110
|
-
.
|
|
3113
|
+
.v-I8s._1Wlde {
|
|
3111
3114
|
min-width: 42px;
|
|
3112
3115
|
}
|
|
3113
|
-
.
|
|
3116
|
+
.v-I8s._1Wlde.uui-input-box {
|
|
3114
3117
|
min-height: 42px;
|
|
3115
3118
|
border-width: 1px;
|
|
3116
3119
|
}
|
|
3117
|
-
.
|
|
3120
|
+
.v-I8s._1Wlde .uui-input {
|
|
3118
3121
|
line-height: 24px;
|
|
3119
3122
|
font-size: 16px;
|
|
3120
3123
|
padding-top: 9px;
|
|
@@ -3122,18 +3125,18 @@
|
|
|
3122
3125
|
padding-top: 6px;
|
|
3123
3126
|
padding-bottom: 6px;
|
|
3124
3127
|
}
|
|
3125
|
-
.
|
|
3128
|
+
.v-I8s._1Wlde :not(.uui-button-box) > .uui-icon {
|
|
3126
3129
|
height: 36px;
|
|
3127
3130
|
margin-bottom: 2px;
|
|
3128
3131
|
}
|
|
3129
|
-
.
|
|
3132
|
+
.v-I8s.alEs6 {
|
|
3130
3133
|
min-width: 48px;
|
|
3131
3134
|
}
|
|
3132
|
-
.
|
|
3135
|
+
.v-I8s.alEs6.uui-input-box {
|
|
3133
3136
|
min-height: 48px;
|
|
3134
3137
|
border-width: 1px;
|
|
3135
3138
|
}
|
|
3136
|
-
.
|
|
3139
|
+
.v-I8s.alEs6 .uui-input {
|
|
3137
3140
|
line-height: 24px;
|
|
3138
3141
|
font-size: 16px;
|
|
3139
3142
|
padding-top: 12px;
|
|
@@ -3141,67 +3144,67 @@
|
|
|
3141
3144
|
padding-top: 9px;
|
|
3142
3145
|
padding-bottom: 9px;
|
|
3143
3146
|
}
|
|
3144
|
-
.
|
|
3147
|
+
.v-I8s.alEs6 :not(.uui-button-box) > .uui-icon {
|
|
3145
3148
|
height: 42px;
|
|
3146
3149
|
margin-bottom: 2px;
|
|
3147
3150
|
}
|
|
3148
|
-
.
|
|
3151
|
+
.N_QoT ._1xr14 {
|
|
3149
3152
|
padding-top: 3px;
|
|
3150
3153
|
padding-bottom: 3px;
|
|
3151
3154
|
}
|
|
3152
|
-
.
|
|
3155
|
+
.N_QoT ._23cqa {
|
|
3153
3156
|
padding-top: 6px;
|
|
3154
3157
|
padding-bottom: 6px;
|
|
3155
3158
|
}
|
|
3156
|
-
.
|
|
3159
|
+
.N_QoT ._2X0DH {
|
|
3157
3160
|
padding-top: 6px;
|
|
3158
3161
|
padding-bottom: 6px;
|
|
3159
3162
|
}
|
|
3160
|
-
.
|
|
3163
|
+
.N_QoT ._1EmB7 {
|
|
3161
3164
|
padding-top: 9px;
|
|
3162
3165
|
padding-bottom: 9px;
|
|
3163
3166
|
}
|
|
3164
|
-
.
|
|
3167
|
+
.N_QoT ._1QQFv {
|
|
3165
3168
|
padding-top: 9px;
|
|
3166
3169
|
padding-bottom: 9px;
|
|
3167
3170
|
}
|
|
3168
3171
|
@media screen and (max-width: 720px) {
|
|
3169
|
-
.
|
|
3172
|
+
._2YheT {
|
|
3170
3173
|
height: var(--app-mobile-height);
|
|
3171
3174
|
}
|
|
3172
3175
|
}
|
|
3173
3176
|
|
|
3174
|
-
.
|
|
3177
|
+
._1mBRx {
|
|
3175
3178
|
border-top: 1px solid var(--divider-color);
|
|
3176
3179
|
background: white;
|
|
3177
3180
|
padding: 0 12px;
|
|
3178
3181
|
display: flex;
|
|
3179
3182
|
}
|
|
3180
|
-
.
|
|
3183
|
+
._1mBRx.a0_UD {
|
|
3181
3184
|
min-height: 24px;
|
|
3182
3185
|
}
|
|
3183
|
-
.
|
|
3186
|
+
._1mBRx._1zmWa {
|
|
3184
3187
|
min-height: 30px;
|
|
3185
3188
|
}
|
|
3186
|
-
.
|
|
3189
|
+
._1mBRx._1zmWa .uui-caption {
|
|
3187
3190
|
font-size: 14px;
|
|
3188
3191
|
}
|
|
3189
|
-
.
|
|
3192
|
+
._1mBRx._1kgVX {
|
|
3190
3193
|
min-height: 36px;
|
|
3191
3194
|
}
|
|
3192
|
-
.
|
|
3195
|
+
._1mBRx._28xPK {
|
|
3193
3196
|
min-height: 42px;
|
|
3194
3197
|
}
|
|
3195
|
-
.
|
|
3198
|
+
._1mBRx._28xPK .uui-caption {
|
|
3196
3199
|
font-size: 16px;
|
|
3197
3200
|
}
|
|
3198
|
-
.
|
|
3201
|
+
._1mBRx._3YfVg {
|
|
3199
3202
|
min-height: 48px;
|
|
3200
3203
|
}
|
|
3201
|
-
.
|
|
3204
|
+
._1mBRx._3YfVg .uui-caption {
|
|
3202
3205
|
font-size: 16px;
|
|
3203
3206
|
}
|
|
3204
|
-
.
|
|
3207
|
+
._1_CDZ {
|
|
3205
3208
|
margin: 9px 0;
|
|
3206
3209
|
}
|
|
3207
3210
|
|