@rescui/input 0.14.5-RUI-286-Fix-tooltip-stacking-f4145b01.1 → 0.15.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/lib/_virtual/index.css.js +12 -12
- package/lib/index.css +198 -376
- package/lib/index.d.ts +2 -0
- package/lib/input.d.ts +5 -0
- package/lib/input.js +17 -11
- package/lib/input.p.module.css.js +28 -28
- package/lib/parts/use-backward-compatible-id.d.ts +4 -0
- package/lib/parts/use-backward-compatible-id.js +14 -0
- package/lib/public-api.p.css +0 -215
- package/lib/public-api.pcss +0 -215
- package/package.json +10 -9
- package/lib/_virtual/warning.js +0 -106
package/lib/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
._icon_1vqskga_4{
|
|
2
2
|
--_rs-theme-dark:var(
|
|
3
3
|
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
4
4
|
var(--rs-theme-dark, 0)
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
9
9
|
}
|
|
10
10
|
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
11
|
-
.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
._icon_1vqskga_4{
|
|
12
|
+
--_rs-color-primary:color-mix(in srgb, var(--rs-color-primary-light-theme, #6B57FF) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dark-theme, #8473FF) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
13
|
+
--_rs-color-primary-dim:color-mix(in srgb, var(--rs-color-primary-dim-light-theme, #8979ff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dim-dark-theme, #6f61d2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
14
|
+
--_rs-color-primary-fog:color-mix(in srgb, var(--rs-color-primary-fog-light-theme, #e1ddff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-fog-dark-theme, #2e2b49) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
15
|
+
--_rs-color-primary-t-dim:color-mix(in srgb, var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8)) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8)) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
16
|
+
--_rs-color-primary-t-fog:color-mix(in srgb, var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2)) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3)) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
20
|
-
.
|
|
20
|
+
._icon_1vqskga_4{
|
|
21
21
|
--_rs-color-primary:rgb(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255);
|
|
22
22
|
--_rs-color-primary-dim:rgb(calc(var(--_rs-theme-light-coefficient, 1)*137 + var(--_rs-theme-dark-coefficient, 0)*111), calc(var(--_rs-theme-light-coefficient, 1)*121 + var(--_rs-theme-dark-coefficient, 0)*97), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*210));
|
|
23
23
|
--_rs-color-primary-fog:rgb(calc(var(--_rs-theme-light-coefficient, 1)*225 + var(--_rs-theme-dark-coefficient, 0)*46), calc(var(--_rs-theme-light-coefficient, 1)*221 + var(--_rs-theme-dark-coefficient, 0)*43), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*73));
|
|
@@ -25,30 +25,30 @@
|
|
|
25
25
|
--_rs-color-primary-t-fog:rgba(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255, calc(var(--_rs-theme-light-coefficient, 1)*0.2 + var(--_rs-theme-dark-coefficient, 0)*0.3));
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
.
|
|
28
|
+
._icon_1vqskga_4{
|
|
29
29
|
|
|
30
30
|
fill:var(--_rs-icons-themed-fill-or-initial, currentcolor);
|
|
31
31
|
|
|
32
32
|
width:var(--rs-icons-width, auto);
|
|
33
33
|
height:var(--rs-icons-height, var(--_rs-icons-height));
|
|
34
34
|
}
|
|
35
|
-
.
|
|
35
|
+
._sizeXS_1vqskga_14{
|
|
36
36
|
--_rs-icons-height:16px;
|
|
37
37
|
}
|
|
38
|
-
.
|
|
38
|
+
._sizeS_1vqskga_18{
|
|
39
39
|
--_rs-icons-height:20px;
|
|
40
40
|
}
|
|
41
|
-
.
|
|
41
|
+
._sizeM_1vqskga_22{
|
|
42
42
|
--_rs-icons-height:24px;
|
|
43
43
|
}
|
|
44
|
-
.
|
|
44
|
+
._sizeL_1vqskga_26{
|
|
45
45
|
--_rs-icons-height:28px;
|
|
46
46
|
}
|
|
47
|
-
.
|
|
47
|
+
._light_1vqskga_30{
|
|
48
48
|
--rs-theme-dark:0;
|
|
49
49
|
--_rs-icons-themed-fill-or-initial:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
50
50
|
}
|
|
51
|
-
.
|
|
51
|
+
._dark_1vqskga_34{
|
|
52
52
|
--rs-theme-dark:1;
|
|
53
53
|
--_rs-icons-themed-fill-or-initial:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
54
54
|
}
|
|
@@ -60,56 +60,55 @@
|
|
|
60
60
|
transform:rotate(360deg);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
|
-
.
|
|
63
|
+
._allVariants_1vqskga_48{
|
|
64
64
|
aspect-ratio:var(--rs-icon-ar-width, 1) / var(--rs-icon-ar-height, 1);
|
|
65
65
|
container:rs-icon / size;
|
|
66
66
|
}
|
|
67
|
-
.
|
|
68
|
-
.
|
|
69
|
-
.
|
|
67
|
+
._variant16_1vqskga_53,
|
|
68
|
+
._variant20_1vqskga_54,
|
|
69
|
+
._variant24_1vqskga_55{
|
|
70
70
|
display:none;
|
|
71
71
|
}
|
|
72
|
-
.
|
|
72
|
+
._variant28_1vqskga_58{
|
|
73
73
|
display:block;
|
|
74
74
|
}
|
|
75
75
|
@container rs-icon (max-height: 24px){
|
|
76
|
-
.
|
|
76
|
+
._variant24_1vqskga_55{
|
|
77
77
|
display:block;
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
._variant28_1vqskga_58{
|
|
80
80
|
display:none;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
@container rs-icon (max-height: 20px){
|
|
84
|
-
.
|
|
84
|
+
._variant20_1vqskga_54{
|
|
85
85
|
display:block;
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
._variant24_1vqskga_55{
|
|
88
88
|
display:none;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
@container rs-icon (max-height: 16px){
|
|
92
|
-
.
|
|
92
|
+
._variant16_1vqskga_53{
|
|
93
93
|
display:block;
|
|
94
94
|
}
|
|
95
|
-
.
|
|
95
|
+
._variant20_1vqskga_54{
|
|
96
96
|
display:none;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
.
|
|
99
|
+
._light_qyk6l9_7{
|
|
100
100
|
--rs-theme-dark:0;
|
|
101
101
|
}
|
|
102
|
-
.
|
|
102
|
+
._dark_qyk6l9_10{
|
|
103
103
|
--rs-theme-dark:1;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
._sizeS_qyk6l9_14{
|
|
106
106
|
--_rs-input-vertical-padding:6px;
|
|
107
107
|
--_rs-input-horizontal-padding:8px;
|
|
108
|
-
--_rs-input-parts-offset:4px;
|
|
109
108
|
--_rs-input-icon-offset:8px;
|
|
110
109
|
--_rs-input-icon-size:20px;
|
|
111
110
|
}
|
|
112
|
-
.
|
|
111
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
113
112
|
--_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
|
|
114
113
|
--_rs-typography-text-transform:initial;
|
|
115
114
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -143,10 +142,10 @@
|
|
|
143
142
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
144
143
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
145
144
|
}
|
|
146
|
-
.
|
|
147
|
-
.
|
|
148
|
-
.
|
|
149
|
-
.
|
|
145
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__label'],
|
|
146
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__inner'],
|
|
147
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__inner']::placeholder,
|
|
148
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__suffix']{
|
|
150
149
|
--_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
|
|
151
150
|
--_rs-typography-text-transform:initial;
|
|
152
151
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -180,7 +179,7 @@
|
|
|
180
179
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
181
180
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
182
181
|
}
|
|
183
|
-
.
|
|
182
|
+
._sizeS_qyk6l9_14 [data-rs-internal='input__bold-label']{
|
|
184
183
|
--_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
|
|
185
184
|
--_rs-typography-text-transform:initial;
|
|
186
185
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -211,82 +210,13 @@
|
|
|
211
210
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
212
211
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
213
212
|
}
|
|
214
|
-
.
|
|
215
|
-
--_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
|
|
216
|
-
--_rs-typography-text-transform:initial;
|
|
217
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
218
|
-
--_rs-typography-font-family:var(
|
|
219
|
-
--rs-font-family-ui,
|
|
220
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
221
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
222
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
223
|
-
);
|
|
224
|
-
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
225
|
-
--_rs-typography-font-weight:var(
|
|
226
|
-
--rs-font-weight-regular,
|
|
227
|
-
400
|
|
228
|
-
);
|
|
229
|
-
--_rs-typography-line-height:var(
|
|
230
|
-
--rs-text-3-line-height,
|
|
231
|
-
20px
|
|
232
|
-
);
|
|
233
|
-
--_rs-typography-base-color:var(
|
|
234
|
-
--_rs-typography-hardness-color,
|
|
235
|
-
var(
|
|
236
|
-
--rs-color-average,
|
|
237
|
-
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7)
|
|
238
|
-
)
|
|
239
|
-
);
|
|
240
|
-
--_rs-typography-text-auto-offset:8px;
|
|
241
|
-
--_rs-typography-ul-list-li-padding-left:28px;
|
|
242
|
-
--_rs-typography-ol-list-li-padding-left:21px;
|
|
243
|
-
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
244
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
245
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
246
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
247
|
-
}
|
|
248
|
-
._sizeS_1jpg6vw_15 [data-rs-internal='input__error-message']{
|
|
249
|
-
--_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
|
|
250
|
-
--_rs-typography-text-transform:initial;
|
|
251
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
252
|
-
--_rs-typography-font-family:var(
|
|
253
|
-
--rs-font-family-ui,
|
|
254
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
255
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
256
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
257
|
-
);
|
|
258
|
-
--_rs-typography-font-size:var(--rs-h5-font-size, 13px);
|
|
259
|
-
--_rs-typography-font-weight:var(
|
|
260
|
-
--rs-font-weight-semi-bold,
|
|
261
|
-
600
|
|
262
|
-
);
|
|
263
|
-
--_rs-typography-line-height:var(--rs-h5-line-height, 20px);
|
|
264
|
-
--_rs-typography-base-color:var(
|
|
265
|
-
--_rs-typography-heading-hardness-color,
|
|
266
|
-
var(
|
|
267
|
-
--rs-color-hard,
|
|
268
|
-
rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227))
|
|
269
|
-
)
|
|
270
|
-
);
|
|
271
|
-
--_rs-typography-text-auto-offset:0;
|
|
272
|
-
--_rs-typography-ul-list-li-padding-left:initial;
|
|
273
|
-
--_rs-typography-ol-list-li-padding-left:initial;
|
|
274
|
-
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
275
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
276
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
277
|
-
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
278
|
-
}
|
|
279
|
-
._sizeS_1jpg6vw_15 [data-rs-internal='input__error-icon']:not(html){
|
|
280
|
-
--_rs-icons-height:20px;
|
|
281
|
-
}
|
|
282
|
-
._sizeM_1jpg6vw_18{
|
|
213
|
+
._sizeM_qyk6l9_17{
|
|
283
214
|
--_rs-input-vertical-padding:8px;
|
|
284
215
|
--_rs-input-horizontal-padding:8px;
|
|
285
|
-
--_rs-input-parts-offset:8px;
|
|
286
216
|
--_rs-input-icon-offset:8px;
|
|
287
217
|
--_rs-input-icon-size:24px;
|
|
288
218
|
}
|
|
289
|
-
.
|
|
219
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
290
220
|
--_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
|
|
291
221
|
--_rs-typography-text-transform:initial;
|
|
292
222
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -324,14 +254,14 @@
|
|
|
324
254
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
325
255
|
}
|
|
326
256
|
@media screen and (max-width: 640px){
|
|
327
|
-
.
|
|
257
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
328
258
|
--_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
|
|
329
259
|
}
|
|
330
260
|
}
|
|
331
|
-
.
|
|
332
|
-
.
|
|
333
|
-
.
|
|
334
|
-
.
|
|
261
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__label'],
|
|
262
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner'],
|
|
263
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner']::placeholder,
|
|
264
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__suffix']{
|
|
335
265
|
--_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
|
|
336
266
|
--_rs-typography-text-transform:initial;
|
|
337
267
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -369,14 +299,14 @@
|
|
|
369
299
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
370
300
|
}
|
|
371
301
|
@media screen and (max-width: 640px){
|
|
372
|
-
.
|
|
373
|
-
.
|
|
374
|
-
.
|
|
375
|
-
.
|
|
302
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__label'],
|
|
303
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner'],
|
|
304
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__inner']::placeholder,
|
|
305
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__suffix']{
|
|
376
306
|
--_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
|
|
377
307
|
}
|
|
378
308
|
}
|
|
379
|
-
.
|
|
309
|
+
._sizeM_qyk6l9_17 [data-rs-internal='input__bold-label']{
|
|
380
310
|
--_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
|
|
381
311
|
--_rs-typography-text-transform:initial;
|
|
382
312
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -407,82 +337,13 @@
|
|
|
407
337
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
408
338
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
409
339
|
}
|
|
410
|
-
.
|
|
411
|
-
--_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
|
|
412
|
-
--_rs-typography-text-transform:initial;
|
|
413
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
414
|
-
--_rs-typography-font-family:var(
|
|
415
|
-
--rs-font-family-ui,
|
|
416
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
417
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
418
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
419
|
-
);
|
|
420
|
-
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
421
|
-
--_rs-typography-font-weight:var(
|
|
422
|
-
--rs-font-weight-regular,
|
|
423
|
-
400
|
|
424
|
-
);
|
|
425
|
-
--_rs-typography-line-height:var(
|
|
426
|
-
--rs-text-3-line-height,
|
|
427
|
-
20px
|
|
428
|
-
);
|
|
429
|
-
--_rs-typography-base-color:var(
|
|
430
|
-
--_rs-typography-hardness-color,
|
|
431
|
-
var(
|
|
432
|
-
--rs-color-average,
|
|
433
|
-
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7)
|
|
434
|
-
)
|
|
435
|
-
);
|
|
436
|
-
--_rs-typography-text-auto-offset:8px;
|
|
437
|
-
--_rs-typography-ul-list-li-padding-left:28px;
|
|
438
|
-
--_rs-typography-ol-list-li-padding-left:21px;
|
|
439
|
-
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
440
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
441
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
442
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
443
|
-
}
|
|
444
|
-
._sizeM_1jpg6vw_18 [data-rs-internal='input__error-message']{
|
|
445
|
-
--_rs-typography-letter-spacing:var(--rs-h5-letter-spacing, normal);
|
|
446
|
-
--_rs-typography-text-transform:initial;
|
|
447
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
448
|
-
--_rs-typography-font-family:var(
|
|
449
|
-
--rs-font-family-ui,
|
|
450
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
451
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
452
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
453
|
-
);
|
|
454
|
-
--_rs-typography-font-size:var(--rs-h5-font-size, 13px);
|
|
455
|
-
--_rs-typography-font-weight:var(
|
|
456
|
-
--rs-font-weight-semi-bold,
|
|
457
|
-
600
|
|
458
|
-
);
|
|
459
|
-
--_rs-typography-line-height:var(--rs-h5-line-height, 20px);
|
|
460
|
-
--_rs-typography-base-color:var(
|
|
461
|
-
--_rs-typography-heading-hardness-color,
|
|
462
|
-
var(
|
|
463
|
-
--rs-color-hard,
|
|
464
|
-
rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227))
|
|
465
|
-
)
|
|
466
|
-
);
|
|
467
|
-
--_rs-typography-text-auto-offset:0;
|
|
468
|
-
--_rs-typography-ul-list-li-padding-left:initial;
|
|
469
|
-
--_rs-typography-ol-list-li-padding-left:initial;
|
|
470
|
-
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
471
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
472
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
473
|
-
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
474
|
-
}
|
|
475
|
-
._sizeM_1jpg6vw_18 [data-rs-internal='input__error-icon']:not(html){
|
|
476
|
-
--_rs-icons-height:20px;
|
|
477
|
-
}
|
|
478
|
-
._sizeL_1jpg6vw_21{
|
|
340
|
+
._sizeL_qyk6l9_20{
|
|
479
341
|
--_rs-input-vertical-padding:12px;
|
|
480
342
|
--_rs-input-horizontal-padding:16px;
|
|
481
|
-
--_rs-input-parts-offset:8px;
|
|
482
343
|
--_rs-input-icon-offset:16px;
|
|
483
344
|
--_rs-input-icon-size:28px;
|
|
484
345
|
}
|
|
485
|
-
.
|
|
346
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
486
347
|
--_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
|
|
487
348
|
--_rs-typography-text-transform:initial;
|
|
488
349
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -520,14 +381,14 @@
|
|
|
520
381
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
521
382
|
}
|
|
522
383
|
@media screen and (max-width: 640px){
|
|
523
|
-
.
|
|
384
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
524
385
|
--_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
|
|
525
386
|
}
|
|
526
387
|
}
|
|
527
|
-
.
|
|
528
|
-
.
|
|
529
|
-
.
|
|
530
|
-
.
|
|
388
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__label'],
|
|
389
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner'],
|
|
390
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner']::placeholder,
|
|
391
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__suffix']{
|
|
531
392
|
--_rs-typography-letter-spacing:var(--rs-text-1-letter-spacing, normal);
|
|
532
393
|
--_rs-typography-text-transform:initial;
|
|
533
394
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -565,14 +426,14 @@
|
|
|
565
426
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
566
427
|
}
|
|
567
428
|
@media screen and (max-width: 640px){
|
|
568
|
-
.
|
|
569
|
-
.
|
|
570
|
-
.
|
|
571
|
-
.
|
|
429
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__label'],
|
|
430
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner'],
|
|
431
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__inner']::placeholder,
|
|
432
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__suffix']{
|
|
572
433
|
--_rs-typography-text-1-sm-list-li-margin-top-from-text:16px;
|
|
573
434
|
}
|
|
574
435
|
}
|
|
575
|
-
.
|
|
436
|
+
._sizeL_qyk6l9_20 [data-rs-internal='input__bold-label']{
|
|
576
437
|
--_rs-typography-letter-spacing:var(--rs-h3-letter-spacing, normal);
|
|
577
438
|
--_rs-typography-text-transform:initial;
|
|
578
439
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -603,83 +464,7 @@
|
|
|
603
464
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
604
465
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
605
466
|
}
|
|
606
|
-
.
|
|
607
|
-
--_rs-typography-letter-spacing:var(--rs-text-2-letter-spacing, 0.0015em);
|
|
608
|
-
--_rs-typography-text-transform:initial;
|
|
609
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
610
|
-
--_rs-typography-font-family:var(
|
|
611
|
-
--rs-font-family-ui,
|
|
612
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
613
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
614
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
615
|
-
);
|
|
616
|
-
--_rs-typography-font-size:var(--rs-text-2-font-size, 16px);
|
|
617
|
-
--_rs-typography-font-weight:var(
|
|
618
|
-
--rs-font-weight-regular,
|
|
619
|
-
400
|
|
620
|
-
);
|
|
621
|
-
--_rs-typography-line-height:var(
|
|
622
|
-
--rs-text-2-line-height,
|
|
623
|
-
24px
|
|
624
|
-
);
|
|
625
|
-
--_rs-typography-base-color:var(
|
|
626
|
-
--_rs-typography-hardness-color,
|
|
627
|
-
var(
|
|
628
|
-
--rs-color-average,
|
|
629
|
-
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7)
|
|
630
|
-
)
|
|
631
|
-
);
|
|
632
|
-
--_rs-typography-text-auto-offset:16px;
|
|
633
|
-
--_rs-typography-ul-list-li-padding-left:22px;
|
|
634
|
-
--_rs-typography-ol-list-li-padding-left:26px;
|
|
635
|
-
--_rs-typography-list-li-margin-top-from-text:var(
|
|
636
|
-
--_rs-typography-text-2-sm-list-li-margin-top-from-text,
|
|
637
|
-
16px
|
|
638
|
-
);
|
|
639
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
640
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
641
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
642
|
-
}
|
|
643
|
-
@media screen and (max-width: 640px){
|
|
644
|
-
._sizeL_1jpg6vw_21 [data-rs-internal='input__note']{
|
|
645
|
-
--_rs-typography-text-2-sm-list-li-margin-top-from-text:12px;
|
|
646
|
-
}
|
|
647
|
-
}
|
|
648
|
-
._sizeL_1jpg6vw_21 [data-rs-internal='input__error-message']{
|
|
649
|
-
--_rs-typography-letter-spacing:var(--rs-h4-letter-spacing, normal);
|
|
650
|
-
--_rs-typography-text-transform:initial;
|
|
651
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
652
|
-
--_rs-typography-font-family:var(
|
|
653
|
-
--rs-font-family-ui,
|
|
654
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
655
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
656
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
657
|
-
);
|
|
658
|
-
--_rs-typography-font-size:var(--rs-h4-font-size, 16px);
|
|
659
|
-
--_rs-typography-font-weight:var(
|
|
660
|
-
--rs-font-weight-semi-bold,
|
|
661
|
-
600
|
|
662
|
-
);
|
|
663
|
-
--_rs-typography-line-height:var(--rs-h4-line-height, 24px);
|
|
664
|
-
--_rs-typography-base-color:var(
|
|
665
|
-
--_rs-typography-heading-hardness-color,
|
|
666
|
-
var(
|
|
667
|
-
--rs-color-hard,
|
|
668
|
-
rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227))
|
|
669
|
-
)
|
|
670
|
-
);
|
|
671
|
-
--_rs-typography-text-auto-offset:0;
|
|
672
|
-
--_rs-typography-ul-list-li-padding-left:initial;
|
|
673
|
-
--_rs-typography-ol-list-li-padding-left:initial;
|
|
674
|
-
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
675
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
676
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
677
|
-
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
678
|
-
}
|
|
679
|
-
._sizeL_1jpg6vw_21 [data-rs-internal='input__error-icon']:not(html){
|
|
680
|
-
--_rs-icons-height:24px;
|
|
681
|
-
}
|
|
682
|
-
._classic_1jpg6vw_25{
|
|
467
|
+
._classic_qyk6l9_24{
|
|
683
468
|
--_rs-input-focused-enabled-wrapper-border-width:2px;
|
|
684
469
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
685
470
|
calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*227)
|
|
@@ -704,7 +489,7 @@
|
|
|
704
489
|
0.5
|
|
705
490
|
);
|
|
706
491
|
}
|
|
707
|
-
.
|
|
492
|
+
._rock_qyk6l9_27{
|
|
708
493
|
--_rs-input-focused-enabled-wrapper-border-width:0px;
|
|
709
494
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
710
495
|
calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227)
|
|
@@ -728,7 +513,7 @@
|
|
|
728
513
|
0.7
|
|
729
514
|
);
|
|
730
515
|
}
|
|
731
|
-
.
|
|
516
|
+
._container_qyk6l9_31{
|
|
732
517
|
--_rs-theme-dark:var(
|
|
733
518
|
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
734
519
|
var(--rs-theme-dark, 0)
|
|
@@ -738,16 +523,16 @@
|
|
|
738
523
|
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
739
524
|
}
|
|
740
525
|
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
741
|
-
.
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
526
|
+
._container_qyk6l9_31{
|
|
527
|
+
--_rs-color-primary:color-mix(in srgb, var(--rs-color-primary-light-theme, #6B57FF) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dark-theme, #8473FF) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
528
|
+
--_rs-color-primary-dim:color-mix(in srgb, var(--rs-color-primary-dim-light-theme, #8979ff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-dim-dark-theme, #6f61d2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
529
|
+
--_rs-color-primary-fog:color-mix(in srgb, var(--rs-color-primary-fog-light-theme, #e1ddff) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-fog-dark-theme, #2e2b49) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
530
|
+
--_rs-color-primary-t-dim:color-mix(in srgb, var(--rs-color-primary-t-dim-light-theme, rgba(107, 87, 255, 0.8)) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-t-dim-dark-theme, rgba(132, 115, 255,0.8)) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
531
|
+
--_rs-color-primary-t-fog:color-mix(in srgb, var(--rs-color-primary-t-fog-light-theme, rgba(107, 87, 255,0.2)) calc(100%*var(--_rs-theme-light-coefficient, 1)), var(--rs-color-primary-t-fog-dark-theme, rgba(132, 115, 255,0.3)) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
747
532
|
}
|
|
748
533
|
}
|
|
749
534
|
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
750
|
-
.
|
|
535
|
+
._container_qyk6l9_31{
|
|
751
536
|
--_rs-color-primary:rgb(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255);
|
|
752
537
|
--_rs-color-primary-dim:rgb(calc(var(--_rs-theme-light-coefficient, 1)*137 + var(--_rs-theme-dark-coefficient, 0)*111), calc(var(--_rs-theme-light-coefficient, 1)*121 + var(--_rs-theme-dark-coefficient, 0)*97), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*210));
|
|
753
538
|
--_rs-color-primary-fog:rgb(calc(var(--_rs-theme-light-coefficient, 1)*225 + var(--_rs-theme-dark-coefficient, 0)*46), calc(var(--_rs-theme-light-coefficient, 1)*221 + var(--_rs-theme-dark-coefficient, 0)*43), calc(var(--_rs-theme-light-coefficient, 1)*255 + var(--_rs-theme-dark-coefficient, 0)*73));
|
|
@@ -755,11 +540,23 @@
|
|
|
755
540
|
--_rs-color-primary-t-fog:rgba(calc(var(--_rs-theme-light-coefficient, 1)*107 + var(--_rs-theme-dark-coefficient, 0)*132), calc(var(--_rs-theme-light-coefficient, 1)*87 + var(--_rs-theme-dark-coefficient, 0)*115), 255, calc(var(--_rs-theme-light-coefficient, 1)*0.2 + var(--_rs-theme-dark-coefficient, 0)*0.3));
|
|
756
541
|
}
|
|
757
542
|
}
|
|
758
|
-
|
|
543
|
+
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
544
|
+
._container_qyk6l9_31{
|
|
545
|
+
--_rs-color-danger:color-mix(in srgb, #CC1400 calc(100%*var(--_rs-theme-light-coefficient, 1)), #FF6553 calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
546
|
+
--_rs-color-danger-bg:color-mix(in srgb, rgba(204,20,0, 0.2) calc(100%*var(--_rs-theme-light-coefficient, 1)), rgba(255,101,83, 0.2) calc(100%*var(--_rs-theme-dark-coefficient, 0)));
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
550
|
+
._container_qyk6l9_31{
|
|
551
|
+
--_rs-color-danger:rgb(calc(var(--_rs-theme-light-coefficient, 1)*204 + var(--_rs-theme-dark-coefficient, 0)*255), calc(var(--_rs-theme-light-coefficient, 1)*20 + var(--_rs-theme-dark-coefficient, 0)*101), calc(var(--_rs-theme-light-coefficient, 1)*0 + var(--_rs-theme-dark-coefficient, 0)*83));
|
|
552
|
+
--_rs-color-danger-bg:rgba(calc(var(--_rs-theme-light-coefficient, 1)*204 + var(--_rs-theme-dark-coefficient, 0)*255), calc(var(--_rs-theme-light-coefficient, 1)*20 + var(--_rs-theme-dark-coefficient, 0)*101), calc(var(--_rs-theme-light-coefficient, 1)*0 + var(--_rs-theme-dark-coefficient, 0)*83), 0.2);
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
._container_qyk6l9_31 {
|
|
759
556
|
|
|
760
557
|
display:block;
|
|
761
558
|
}
|
|
762
|
-
.
|
|
559
|
+
._wrapper_qyk6l9_39{
|
|
763
560
|
--_rs-input-border-width:1px;
|
|
764
561
|
--_rs-input-border-color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.2);
|
|
765
562
|
--_rs-input-background-color:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*227));
|
|
@@ -774,36 +571,36 @@
|
|
|
774
571
|
|
|
775
572
|
box-shadow:inset 0 0 0 var(--_rs-input-border-width) var(--_rs-input-border-color);
|
|
776
573
|
}
|
|
777
|
-
.
|
|
574
|
+
._error_qyk6l9_55 ._wrapper_qyk6l9_39{
|
|
778
575
|
--_rs-input-border-width:2px;
|
|
779
|
-
--_rs-input-border-color
|
|
576
|
+
--_rs-input-border-color:var(--_rs-color-danger);
|
|
780
577
|
--_rs-input-background-color:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*227));
|
|
781
578
|
}
|
|
782
|
-
.
|
|
579
|
+
._disabled_qyk6l9_61 ._wrapper_qyk6l9_39{
|
|
783
580
|
--_rs-input-background-color:rgb(calc(232 - var(--_rs-theme-dark-coefficient, 0)*184), calc(232 - var(--_rs-theme-dark-coefficient, 0)*184), calc(232 - var(--_rs-theme-dark-coefficient, 0)*181));
|
|
784
581
|
|
|
785
582
|
cursor:auto;
|
|
786
583
|
}
|
|
787
|
-
.
|
|
584
|
+
._enabled_qyk6l9_67._focused_qyk6l9_67 ._wrapper_qyk6l9_39{
|
|
788
585
|
--_rs-input-background-color:var(
|
|
789
586
|
--_rs-input-focused-enabled-wrapper-background
|
|
790
587
|
);
|
|
791
588
|
}
|
|
792
|
-
.
|
|
589
|
+
._enabled_qyk6l9_67:not(._error_qyk6l9_55)._filled_qyk6l9_73 ._wrapper_qyk6l9_39{
|
|
793
590
|
--_rs-input-border-color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.3);
|
|
794
591
|
}
|
|
795
592
|
@media (hover: hover){
|
|
796
|
-
.
|
|
593
|
+
._enabled_qyk6l9_67:not(._error_qyk6l9_55):hover ._wrapper_qyk6l9_39{
|
|
797
594
|
--_rs-input-border-color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5);
|
|
798
595
|
}
|
|
799
596
|
}
|
|
800
|
-
.
|
|
597
|
+
._enabled_qyk6l9_67:not(._error_qyk6l9_55)._focused_qyk6l9_67 ._wrapper_qyk6l9_39{
|
|
801
598
|
--_rs-input-border-width:var(
|
|
802
599
|
--_rs-input-focused-enabled-wrapper-border-width
|
|
803
600
|
);
|
|
804
601
|
--_rs-input-border-color:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
805
602
|
}
|
|
806
|
-
.
|
|
603
|
+
._field_qyk6l9_91{
|
|
807
604
|
display:flex;
|
|
808
605
|
|
|
809
606
|
flex:1 1 auto;
|
|
@@ -812,7 +609,7 @@
|
|
|
812
609
|
|
|
813
610
|
padding:var(--_rs-input-vertical-padding) var(--_rs-input-horizontal-padding);
|
|
814
611
|
}
|
|
815
|
-
.
|
|
612
|
+
._inner_qyk6l9_101{
|
|
816
613
|
letter-spacing:var(
|
|
817
614
|
--rs-text-base-letter-spacing,
|
|
818
615
|
var(--_rs-typography-letter-spacing)
|
|
@@ -825,26 +622,26 @@
|
|
|
825
622
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
826
623
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
827
624
|
}
|
|
828
|
-
.
|
|
625
|
+
._inner_qyk6l9_101::-ms-clear{
|
|
829
626
|
display:none;
|
|
830
627
|
|
|
831
628
|
width:0;
|
|
832
629
|
height:0;
|
|
833
630
|
}
|
|
834
|
-
.
|
|
631
|
+
._dark_qyk6l9_10 ._inner_qyk6l9_101{
|
|
835
632
|
color-scheme:dark;
|
|
836
633
|
}
|
|
837
634
|
@container style(--_rs-theme-dark-coefficient: 1){
|
|
838
|
-
.
|
|
635
|
+
._inner_qyk6l9_101{
|
|
839
636
|
color-scheme:dark
|
|
840
637
|
}
|
|
841
638
|
}
|
|
842
639
|
@container style(--_rs-theme-dark-coefficient: 0){
|
|
843
|
-
.
|
|
640
|
+
._inner_qyk6l9_101{
|
|
844
641
|
color-scheme:light
|
|
845
642
|
}
|
|
846
643
|
}
|
|
847
|
-
.
|
|
644
|
+
._inner_qyk6l9_101 {
|
|
848
645
|
|
|
849
646
|
display:block;
|
|
850
647
|
|
|
@@ -866,17 +663,17 @@
|
|
|
866
663
|
-moz-appearance:none;
|
|
867
664
|
appearance:none;
|
|
868
665
|
}
|
|
869
|
-
.
|
|
666
|
+
._inner_qyk6l9_101:focus{
|
|
870
667
|
outline:none;
|
|
871
668
|
}
|
|
872
|
-
.
|
|
873
|
-
.
|
|
669
|
+
._disabled_qyk6l9_61 ._inner_qyk6l9_101,
|
|
670
|
+
._inner_qyk6l9_101:disabled{
|
|
874
671
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7);
|
|
875
672
|
}
|
|
876
|
-
.
|
|
673
|
+
._focused_qyk6l9_67 ._inner_qyk6l9_101{
|
|
877
674
|
color:var(--_rs-input-focused-inner-color);
|
|
878
675
|
}
|
|
879
|
-
.
|
|
676
|
+
._inner_qyk6l9_101::-moz-placeholder{
|
|
880
677
|
letter-spacing:var(
|
|
881
678
|
--rs-text-base-letter-spacing,
|
|
882
679
|
var(--_rs-typography-letter-spacing)
|
|
@@ -892,10 +689,10 @@
|
|
|
892
689
|
|
|
893
690
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5);
|
|
894
691
|
}
|
|
895
|
-
.
|
|
692
|
+
._focused_qyk6l9_67 ._inner_qyk6l9_101::-moz-placeholder{
|
|
896
693
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
897
694
|
}
|
|
898
|
-
.
|
|
695
|
+
._inner_qyk6l9_101::placeholder{
|
|
899
696
|
letter-spacing:var(
|
|
900
697
|
--rs-text-base-letter-spacing,
|
|
901
698
|
var(--_rs-typography-letter-spacing)
|
|
@@ -911,38 +708,38 @@
|
|
|
911
708
|
|
|
912
709
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5);
|
|
913
710
|
}
|
|
914
|
-
.
|
|
711
|
+
._focused_qyk6l9_67 ._inner_qyk6l9_101::placeholder{
|
|
915
712
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
916
713
|
}
|
|
917
|
-
.
|
|
714
|
+
._inner_qyk6l9_101:-moz-ui-invalid{
|
|
918
715
|
box-shadow:none;
|
|
919
716
|
}
|
|
920
|
-
.
|
|
717
|
+
._inner_qyk6l9_101:-moz-ui-invalid:-moz-focusring{
|
|
921
718
|
box-shadow:none;
|
|
922
719
|
}
|
|
923
|
-
.
|
|
924
|
-
.
|
|
925
|
-
.
|
|
926
|
-
.
|
|
720
|
+
._inner_qyk6l9_101:-webkit-autofill,
|
|
721
|
+
._inner_qyk6l9_101:-webkit-autofill:hover,
|
|
722
|
+
._inner_qyk6l9_101:-webkit-autofill:active,
|
|
723
|
+
._inner_qyk6l9_101:-webkit-autofill:focus{
|
|
927
724
|
-webkit-box-shadow:0 0 0 1000px rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*230), calc(255 - var(--_rs-theme-dark-coefficient, 0)*227)) inset;
|
|
928
725
|
|
|
929
726
|
transition-delay:9999s;
|
|
930
727
|
-webkit-text-fill-color:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
931
728
|
}
|
|
932
|
-
.
|
|
729
|
+
._focused_qyk6l9_67 ._inner_qyk6l9_101:-webkit-autofill, ._focused_qyk6l9_67 ._inner_qyk6l9_101:-webkit-autofill:hover, ._focused_qyk6l9_67 ._inner_qyk6l9_101:-webkit-autofill:active, ._focused_qyk6l9_67 ._inner_qyk6l9_101:-webkit-autofill:focus{
|
|
933
730
|
-webkit-box-shadow:0 0 0 1000px var(--_rs-input-focused-autofill-box-shadow) inset;
|
|
934
731
|
-webkit-text-fill-color:var(--_rs-input-focused-autofill-color);
|
|
935
732
|
}
|
|
936
|
-
.
|
|
733
|
+
._offSystemMicroelements_qyk6l9_202 ._inner_qyk6l9_101{
|
|
937
734
|
-moz-appearance:textfield;
|
|
938
735
|
}
|
|
939
|
-
.
|
|
940
|
-
.
|
|
736
|
+
._offSystemMicroelements_qyk6l9_202 ._inner_qyk6l9_101::-webkit-outer-spin-button,
|
|
737
|
+
._offSystemMicroelements_qyk6l9_202 ._inner_qyk6l9_101::-webkit-inner-spin-button{
|
|
941
738
|
margin:0;
|
|
942
739
|
-webkit-appearance:none;
|
|
943
740
|
appearance:none;
|
|
944
741
|
}
|
|
945
|
-
.
|
|
742
|
+
._iconWrapper_qyk6l9_212{
|
|
946
743
|
display:inline-flex;
|
|
947
744
|
flex:0 0 auto;
|
|
948
745
|
|
|
@@ -953,15 +750,15 @@
|
|
|
953
750
|
|
|
954
751
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7);
|
|
955
752
|
}
|
|
956
|
-
.
|
|
753
|
+
._iconWrapper_qyk6l9_212._action_qyk6l9_223{
|
|
957
754
|
position:relative;
|
|
958
755
|
|
|
959
756
|
cursor:pointer;
|
|
960
757
|
}
|
|
961
|
-
.
|
|
758
|
+
._iconWrapper_qyk6l9_212._action_qyk6l9_223:focus{
|
|
962
759
|
outline:none;
|
|
963
760
|
}
|
|
964
|
-
.
|
|
761
|
+
._iconWrapper_qyk6l9_212._action_qyk6l9_223::before{
|
|
965
762
|
position:absolute;
|
|
966
763
|
top:-4px;
|
|
967
764
|
right:-4px;
|
|
@@ -976,46 +773,46 @@
|
|
|
976
773
|
content:'';
|
|
977
774
|
pointer-events:none;
|
|
978
775
|
}
|
|
979
|
-
.
|
|
776
|
+
._iconWrapper_qyk6l9_212._action_qyk6l9_223:focus[data-focus-method='key']::before{
|
|
980
777
|
display:block;
|
|
981
778
|
}
|
|
982
|
-
.
|
|
779
|
+
._disabled_qyk6l9_61 ._iconWrapper_qyk6l9_212{
|
|
983
780
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5);
|
|
984
781
|
}
|
|
985
|
-
.
|
|
782
|
+
._disabled_qyk6l9_61 ._iconWrapper_qyk6l9_212._action_qyk6l9_223{
|
|
986
783
|
pointer-events:none;
|
|
987
784
|
}
|
|
988
|
-
.
|
|
785
|
+
._iconWrapper_qyk6l9_212._right_qyk6l9_261{
|
|
989
786
|
margin-left:var(--_rs-input-icon-offset);
|
|
990
787
|
}
|
|
991
|
-
.
|
|
788
|
+
._iconWrapper_qyk6l9_212._left_qyk6l9_265{
|
|
992
789
|
margin-right:var(--_rs-input-icon-offset);
|
|
993
790
|
}
|
|
994
|
-
.
|
|
791
|
+
._focused_qyk6l9_67 ._iconWrapper_qyk6l9_212{
|
|
995
792
|
color:var(--_rs-input-focused-icon-color);
|
|
996
793
|
}
|
|
997
794
|
@media (hover: hover){
|
|
998
|
-
.
|
|
795
|
+
._enabled_qyk6l9_67 ._iconWrapper_qyk6l9_212._action_qyk6l9_223:hover{
|
|
999
796
|
color:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
1000
797
|
}
|
|
1001
798
|
|
|
1002
|
-
.
|
|
799
|
+
._enabled_qyk6l9_67._focused_qyk6l9_67 ._iconWrapper_qyk6l9_212._action_qyk6l9_223:hover{
|
|
1003
800
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1004
801
|
}
|
|
1005
802
|
}
|
|
1006
|
-
.
|
|
803
|
+
._enabled_qyk6l9_67 ._iconWrapper_qyk6l9_212._action_qyk6l9_223:focus[data-focus-method='key']{
|
|
1007
804
|
color:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
1008
805
|
}
|
|
1009
|
-
.
|
|
806
|
+
._enabled_qyk6l9_67._focused_qyk6l9_67 ._iconWrapper_qyk6l9_212._action_qyk6l9_223:focus[data-focus-method='key']{
|
|
1010
807
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1011
808
|
}
|
|
1012
|
-
.
|
|
809
|
+
._iconWrapper_qyk6l9_212 ._icon_qyk6l9_212{
|
|
1013
810
|
fill:currentColor;
|
|
1014
811
|
|
|
1015
812
|
width:auto;
|
|
1016
813
|
height:var(--_rs-input-icon-size);
|
|
1017
814
|
}
|
|
1018
|
-
.
|
|
815
|
+
._divider_qyk6l9_299{
|
|
1019
816
|
--_rs-input-divider-color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.2);
|
|
1020
817
|
|
|
1021
818
|
display:block;
|
|
@@ -1026,10 +823,10 @@
|
|
|
1026
823
|
|
|
1027
824
|
background:var(--_rs-input-divider-color);
|
|
1028
825
|
}
|
|
1029
|
-
.
|
|
826
|
+
._focused_qyk6l9_67 ._divider_qyk6l9_299{
|
|
1030
827
|
--_rs-input-divider-color:var(--_rs-input-focused-divider-background);
|
|
1031
828
|
}
|
|
1032
|
-
.
|
|
829
|
+
._suffix_qyk6l9_315{
|
|
1033
830
|
letter-spacing:var(
|
|
1034
831
|
--rs-text-base-letter-spacing,
|
|
1035
832
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1048,37 +845,10 @@
|
|
|
1048
845
|
|
|
1049
846
|
color:rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5);
|
|
1050
847
|
}
|
|
1051
|
-
.
|
|
848
|
+
._focused_qyk6l9_67 ._suffix_qyk6l9_315{
|
|
1052
849
|
color:var(--_rs-input-focused-suffix-color);
|
|
1053
850
|
}
|
|
1054
|
-
.
|
|
1055
|
-
letter-spacing:var(
|
|
1056
|
-
--rs-text-base-letter-spacing,
|
|
1057
|
-
var(--_rs-typography-letter-spacing)
|
|
1058
|
-
);
|
|
1059
|
-
text-transform:var(--_rs-typography-text-transform);
|
|
1060
|
-
font-family:var(--_rs-typography-font-family);
|
|
1061
|
-
font-size:var(--_rs-typography-font-size);
|
|
1062
|
-
font-weight:var(--_rs-typography-font-weight);
|
|
1063
|
-
line-height:var(--_rs-typography-line-height);
|
|
1064
|
-
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1065
|
-
font-feature-settings:'kern', 'liga', 'calt';
|
|
1066
|
-
|
|
1067
|
-
display:flex;
|
|
1068
|
-
flex-wrap:nowrap;
|
|
1069
|
-
|
|
1070
|
-
margin-top:var(--_rs-input-parts-offset);
|
|
1071
|
-
|
|
1072
|
-
color:rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227));
|
|
1073
|
-
-moz-column-gap:8px;
|
|
1074
|
-
column-gap:8px;
|
|
1075
|
-
}
|
|
1076
|
-
._errorIcon_1jpg6vw_341{
|
|
1077
|
-
flex:0 0 auto;
|
|
1078
|
-
|
|
1079
|
-
color:#F45C4A;
|
|
1080
|
-
}
|
|
1081
|
-
._note_1jpg6vw_347{
|
|
851
|
+
._label_qyk6l9_329{
|
|
1082
852
|
letter-spacing:var(
|
|
1083
853
|
--rs-text-base-letter-spacing,
|
|
1084
854
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1091,19 +861,70 @@
|
|
|
1091
861
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1092
862
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1093
863
|
color:var(
|
|
1094
|
-
--rs-color-
|
|
1095
|
-
|
|
864
|
+
--rs-color-hard,
|
|
865
|
+
rgb(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227))
|
|
1096
866
|
);
|
|
1097
867
|
|
|
1098
|
-
margin-
|
|
868
|
+
margin-bottom:4px;
|
|
1099
869
|
}
|
|
1100
|
-
.
|
|
870
|
+
._disabled_qyk6l9_61 ._label_qyk6l9_329{
|
|
1101
871
|
color:var(
|
|
1102
872
|
--rs-color-pale,
|
|
1103
873
|
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5)
|
|
1104
874
|
);
|
|
1105
875
|
}
|
|
1106
|
-
.
|
|
876
|
+
._footer_qyk6l9_340{
|
|
877
|
+
display:flex;
|
|
878
|
+
flex-direction:column;
|
|
879
|
+
|
|
880
|
+
margin-top:4px;
|
|
881
|
+
}
|
|
882
|
+
._errorMessage_qyk6l9_347{
|
|
883
|
+
order:99;
|
|
884
|
+
}
|
|
885
|
+
._error_qyk6l9_55 ._errorMessage_qyk6l9_347{
|
|
886
|
+
order:0;
|
|
887
|
+
}
|
|
888
|
+
._note_qyk6l9_356{
|
|
889
|
+
--_rs-typography-letter-spacing:var(--rs-text-3-letter-spacing, 0.0045em);
|
|
890
|
+
--_rs-typography-text-transform:initial;
|
|
891
|
+
--_rs-typography-font-variant-numeric:initial;
|
|
892
|
+
--_rs-typography-font-family:var(
|
|
893
|
+
--rs-font-family-ui,
|
|
894
|
+
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
895
|
+
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
896
|
+
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
897
|
+
);
|
|
898
|
+
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
899
|
+
--_rs-typography-font-weight:var(
|
|
900
|
+
--rs-font-weight-regular,
|
|
901
|
+
400
|
|
902
|
+
);
|
|
903
|
+
--_rs-typography-line-height:var(
|
|
904
|
+
--rs-text-3-line-height,
|
|
905
|
+
20px
|
|
906
|
+
);
|
|
907
|
+
--_rs-typography-base-color:var(
|
|
908
|
+
--_rs-typography-hardness-color,
|
|
909
|
+
var(
|
|
910
|
+
--rs-color-average,
|
|
911
|
+
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7)
|
|
912
|
+
)
|
|
913
|
+
);
|
|
914
|
+
--_rs-typography-text-auto-offset:8px;
|
|
915
|
+
--_rs-typography-ul-list-li-padding-left:28px;
|
|
916
|
+
--_rs-typography-ol-list-li-padding-left:21px;
|
|
917
|
+
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
918
|
+
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
919
|
+
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
920
|
+
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
921
|
+
--_rs-theme-dark:var(
|
|
922
|
+
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
923
|
+
var(--rs-theme-dark, 0)
|
|
924
|
+
);
|
|
925
|
+
--_rs-theme-flip:var(--rs-theme-flip, 0);
|
|
926
|
+
--_rs-theme-dark-coefficient:calc(var(--_rs-theme-dark)*(1 - var(--_rs-theme-flip)) + var(--_rs-theme-flip)*(1 - var(--_rs-theme-dark)));
|
|
927
|
+
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
1107
928
|
letter-spacing:var(
|
|
1108
929
|
--rs-text-base-letter-spacing,
|
|
1109
930
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1115,15 +936,16 @@
|
|
|
1115
936
|
line-height:var(--_rs-typography-line-height);
|
|
1116
937
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1117
938
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1118
|
-
color:var(
|
|
1119
|
-
--
|
|
1120
|
-
|
|
939
|
+
color:var(--_rs-typography-base-color);
|
|
940
|
+
--_rs-typography-hardness-color:var(
|
|
941
|
+
--rs-color-average,
|
|
942
|
+
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.7)
|
|
1121
943
|
);
|
|
1122
944
|
|
|
1123
|
-
|
|
945
|
+
order:1;
|
|
1124
946
|
}
|
|
1125
|
-
.
|
|
1126
|
-
color:var(
|
|
947
|
+
._disabled_qyk6l9_61 ._note_qyk6l9_356{
|
|
948
|
+
--_rs-typography-hardness-color:var(
|
|
1127
949
|
--rs-color-pale,
|
|
1128
950
|
rgba(calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(25 + var(--_rs-theme-dark-coefficient, 0)*230), calc(28 + var(--_rs-theme-dark-coefficient, 0)*227), 0.5)
|
|
1129
951
|
);
|