@rescui/input 0.10.3 → 0.11.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/close.js +37 -0
- package/lib/_virtual/index.css.js +10 -0
- package/lib/_virtual/loading.js +45 -0
- package/lib/_virtual/warning.js +37 -0
- package/lib/index.css +348 -166
- package/lib/input.js +6 -2
- package/lib/input.p.module.css.js +28 -27
- package/lib/parts/right-icons.js +1 -1
- package/lib/public-api.p.css +97 -8
- package/lib/public-api.pcss +97 -8
- package/package.json +7 -7
package/lib/index.css
CHANGED
|
@@ -1,17 +1,91 @@
|
|
|
1
|
-
.
|
|
1
|
+
._icon_1jmu341_4{
|
|
2
|
+
--_rs-theme-dark:var(
|
|
3
|
+
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
4
|
+
var(--rs-theme-dark, 0)
|
|
5
|
+
);
|
|
6
|
+
--_rs-theme-flip:var(--rs-theme-flip, 0);
|
|
7
|
+
--_rs-theme-dark-coefficient:calc(var(--_rs-theme-dark)*(1 - var(--_rs-theme-flip)) + var(--_rs-theme-flip)*(1 - var(--_rs-theme-dark)));
|
|
8
|
+
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
9
|
+
}
|
|
10
|
+
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
11
|
+
._icon_1jmu341_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
|
+
}
|
|
18
|
+
}
|
|
19
|
+
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
20
|
+
._icon_1jmu341_4{
|
|
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
|
+
--_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
|
+
--_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));
|
|
24
|
+
--_rs-color-primary-t-dim: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, 0.8);
|
|
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
|
+
}
|
|
27
|
+
}
|
|
28
|
+
._icon_1jmu341_4{
|
|
29
|
+
|
|
30
|
+
fill:var(--_rs-icons-themed-fill-or-initial, currentcolor);
|
|
31
|
+
|
|
32
|
+
width:auto;
|
|
33
|
+
height:var(--_rs-icons-height);
|
|
34
|
+
}
|
|
35
|
+
._sizeXS_1jmu341_14{
|
|
36
|
+
--_rs-icons-height:16px;
|
|
37
|
+
}
|
|
38
|
+
._sizeS_1jmu341_18{
|
|
39
|
+
--_rs-icons-height:20px;
|
|
40
|
+
}
|
|
41
|
+
._sizeM_1jmu341_22{
|
|
42
|
+
--_rs-icons-height:24px;
|
|
43
|
+
}
|
|
44
|
+
._sizeL_1jmu341_26{
|
|
45
|
+
--_rs-icons-height:28px;
|
|
46
|
+
}
|
|
47
|
+
._light_1jmu341_30{
|
|
2
48
|
--rs-theme-dark:0;
|
|
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));
|
|
3
50
|
}
|
|
4
|
-
.
|
|
51
|
+
._dark_1jmu341_34{
|
|
5
52
|
--rs-theme-dark:1;
|
|
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));
|
|
6
54
|
}
|
|
7
|
-
|
|
55
|
+
@-webkit-keyframes rs-icon-rotate{
|
|
56
|
+
from{
|
|
57
|
+
-webkit-transform:rotate(0deg);
|
|
58
|
+
transform:rotate(0deg);
|
|
59
|
+
}
|
|
60
|
+
to{
|
|
61
|
+
-webkit-transform:rotate(360deg);
|
|
62
|
+
transform:rotate(360deg);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
@keyframes rs-icon-rotate{
|
|
66
|
+
from{
|
|
67
|
+
-webkit-transform:rotate(0deg);
|
|
68
|
+
transform:rotate(0deg);
|
|
69
|
+
}
|
|
70
|
+
to{
|
|
71
|
+
-webkit-transform:rotate(360deg);
|
|
72
|
+
transform:rotate(360deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
._light_ko8994_8{
|
|
76
|
+
--rs-theme-dark:0;
|
|
77
|
+
}
|
|
78
|
+
._dark_ko8994_11{
|
|
79
|
+
--rs-theme-dark:1;
|
|
80
|
+
}
|
|
81
|
+
._sizeS_ko8994_15{
|
|
8
82
|
--_rs-input-vertical-padding:6px;
|
|
9
83
|
--_rs-input-horizontal-padding:8px;
|
|
10
84
|
--_rs-input-parts-offset:4px;
|
|
11
85
|
--_rs-input-icon-offset:8px;
|
|
12
86
|
--_rs-input-icon-size:20px;
|
|
13
87
|
}
|
|
14
|
-
.
|
|
88
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
15
89
|
--_rs-typography-letter-spacing:0.0045em;
|
|
16
90
|
--_rs-typography-text-transform:initial;
|
|
17
91
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -45,7 +119,7 @@
|
|
|
45
119
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
46
120
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
47
121
|
}
|
|
48
|
-
.
|
|
122
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
49
123
|
--_rs-typography-letter-spacing:0.0045em;
|
|
50
124
|
--_rs-typography-text-transform:initial;
|
|
51
125
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -79,7 +153,7 @@
|
|
|
79
153
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
80
154
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
81
155
|
}
|
|
82
|
-
.
|
|
156
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
83
157
|
--_rs-typography-letter-spacing:0.0045em;
|
|
84
158
|
--_rs-typography-text-transform:initial;
|
|
85
159
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -113,7 +187,7 @@
|
|
|
113
187
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
114
188
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
115
189
|
}
|
|
116
|
-
.
|
|
190
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
117
191
|
--_rs-typography-letter-spacing:0.0045em;
|
|
118
192
|
--_rs-typography-text-transform:initial;
|
|
119
193
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -147,10 +221,10 @@
|
|
|
147
221
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
148
222
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
149
223
|
}
|
|
150
|
-
.
|
|
151
|
-
.
|
|
152
|
-
.
|
|
153
|
-
.
|
|
224
|
+
._sizeS_ko8994_15 [data-rs-internal='input__label'],
|
|
225
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner'],
|
|
226
|
+
._sizeS_ko8994_15 [data-rs-internal='input__inner']::placeholder,
|
|
227
|
+
._sizeS_ko8994_15 [data-rs-internal='input__suffix']{
|
|
154
228
|
--_rs-typography-letter-spacing:0.0045em;
|
|
155
229
|
--_rs-typography-text-transform:initial;
|
|
156
230
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -184,7 +258,7 @@
|
|
|
184
258
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
185
259
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
186
260
|
}
|
|
187
|
-
.
|
|
261
|
+
._sizeS_ko8994_15 [data-rs-internal='input__bold-label']{
|
|
188
262
|
--_rs-typography-letter-spacing:normal;
|
|
189
263
|
--_rs-typography-text-transform:initial;
|
|
190
264
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -212,8 +286,7 @@
|
|
|
212
286
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
213
287
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
214
288
|
}
|
|
215
|
-
.
|
|
216
|
-
._sizeS_1wook02_15 [data-rs-internal='input__error-message']{
|
|
289
|
+
._sizeS_ko8994_15 [data-rs-internal='input__note']{
|
|
217
290
|
--_rs-typography-letter-spacing:0.0045em;
|
|
218
291
|
--_rs-typography-text-transform:initial;
|
|
219
292
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -247,14 +320,45 @@
|
|
|
247
320
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
248
321
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
249
322
|
}
|
|
250
|
-
.
|
|
323
|
+
._sizeS_ko8994_15 [data-rs-internal='input__error-message']{
|
|
324
|
+
--_rs-typography-letter-spacing:normal;
|
|
325
|
+
--_rs-typography-text-transform:initial;
|
|
326
|
+
--_rs-typography-font-variant-numeric:initial;
|
|
327
|
+
--_rs-typography-font-family:var(
|
|
328
|
+
--rs-font-family-ui,
|
|
329
|
+
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
330
|
+
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
331
|
+
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
332
|
+
);
|
|
333
|
+
--_rs-typography-font-size:var(--rs-h5-font-size, 13px);
|
|
334
|
+
--_rs-typography-font-weight:var(
|
|
335
|
+
--rs-font-weight-semi-bold,
|
|
336
|
+
600
|
|
337
|
+
);
|
|
338
|
+
--_rs-typography-line-height:var(--rs-h5-line-height, 20px);
|
|
339
|
+
--_rs-typography-base-color:var(
|
|
340
|
+
--rs-color-hard,
|
|
341
|
+
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))
|
|
342
|
+
);
|
|
343
|
+
--_rs-typography-text-auto-offset:0;
|
|
344
|
+
--_rs-typography-ul-list-li-padding-left:initial;
|
|
345
|
+
--_rs-typography-ol-list-li-padding-left:initial;
|
|
346
|
+
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
347
|
+
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
348
|
+
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
349
|
+
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
350
|
+
}
|
|
351
|
+
._sizeS_ko8994_15 [data-rs-internal='input__error-icon']:not(html){
|
|
352
|
+
--_rs-icons-height:20px;
|
|
353
|
+
}
|
|
354
|
+
._sizeM_ko8994_18{
|
|
251
355
|
--_rs-input-vertical-padding:8px;
|
|
252
356
|
--_rs-input-horizontal-padding:8px;
|
|
253
357
|
--_rs-input-parts-offset:8px;
|
|
254
358
|
--_rs-input-icon-offset:8px;
|
|
255
359
|
--_rs-input-icon-size:24px;
|
|
256
360
|
}
|
|
257
|
-
.
|
|
361
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
258
362
|
--_rs-typography-letter-spacing:0.0015em;
|
|
259
363
|
--_rs-typography-text-transform:initial;
|
|
260
364
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -289,11 +393,11 @@
|
|
|
289
393
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
290
394
|
}
|
|
291
395
|
@media screen and (max-width: 640px){
|
|
292
|
-
.
|
|
396
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
293
397
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
294
398
|
}
|
|
295
399
|
}
|
|
296
|
-
.
|
|
400
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
297
401
|
--_rs-typography-letter-spacing:0.0015em;
|
|
298
402
|
--_rs-typography-text-transform:initial;
|
|
299
403
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -328,11 +432,11 @@
|
|
|
328
432
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
329
433
|
}
|
|
330
434
|
@media screen and (max-width: 640px){
|
|
331
|
-
.
|
|
435
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
332
436
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
333
437
|
}
|
|
334
438
|
}
|
|
335
|
-
.
|
|
439
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
336
440
|
--_rs-typography-letter-spacing:0.0015em;
|
|
337
441
|
--_rs-typography-text-transform:initial;
|
|
338
442
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -367,11 +471,11 @@
|
|
|
367
471
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
368
472
|
}
|
|
369
473
|
@media screen and (max-width: 640px){
|
|
370
|
-
.
|
|
474
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
371
475
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
372
476
|
}
|
|
373
477
|
}
|
|
374
|
-
.
|
|
478
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
375
479
|
--_rs-typography-letter-spacing:0.0015em;
|
|
376
480
|
--_rs-typography-text-transform:initial;
|
|
377
481
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -406,14 +510,14 @@
|
|
|
406
510
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
407
511
|
}
|
|
408
512
|
@media screen and (max-width: 640px){
|
|
409
|
-
.
|
|
513
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
410
514
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
411
515
|
}
|
|
412
516
|
}
|
|
413
|
-
.
|
|
414
|
-
.
|
|
415
|
-
.
|
|
416
|
-
.
|
|
517
|
+
._sizeM_ko8994_18 [data-rs-internal='input__label'],
|
|
518
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner'],
|
|
519
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::placeholder,
|
|
520
|
+
._sizeM_ko8994_18 [data-rs-internal='input__suffix']{
|
|
417
521
|
--_rs-typography-letter-spacing:0.0015em;
|
|
418
522
|
--_rs-typography-text-transform:initial;
|
|
419
523
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -448,14 +552,14 @@
|
|
|
448
552
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
449
553
|
}
|
|
450
554
|
@media screen and (max-width: 640px){
|
|
451
|
-
.
|
|
452
|
-
.
|
|
453
|
-
.
|
|
454
|
-
.
|
|
555
|
+
._sizeM_ko8994_18 [data-rs-internal='input__label'],
|
|
556
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner'],
|
|
557
|
+
._sizeM_ko8994_18 [data-rs-internal='input__inner']::placeholder,
|
|
558
|
+
._sizeM_ko8994_18 [data-rs-internal='input__suffix']{
|
|
455
559
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
456
560
|
}
|
|
457
561
|
}
|
|
458
|
-
.
|
|
562
|
+
._sizeM_ko8994_18 [data-rs-internal='input__bold-label']{
|
|
459
563
|
--_rs-typography-letter-spacing:normal;
|
|
460
564
|
--_rs-typography-text-transform:initial;
|
|
461
565
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -483,8 +587,7 @@
|
|
|
483
587
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
484
588
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
485
589
|
}
|
|
486
|
-
.
|
|
487
|
-
._sizeM_1wook02_18 [data-rs-internal='input__error-message']{
|
|
590
|
+
._sizeM_ko8994_18 [data-rs-internal='input__note']{
|
|
488
591
|
--_rs-typography-letter-spacing:0.0045em;
|
|
489
592
|
--_rs-typography-text-transform:initial;
|
|
490
593
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -518,14 +621,45 @@
|
|
|
518
621
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
519
622
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
520
623
|
}
|
|
521
|
-
.
|
|
624
|
+
._sizeM_ko8994_18 [data-rs-internal='input__error-message']{
|
|
625
|
+
--_rs-typography-letter-spacing:normal;
|
|
626
|
+
--_rs-typography-text-transform:initial;
|
|
627
|
+
--_rs-typography-font-variant-numeric:initial;
|
|
628
|
+
--_rs-typography-font-family:var(
|
|
629
|
+
--rs-font-family-ui,
|
|
630
|
+
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
631
|
+
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
632
|
+
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
633
|
+
);
|
|
634
|
+
--_rs-typography-font-size:var(--rs-h5-font-size, 13px);
|
|
635
|
+
--_rs-typography-font-weight:var(
|
|
636
|
+
--rs-font-weight-semi-bold,
|
|
637
|
+
600
|
|
638
|
+
);
|
|
639
|
+
--_rs-typography-line-height:var(--rs-h5-line-height, 20px);
|
|
640
|
+
--_rs-typography-base-color:var(
|
|
641
|
+
--rs-color-hard,
|
|
642
|
+
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))
|
|
643
|
+
);
|
|
644
|
+
--_rs-typography-text-auto-offset:0;
|
|
645
|
+
--_rs-typography-ul-list-li-padding-left:initial;
|
|
646
|
+
--_rs-typography-ol-list-li-padding-left:initial;
|
|
647
|
+
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
648
|
+
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
649
|
+
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
650
|
+
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
651
|
+
}
|
|
652
|
+
._sizeM_ko8994_18 [data-rs-internal='input__error-icon']:not(html){
|
|
653
|
+
--_rs-icons-height:20px;
|
|
654
|
+
}
|
|
655
|
+
._sizeL_ko8994_21{
|
|
522
656
|
--_rs-input-vertical-padding:12px;
|
|
523
657
|
--_rs-input-horizontal-padding:16px;
|
|
524
658
|
--_rs-input-parts-offset:8px;
|
|
525
659
|
--_rs-input-icon-offset:16px;
|
|
526
660
|
--_rs-input-icon-size:28px;
|
|
527
661
|
}
|
|
528
|
-
.
|
|
662
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
529
663
|
--_rs-typography-letter-spacing:normal;
|
|
530
664
|
--_rs-typography-text-transform:initial;
|
|
531
665
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -560,11 +694,11 @@
|
|
|
560
694
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
561
695
|
}
|
|
562
696
|
@media screen and (max-width: 640px){
|
|
563
|
-
.
|
|
697
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
564
698
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
565
699
|
}
|
|
566
700
|
}
|
|
567
|
-
.
|
|
701
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
568
702
|
--_rs-typography-letter-spacing:normal;
|
|
569
703
|
--_rs-typography-text-transform:initial;
|
|
570
704
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -599,11 +733,11 @@
|
|
|
599
733
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
600
734
|
}
|
|
601
735
|
@media screen and (max-width: 640px){
|
|
602
|
-
.
|
|
736
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
603
737
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
604
738
|
}
|
|
605
739
|
}
|
|
606
|
-
.
|
|
740
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
607
741
|
--_rs-typography-letter-spacing:normal;
|
|
608
742
|
--_rs-typography-text-transform:initial;
|
|
609
743
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -638,11 +772,11 @@
|
|
|
638
772
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
639
773
|
}
|
|
640
774
|
@media screen and (max-width: 640px){
|
|
641
|
-
.
|
|
775
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
642
776
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
643
777
|
}
|
|
644
778
|
}
|
|
645
|
-
.
|
|
779
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
646
780
|
--_rs-typography-letter-spacing:normal;
|
|
647
781
|
--_rs-typography-text-transform:initial;
|
|
648
782
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -677,14 +811,14 @@
|
|
|
677
811
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
678
812
|
}
|
|
679
813
|
@media screen and (max-width: 640px){
|
|
680
|
-
.
|
|
814
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
681
815
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
682
816
|
}
|
|
683
817
|
}
|
|
684
|
-
.
|
|
685
|
-
.
|
|
686
|
-
.
|
|
687
|
-
.
|
|
818
|
+
._sizeL_ko8994_21 [data-rs-internal='input__label'],
|
|
819
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner'],
|
|
820
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::placeholder,
|
|
821
|
+
._sizeL_ko8994_21 [data-rs-internal='input__suffix']{
|
|
688
822
|
--_rs-typography-letter-spacing:normal;
|
|
689
823
|
--_rs-typography-text-transform:initial;
|
|
690
824
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -719,14 +853,14 @@
|
|
|
719
853
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
720
854
|
}
|
|
721
855
|
@media screen and (max-width: 640px){
|
|
722
|
-
.
|
|
723
|
-
.
|
|
724
|
-
.
|
|
725
|
-
.
|
|
856
|
+
._sizeL_ko8994_21 [data-rs-internal='input__label'],
|
|
857
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner'],
|
|
858
|
+
._sizeL_ko8994_21 [data-rs-internal='input__inner']::placeholder,
|
|
859
|
+
._sizeL_ko8994_21 [data-rs-internal='input__suffix']{
|
|
726
860
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
727
861
|
}
|
|
728
862
|
}
|
|
729
|
-
.
|
|
863
|
+
._sizeL_ko8994_21 [data-rs-internal='input__bold-label']{
|
|
730
864
|
--_rs-typography-letter-spacing:normal;
|
|
731
865
|
--_rs-typography-text-transform:initial;
|
|
732
866
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -754,8 +888,7 @@
|
|
|
754
888
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
755
889
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
756
890
|
}
|
|
757
|
-
.
|
|
758
|
-
._sizeL_1wook02_21 [data-rs-internal='input__error-message']{
|
|
891
|
+
._sizeL_ko8994_21 [data-rs-internal='input__note']{
|
|
759
892
|
--_rs-typography-letter-spacing:0.0015em;
|
|
760
893
|
--_rs-typography-text-transform:initial;
|
|
761
894
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -790,12 +923,42 @@
|
|
|
790
923
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
791
924
|
}
|
|
792
925
|
@media screen and (max-width: 640px){
|
|
793
|
-
.
|
|
794
|
-
._sizeL_1wook02_21 [data-rs-internal='input__error-message']{
|
|
926
|
+
._sizeL_ko8994_21 [data-rs-internal='input__note']{
|
|
795
927
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
796
928
|
}
|
|
797
929
|
}
|
|
798
|
-
.
|
|
930
|
+
._sizeL_ko8994_21 [data-rs-internal='input__error-message']{
|
|
931
|
+
--_rs-typography-letter-spacing:normal;
|
|
932
|
+
--_rs-typography-text-transform:initial;
|
|
933
|
+
--_rs-typography-font-variant-numeric:initial;
|
|
934
|
+
--_rs-typography-font-family:var(
|
|
935
|
+
--rs-font-family-ui,
|
|
936
|
+
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
937
|
+
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
938
|
+
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
939
|
+
);
|
|
940
|
+
--_rs-typography-font-size:var(--rs-h4-font-size, 16px);
|
|
941
|
+
--_rs-typography-font-weight:var(
|
|
942
|
+
--rs-font-weight-semi-bold,
|
|
943
|
+
600
|
|
944
|
+
);
|
|
945
|
+
--_rs-typography-line-height:var(--rs-h4-line-height, 24px);
|
|
946
|
+
--_rs-typography-base-color:var(
|
|
947
|
+
--rs-color-hard,
|
|
948
|
+
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))
|
|
949
|
+
);
|
|
950
|
+
--_rs-typography-text-auto-offset:0;
|
|
951
|
+
--_rs-typography-ul-list-li-padding-left:initial;
|
|
952
|
+
--_rs-typography-ol-list-li-padding-left:initial;
|
|
953
|
+
--_rs-typography-list-li-margin-top-from-text:initial;
|
|
954
|
+
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
955
|
+
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
956
|
+
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
957
|
+
}
|
|
958
|
+
._sizeL_ko8994_21 [data-rs-internal='input__error-icon']:not(html){
|
|
959
|
+
--_rs-icons-height:24px;
|
|
960
|
+
}
|
|
961
|
+
._classic_ko8994_25{
|
|
799
962
|
--_rs-input-focused-enabled-wrapper-border-width:2px;
|
|
800
963
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
801
964
|
calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*182)
|
|
@@ -845,7 +1008,7 @@
|
|
|
845
1008
|
0.5
|
|
846
1009
|
);
|
|
847
1010
|
}
|
|
848
|
-
.
|
|
1011
|
+
._rock_ko8994_28{
|
|
849
1012
|
--_rs-input-focused-enabled-wrapper-border-width:0px;
|
|
850
1013
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
851
1014
|
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)
|
|
@@ -877,7 +1040,7 @@
|
|
|
877
1040
|
);
|
|
878
1041
|
--_rs-input-error-focused-suffix-color:rgba(255,255,255,0.7);
|
|
879
1042
|
}
|
|
880
|
-
.
|
|
1043
|
+
._container_ko8994_32{
|
|
881
1044
|
--_rs-theme-dark:var(
|
|
882
1045
|
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
883
1046
|
var(--rs-theme-dark, 0)
|
|
@@ -887,7 +1050,7 @@
|
|
|
887
1050
|
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
888
1051
|
}
|
|
889
1052
|
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
890
|
-
.
|
|
1053
|
+
._container_ko8994_32{
|
|
891
1054
|
--_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)));
|
|
892
1055
|
--_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)));
|
|
893
1056
|
--_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)));
|
|
@@ -896,7 +1059,7 @@
|
|
|
896
1059
|
}
|
|
897
1060
|
}
|
|
898
1061
|
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
899
|
-
.
|
|
1062
|
+
._container_ko8994_32{
|
|
900
1063
|
--_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);
|
|
901
1064
|
--_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));
|
|
902
1065
|
--_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));
|
|
@@ -904,11 +1067,11 @@
|
|
|
904
1067
|
--_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));
|
|
905
1068
|
}
|
|
906
1069
|
}
|
|
907
|
-
.
|
|
1070
|
+
._container_ko8994_32 {
|
|
908
1071
|
|
|
909
1072
|
display:block;
|
|
910
1073
|
}
|
|
911
|
-
.
|
|
1074
|
+
._wrapper_ko8994_39{
|
|
912
1075
|
--_rs-input-border-width:1px;
|
|
913
1076
|
|
|
914
1077
|
display:-webkit-box;
|
|
@@ -923,27 +1086,27 @@
|
|
|
923
1086
|
|
|
924
1087
|
background-color:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*207), calc(255 - var(--_rs-theme-dark-coefficient, 0)*207), calc(255 - var(--_rs-theme-dark-coefficient, 0)*204));
|
|
925
1088
|
}
|
|
926
|
-
.
|
|
1089
|
+
._disabled_ko8994_51 ._wrapper_ko8994_39{
|
|
927
1090
|
cursor:auto;
|
|
928
1091
|
|
|
929
1092
|
background-color:rgb(calc(244 - var(--_rs-theme-dark-coefficient, 0)*219), calc(244 - var(--_rs-theme-dark-coefficient, 0)*219), calc(244 - var(--_rs-theme-dark-coefficient, 0)*216));
|
|
930
1093
|
}
|
|
931
|
-
.
|
|
1094
|
+
._error_ko8994_57 ._wrapper_ko8994_39{
|
|
932
1095
|
--_rs-input-border-width:2px;
|
|
933
1096
|
|
|
934
1097
|
border-color:#F45C4A;
|
|
935
1098
|
}
|
|
936
|
-
.
|
|
1099
|
+
._enabled_ko8994_63._filled_ko8994_63 ._wrapper_ko8994_39{
|
|
937
1100
|
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);
|
|
938
1101
|
}
|
|
939
1102
|
@media (hover: hover){
|
|
940
|
-
.
|
|
1103
|
+
._enabled_ko8994_63:hover ._wrapper_ko8994_39{
|
|
941
1104
|
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);
|
|
942
1105
|
|
|
943
1106
|
background-color:rgb(calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*184), calc(255 - var(--_rs-theme-dark-coefficient, 0)*182));
|
|
944
1107
|
}
|
|
945
1108
|
}
|
|
946
|
-
.
|
|
1109
|
+
._enabled_ko8994_63._focused_ko8994_75 ._wrapper_ko8994_39{
|
|
947
1110
|
--_rs-input-border-width:var(
|
|
948
1111
|
--_rs-input-focused-enabled-wrapper-border-width
|
|
949
1112
|
);
|
|
@@ -953,18 +1116,18 @@
|
|
|
953
1116
|
background-color:var(--_rs-input-focused-enabled-wrapper-background);
|
|
954
1117
|
}
|
|
955
1118
|
@media (hover: hover){
|
|
956
|
-
.
|
|
1119
|
+
._error_ko8994_57._enabled_ko8994_63:hover ._wrapper_ko8994_39{
|
|
957
1120
|
border-color:#F45C4A;
|
|
958
1121
|
}
|
|
959
1122
|
}
|
|
960
|
-
.
|
|
961
|
-
.
|
|
1123
|
+
._error_ko8994_57._enabled_ko8994_63._focused_ko8994_75 ._wrapper_ko8994_39,
|
|
1124
|
+
._error_ko8994_57._enabled_ko8994_63._filled_ko8994_63 ._wrapper_ko8994_39{
|
|
962
1125
|
border-color:#F45C4A;
|
|
963
1126
|
}
|
|
964
|
-
.
|
|
1127
|
+
._error_ko8994_57._enabled_ko8994_63._focused_ko8994_75 ._wrapper_ko8994_39{
|
|
965
1128
|
background:var(--_rs-input-error-focused-enabled-wrapper-background);
|
|
966
1129
|
}
|
|
967
|
-
.
|
|
1130
|
+
._field_ko8994_101{
|
|
968
1131
|
display:-webkit-box;
|
|
969
1132
|
display:-ms-flexbox;
|
|
970
1133
|
display:flex;
|
|
@@ -979,7 +1142,7 @@
|
|
|
979
1142
|
|
|
980
1143
|
padding:calc(var(--_rs-input-vertical-padding) - var(--_rs-input-border-width)) calc(var(--_rs-input-horizontal-padding) - var(--_rs-input-border-width));
|
|
981
1144
|
}
|
|
982
|
-
.
|
|
1145
|
+
._inner_ko8994_114{
|
|
983
1146
|
letter-spacing:var(
|
|
984
1147
|
--rs-text-base-letter-spacing,
|
|
985
1148
|
var(--_rs-typography-letter-spacing)
|
|
@@ -993,26 +1156,26 @@
|
|
|
993
1156
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
994
1157
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
995
1158
|
}
|
|
996
|
-
.
|
|
997
|
-
.
|
|
1159
|
+
._inner_ko8994_114 > p:not(:nth-child(1)),
|
|
1160
|
+
._inner_ko8994_114 > pre:not(:nth-child(1)){
|
|
998
1161
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
999
1162
|
}
|
|
1000
|
-
.
|
|
1163
|
+
._inner_ko8994_114::-ms-clear{
|
|
1001
1164
|
display:none;
|
|
1002
1165
|
|
|
1003
1166
|
width:0;
|
|
1004
1167
|
height:0;
|
|
1005
1168
|
}
|
|
1006
|
-
.
|
|
1169
|
+
._dark_ko8994_11 ._inner_ko8994_114{
|
|
1007
1170
|
color-scheme:dark;
|
|
1008
1171
|
}
|
|
1009
|
-
.
|
|
1172
|
+
._inner_ko8994_114 {
|
|
1010
1173
|
|
|
1011
1174
|
@container style(--_rs-theme-dark-coefficient: 1){
|
|
1012
1175
|
color-scheme:dark;
|
|
1013
1176
|
}
|
|
1014
1177
|
}
|
|
1015
|
-
.
|
|
1178
|
+
._inner_ko8994_114 {
|
|
1016
1179
|
@container style(--_rs-theme-dark-coefficient: 0){
|
|
1017
1180
|
color-scheme:light;
|
|
1018
1181
|
}
|
|
@@ -1043,20 +1206,20 @@
|
|
|
1043
1206
|
-moz-appearance:none;
|
|
1044
1207
|
appearance:none;
|
|
1045
1208
|
}
|
|
1046
|
-
.
|
|
1209
|
+
._inner_ko8994_114:focus{
|
|
1047
1210
|
outline:none;
|
|
1048
1211
|
}
|
|
1049
|
-
.
|
|
1050
|
-
.
|
|
1212
|
+
._disabled_ko8994_51 ._inner_ko8994_114,
|
|
1213
|
+
._inner_ko8994_114:disabled{
|
|
1051
1214
|
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);
|
|
1052
1215
|
}
|
|
1053
|
-
.
|
|
1216
|
+
._focused_ko8994_75 ._inner_ko8994_114{
|
|
1054
1217
|
color:var(--_rs-input-focused-inner-color);
|
|
1055
1218
|
}
|
|
1056
|
-
.
|
|
1219
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114{
|
|
1057
1220
|
color:var(--_rs-input-error-focused-inner-color);
|
|
1058
1221
|
}
|
|
1059
|
-
.
|
|
1222
|
+
._inner_ko8994_114::-webkit-input-placeholder{
|
|
1060
1223
|
letter-spacing:var(
|
|
1061
1224
|
--rs-text-base-letter-spacing,
|
|
1062
1225
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1070,22 +1233,22 @@
|
|
|
1070
1233
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1071
1234
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1072
1235
|
}
|
|
1073
|
-
.
|
|
1074
|
-
.
|
|
1236
|
+
._inner_ko8994_114::-webkit-input-placeholder > p:not(:nth-child(1)),
|
|
1237
|
+
._inner_ko8994_114::-webkit-input-placeholder > pre:not(:nth-child(1)){
|
|
1075
1238
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1076
1239
|
}
|
|
1077
|
-
.
|
|
1240
|
+
._inner_ko8994_114::-webkit-input-placeholder {
|
|
1078
1241
|
opacity:1;
|
|
1079
1242
|
|
|
1080
1243
|
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);
|
|
1081
1244
|
}
|
|
1082
|
-
.
|
|
1245
|
+
._focused_ko8994_75 ._inner_ko8994_114::-webkit-input-placeholder{
|
|
1083
1246
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1084
1247
|
}
|
|
1085
|
-
.
|
|
1248
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114::-webkit-input-placeholder{
|
|
1086
1249
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1087
1250
|
}
|
|
1088
|
-
.
|
|
1251
|
+
._inner_ko8994_114::-moz-placeholder{
|
|
1089
1252
|
letter-spacing:var(
|
|
1090
1253
|
--rs-text-base-letter-spacing,
|
|
1091
1254
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1099,22 +1262,22 @@
|
|
|
1099
1262
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1100
1263
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1101
1264
|
}
|
|
1102
|
-
.
|
|
1103
|
-
.
|
|
1265
|
+
._inner_ko8994_114::-moz-placeholder > p:not(:nth-child(1)),
|
|
1266
|
+
._inner_ko8994_114::-moz-placeholder > pre:not(:nth-child(1)){
|
|
1104
1267
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1105
1268
|
}
|
|
1106
|
-
.
|
|
1269
|
+
._inner_ko8994_114::-moz-placeholder {
|
|
1107
1270
|
opacity:1;
|
|
1108
1271
|
|
|
1109
1272
|
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);
|
|
1110
1273
|
}
|
|
1111
|
-
.
|
|
1274
|
+
._focused_ko8994_75 ._inner_ko8994_114::-moz-placeholder{
|
|
1112
1275
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1113
1276
|
}
|
|
1114
|
-
.
|
|
1277
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114::-moz-placeholder{
|
|
1115
1278
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1116
1279
|
}
|
|
1117
|
-
.
|
|
1280
|
+
._inner_ko8994_114:-ms-input-placeholder{
|
|
1118
1281
|
letter-spacing:var(
|
|
1119
1282
|
--rs-text-base-letter-spacing,
|
|
1120
1283
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1128,22 +1291,22 @@
|
|
|
1128
1291
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1129
1292
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1130
1293
|
}
|
|
1131
|
-
.
|
|
1132
|
-
.
|
|
1294
|
+
._inner_ko8994_114:-ms-input-placeholder > p:not(:nth-child(1)),
|
|
1295
|
+
._inner_ko8994_114:-ms-input-placeholder > pre:not(:nth-child(1)){
|
|
1133
1296
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1134
1297
|
}
|
|
1135
|
-
.
|
|
1298
|
+
._inner_ko8994_114:-ms-input-placeholder {
|
|
1136
1299
|
opacity:1;
|
|
1137
1300
|
|
|
1138
1301
|
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);
|
|
1139
1302
|
}
|
|
1140
|
-
.
|
|
1303
|
+
._focused_ko8994_75 ._inner_ko8994_114:-ms-input-placeholder{
|
|
1141
1304
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1142
1305
|
}
|
|
1143
|
-
.
|
|
1306
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114:-ms-input-placeholder{
|
|
1144
1307
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1145
1308
|
}
|
|
1146
|
-
.
|
|
1309
|
+
._inner_ko8994_114::-ms-input-placeholder{
|
|
1147
1310
|
letter-spacing:var(
|
|
1148
1311
|
--rs-text-base-letter-spacing,
|
|
1149
1312
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1157,22 +1320,22 @@
|
|
|
1157
1320
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1158
1321
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1159
1322
|
}
|
|
1160
|
-
.
|
|
1161
|
-
.
|
|
1323
|
+
._inner_ko8994_114::-ms-input-placeholder > p:not(:nth-child(1)),
|
|
1324
|
+
._inner_ko8994_114::-ms-input-placeholder > pre:not(:nth-child(1)){
|
|
1162
1325
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1163
1326
|
}
|
|
1164
|
-
.
|
|
1327
|
+
._inner_ko8994_114::-ms-input-placeholder {
|
|
1165
1328
|
opacity:1;
|
|
1166
1329
|
|
|
1167
1330
|
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);
|
|
1168
1331
|
}
|
|
1169
|
-
.
|
|
1332
|
+
._focused_ko8994_75 ._inner_ko8994_114::-ms-input-placeholder{
|
|
1170
1333
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1171
1334
|
}
|
|
1172
|
-
.
|
|
1335
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114::-ms-input-placeholder{
|
|
1173
1336
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1174
1337
|
}
|
|
1175
|
-
.
|
|
1338
|
+
._inner_ko8994_114::placeholder{
|
|
1176
1339
|
letter-spacing:var(
|
|
1177
1340
|
--rs-text-base-letter-spacing,
|
|
1178
1341
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1186,31 +1349,31 @@
|
|
|
1186
1349
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1187
1350
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1188
1351
|
}
|
|
1189
|
-
.
|
|
1190
|
-
.
|
|
1352
|
+
._inner_ko8994_114::placeholder > p:not(:nth-child(1)),
|
|
1353
|
+
._inner_ko8994_114::placeholder > pre:not(:nth-child(1)){
|
|
1191
1354
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1192
1355
|
}
|
|
1193
|
-
.
|
|
1356
|
+
._inner_ko8994_114::placeholder {
|
|
1194
1357
|
opacity:1;
|
|
1195
1358
|
|
|
1196
1359
|
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);
|
|
1197
1360
|
}
|
|
1198
|
-
.
|
|
1361
|
+
._focused_ko8994_75 ._inner_ko8994_114::placeholder{
|
|
1199
1362
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1200
1363
|
}
|
|
1201
|
-
.
|
|
1364
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114::placeholder{
|
|
1202
1365
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1203
1366
|
}
|
|
1204
|
-
.
|
|
1367
|
+
._inner_ko8994_114:-moz-ui-invalid{
|
|
1205
1368
|
box-shadow:none;
|
|
1206
1369
|
}
|
|
1207
|
-
.
|
|
1370
|
+
._inner_ko8994_114:-moz-ui-invalid:-moz-focusring{
|
|
1208
1371
|
box-shadow:none;
|
|
1209
1372
|
}
|
|
1210
|
-
.
|
|
1211
|
-
.
|
|
1212
|
-
.
|
|
1213
|
-
.
|
|
1373
|
+
._inner_ko8994_114:-webkit-autofill,
|
|
1374
|
+
._inner_ko8994_114:-webkit-autofill:hover,
|
|
1375
|
+
._inner_ko8994_114:-webkit-autofill:active,
|
|
1376
|
+
._inner_ko8994_114:-webkit-autofill:focus{
|
|
1214
1377
|
-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;
|
|
1215
1378
|
|
|
1216
1379
|
-webkit-transition-delay:9999s;
|
|
@@ -1218,24 +1381,24 @@
|
|
|
1218
1381
|
transition-delay:9999s;
|
|
1219
1382
|
-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));
|
|
1220
1383
|
}
|
|
1221
|
-
.
|
|
1384
|
+
._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill, ._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:hover, ._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:active, ._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:focus{
|
|
1222
1385
|
-webkit-box-shadow:0 0 0 1000px var(--_rs-input-focused-autofill-box-shadow) inset;
|
|
1223
1386
|
-webkit-text-fill-color:var(--_rs-input-focused-autofill-color);
|
|
1224
1387
|
}
|
|
1225
|
-
.
|
|
1388
|
+
._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill, ._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:hover, ._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:active, ._error_ko8994_57._focused_ko8994_75 ._inner_ko8994_114:-webkit-autofill:focus{
|
|
1226
1389
|
-webkit-box-shadow:0 0 0 1000px var(--_rs-input-error-focused-autofill-box-shadow) inset;
|
|
1227
1390
|
-webkit-text-fill-color:var(--_rs-input-error-focused-autofill-color);
|
|
1228
1391
|
}
|
|
1229
|
-
.
|
|
1392
|
+
._offSystemMicroelements_ko8994_229 ._inner_ko8994_114{
|
|
1230
1393
|
-moz-appearance:textfield;
|
|
1231
1394
|
}
|
|
1232
|
-
.
|
|
1233
|
-
.
|
|
1395
|
+
._offSystemMicroelements_ko8994_229 ._inner_ko8994_114::-webkit-outer-spin-button,
|
|
1396
|
+
._offSystemMicroelements_ko8994_229 ._inner_ko8994_114::-webkit-inner-spin-button{
|
|
1234
1397
|
margin:0;
|
|
1235
1398
|
-webkit-appearance:none;
|
|
1236
1399
|
appearance:none;
|
|
1237
1400
|
}
|
|
1238
|
-
.
|
|
1401
|
+
._iconWrapper_ko8994_239{
|
|
1239
1402
|
--_rs-input-icon-overlap:calc(var(--_rs-input-vertical-padding) - var(--_rs-input-border-width));
|
|
1240
1403
|
|
|
1241
1404
|
display:-webkit-inline-box;
|
|
@@ -1254,15 +1417,15 @@
|
|
|
1254
1417
|
|
|
1255
1418
|
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);
|
|
1256
1419
|
}
|
|
1257
|
-
.
|
|
1420
|
+
._iconWrapper_ko8994_239._action_ko8994_254{
|
|
1258
1421
|
position:relative;
|
|
1259
1422
|
|
|
1260
1423
|
cursor:pointer;
|
|
1261
1424
|
}
|
|
1262
|
-
.
|
|
1425
|
+
._iconWrapper_ko8994_239._action_ko8994_254:focus{
|
|
1263
1426
|
outline:none;
|
|
1264
1427
|
}
|
|
1265
|
-
.
|
|
1428
|
+
._iconWrapper_ko8994_239._action_ko8994_254::before{
|
|
1266
1429
|
position:absolute;
|
|
1267
1430
|
top:-4px;
|
|
1268
1431
|
right:-4px;
|
|
@@ -1277,56 +1440,56 @@
|
|
|
1277
1440
|
content:'';
|
|
1278
1441
|
pointer-events:none;
|
|
1279
1442
|
}
|
|
1280
|
-
.
|
|
1443
|
+
._iconWrapper_ko8994_239._action_ko8994_254:focus[data-focus-method='key']::before{
|
|
1281
1444
|
display:block;
|
|
1282
1445
|
}
|
|
1283
|
-
.
|
|
1446
|
+
._disabled_ko8994_51 ._iconWrapper_ko8994_239{
|
|
1284
1447
|
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);
|
|
1285
1448
|
}
|
|
1286
|
-
.
|
|
1449
|
+
._disabled_ko8994_51 ._iconWrapper_ko8994_239._action_ko8994_254{
|
|
1287
1450
|
pointer-events:none;
|
|
1288
1451
|
}
|
|
1289
|
-
.
|
|
1452
|
+
._iconWrapper_ko8994_239._right_ko8994_292{
|
|
1290
1453
|
margin-left:var(--_rs-input-icon-offset);
|
|
1291
1454
|
}
|
|
1292
|
-
.
|
|
1455
|
+
._iconWrapper_ko8994_239._left_ko8994_296{
|
|
1293
1456
|
margin-right:var(--_rs-input-icon-offset);
|
|
1294
1457
|
}
|
|
1295
|
-
.
|
|
1458
|
+
._focused_ko8994_75 ._iconWrapper_ko8994_239{
|
|
1296
1459
|
color:var(--_rs-input-focused-icon-color);
|
|
1297
1460
|
}
|
|
1298
|
-
.
|
|
1461
|
+
._error_ko8994_57._focused_ko8994_75 ._iconWrapper_ko8994_239{
|
|
1299
1462
|
color:var(--_rs-input-error-focused-icon-color);
|
|
1300
1463
|
}
|
|
1301
1464
|
@media (hover: hover){
|
|
1302
|
-
.
|
|
1465
|
+
._enabled_ko8994_63 ._iconWrapper_ko8994_239._action_ko8994_254:hover{
|
|
1303
1466
|
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));
|
|
1304
1467
|
}
|
|
1305
1468
|
|
|
1306
|
-
.
|
|
1469
|
+
._enabled_ko8994_63._focused_ko8994_75 ._iconWrapper_ko8994_239._action_ko8994_254:hover{
|
|
1307
1470
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1308
1471
|
}
|
|
1309
1472
|
|
|
1310
|
-
.
|
|
1473
|
+
._enabled_ko8994_63._error_ko8994_57._focused_ko8994_75 ._iconWrapper_ko8994_239._action_ko8994_254:hover{
|
|
1311
1474
|
color:var(--_rs-input-error-focused-icon-accent-color);
|
|
1312
1475
|
}
|
|
1313
1476
|
}
|
|
1314
|
-
.
|
|
1477
|
+
._enabled_ko8994_63 ._iconWrapper_ko8994_239._action_ko8994_254:focus[data-focus-method='key']{
|
|
1315
1478
|
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));
|
|
1316
1479
|
}
|
|
1317
|
-
.
|
|
1480
|
+
._enabled_ko8994_63._focused_ko8994_75 ._iconWrapper_ko8994_239._action_ko8994_254:focus[data-focus-method='key']{
|
|
1318
1481
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1319
1482
|
}
|
|
1320
|
-
.
|
|
1483
|
+
._enabled_ko8994_63._error_ko8994_57._focused_ko8994_75 ._iconWrapper_ko8994_239._action_ko8994_254:focus[data-focus-method='key']{
|
|
1321
1484
|
color:var(--_rs-input-error-focused-icon-accent-color);
|
|
1322
1485
|
}
|
|
1323
|
-
.
|
|
1486
|
+
._iconWrapper_ko8994_239 ._icon_ko8994_239{
|
|
1324
1487
|
fill:currentColor;
|
|
1325
1488
|
|
|
1326
1489
|
width:auto;
|
|
1327
1490
|
height:var(--_rs-input-icon-size);
|
|
1328
1491
|
}
|
|
1329
|
-
.
|
|
1492
|
+
._divider_ko8994_342{
|
|
1330
1493
|
display:block;
|
|
1331
1494
|
|
|
1332
1495
|
width:1px;
|
|
@@ -1335,10 +1498,10 @@
|
|
|
1335
1498
|
|
|
1336
1499
|
background: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);
|
|
1337
1500
|
}
|
|
1338
|
-
.
|
|
1501
|
+
._focused_ko8994_75 ._divider_ko8994_342{
|
|
1339
1502
|
background:var(--_rs-input-focused-divider-background);
|
|
1340
1503
|
}
|
|
1341
|
-
.
|
|
1504
|
+
._suffix_ko8994_356{
|
|
1342
1505
|
letter-spacing:var(
|
|
1343
1506
|
--rs-text-base-letter-spacing,
|
|
1344
1507
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1352,11 +1515,11 @@
|
|
|
1352
1515
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1353
1516
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1354
1517
|
}
|
|
1355
|
-
.
|
|
1356
|
-
.
|
|
1518
|
+
._suffix_ko8994_356 > p:not(:nth-child(1)),
|
|
1519
|
+
._suffix_ko8994_356 > pre:not(:nth-child(1)){
|
|
1357
1520
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1358
1521
|
}
|
|
1359
|
-
.
|
|
1522
|
+
._suffix_ko8994_356 {
|
|
1360
1523
|
|
|
1361
1524
|
-webkit-box-flex:0;
|
|
1362
1525
|
|
|
@@ -1368,13 +1531,13 @@
|
|
|
1368
1531
|
|
|
1369
1532
|
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);
|
|
1370
1533
|
}
|
|
1371
|
-
.
|
|
1534
|
+
._focused_ko8994_75 ._suffix_ko8994_356{
|
|
1372
1535
|
color:var(--_rs-input-focused-suffix-color);
|
|
1373
1536
|
}
|
|
1374
|
-
.
|
|
1537
|
+
._error_ko8994_57._focused_ko8994_75 ._suffix_ko8994_356{
|
|
1375
1538
|
color:var(--_rs-input-error-focused-suffix-color);
|
|
1376
1539
|
}
|
|
1377
|
-
.
|
|
1540
|
+
._errorMessage_ko8994_376{
|
|
1378
1541
|
letter-spacing:var(
|
|
1379
1542
|
--rs-text-base-letter-spacing,
|
|
1380
1543
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1388,16 +1551,35 @@
|
|
|
1388
1551
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1389
1552
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1390
1553
|
}
|
|
1391
|
-
.
|
|
1392
|
-
.
|
|
1554
|
+
._errorMessage_ko8994_376 > p:not(:nth-child(1)),
|
|
1555
|
+
._errorMessage_ko8994_376 > pre:not(:nth-child(1)){
|
|
1393
1556
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1394
1557
|
}
|
|
1395
|
-
.
|
|
1558
|
+
._errorMessage_ko8994_376 {
|
|
1559
|
+
|
|
1560
|
+
display:-webkit-box;
|
|
1561
|
+
|
|
1562
|
+
display:-ms-flexbox;
|
|
1563
|
+
|
|
1564
|
+
display:flex;
|
|
1565
|
+
-ms-flex-wrap:nowrap;
|
|
1566
|
+
flex-wrap:nowrap;
|
|
1567
|
+
|
|
1396
1568
|
margin-top:var(--_rs-input-parts-offset);
|
|
1397
1569
|
|
|
1570
|
+
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));
|
|
1571
|
+
-webkit-column-gap:8px;
|
|
1572
|
+
-moz-column-gap:8px;
|
|
1573
|
+
column-gap:8px;
|
|
1574
|
+
}
|
|
1575
|
+
._errorIcon_ko8994_388{
|
|
1576
|
+
-webkit-box-flex:0;
|
|
1577
|
+
-ms-flex:0 0 auto;
|
|
1578
|
+
flex:0 0 auto;
|
|
1579
|
+
|
|
1398
1580
|
color:#F45C4A;
|
|
1399
1581
|
}
|
|
1400
|
-
.
|
|
1582
|
+
._note_ko8994_394{
|
|
1401
1583
|
letter-spacing:var(
|
|
1402
1584
|
--rs-text-base-letter-spacing,
|
|
1403
1585
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1411,11 +1593,11 @@
|
|
|
1411
1593
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1412
1594
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1413
1595
|
}
|
|
1414
|
-
.
|
|
1415
|
-
.
|
|
1596
|
+
._note_ko8994_394 > p:not(:nth-child(1)),
|
|
1597
|
+
._note_ko8994_394 > pre:not(:nth-child(1)){
|
|
1416
1598
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1417
1599
|
}
|
|
1418
|
-
.
|
|
1600
|
+
._note_ko8994_394 {
|
|
1419
1601
|
--_rs-typography-hardness-color:var(
|
|
1420
1602
|
--rs-color-average,
|
|
1421
1603
|
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)
|
|
@@ -1425,13 +1607,13 @@
|
|
|
1425
1607
|
|
|
1426
1608
|
color:var(--_rs-typography-hardness-color);
|
|
1427
1609
|
}
|
|
1428
|
-
.
|
|
1610
|
+
._disabled_ko8994_51 ._note_ko8994_394{
|
|
1429
1611
|
--_rs-typography-hardness-color:var(
|
|
1430
1612
|
--rs-color-pale,
|
|
1431
1613
|
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)
|
|
1432
1614
|
);
|
|
1433
1615
|
}
|
|
1434
|
-
.
|
|
1616
|
+
._label_ko8994_407{
|
|
1435
1617
|
letter-spacing:var(
|
|
1436
1618
|
--rs-text-base-letter-spacing,
|
|
1437
1619
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1445,11 +1627,11 @@
|
|
|
1445
1627
|
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1446
1628
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1447
1629
|
}
|
|
1448
|
-
.
|
|
1449
|
-
.
|
|
1630
|
+
._label_ko8994_407 > p:not(:nth-child(1)),
|
|
1631
|
+
._label_ko8994_407 > pre:not(:nth-child(1)){
|
|
1450
1632
|
padding-top:var(--_rs-typography-auto-offset-or-initial);
|
|
1451
1633
|
}
|
|
1452
|
-
.
|
|
1634
|
+
._label_ko8994_407 {
|
|
1453
1635
|
--_rs-typography-hardness-color:var(
|
|
1454
1636
|
--rs-color-hard,
|
|
1455
1637
|
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))
|
|
@@ -1459,7 +1641,7 @@
|
|
|
1459
1641
|
|
|
1460
1642
|
color:var(--_rs-typography-hardness-color);
|
|
1461
1643
|
}
|
|
1462
|
-
.
|
|
1644
|
+
._disabled_ko8994_51 ._label_ko8994_407{
|
|
1463
1645
|
--_rs-typography-hardness-color:var(
|
|
1464
1646
|
--rs-color-pale,
|
|
1465
1647
|
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)
|