@rescui/input 0.11.7 → 0.11.9
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 +8 -9
- package/lib/_virtual/index.css.js +7 -7
- package/lib/_virtual/loading.js +8 -9
- package/lib/_virtual/warning.js +8 -9
- package/lib/index.css +139 -599
- package/lib/index.js +1 -1
- package/lib/input.js +72 -91
- package/lib/input.p.module.css.js +28 -28
- package/lib/parts/custom-icon.js +25 -42
- package/lib/parts/right-icons.js +12 -11
- package/lib/public-api.p.css +0 -336
- package/lib/public-api.pcss +0 -336
- package/package.json +9 -10
package/lib/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
1
|
+
._icon_ons1cf_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,7 +8,7 @@
|
|
|
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
|
-
.
|
|
11
|
+
._icon_ons1cf_4{
|
|
12
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
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
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)));
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
20
|
-
.
|
|
20
|
+
._icon_ons1cf_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,135 +25,55 @@
|
|
|
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_ons1cf_4{
|
|
29
29
|
|
|
30
30
|
fill:var(--_rs-icons-themed-fill-or-initial, currentcolor);
|
|
31
31
|
|
|
32
32
|
width:auto;
|
|
33
33
|
height:var(--_rs-icons-height);
|
|
34
34
|
}
|
|
35
|
-
.
|
|
35
|
+
._sizeXS_ons1cf_14{
|
|
36
36
|
--_rs-icons-height:16px;
|
|
37
37
|
}
|
|
38
|
-
.
|
|
38
|
+
._sizeS_ons1cf_18{
|
|
39
39
|
--_rs-icons-height:20px;
|
|
40
40
|
}
|
|
41
|
-
.
|
|
41
|
+
._sizeM_ons1cf_22{
|
|
42
42
|
--_rs-icons-height:24px;
|
|
43
43
|
}
|
|
44
|
-
.
|
|
44
|
+
._sizeL_ons1cf_26{
|
|
45
45
|
--_rs-icons-height:28px;
|
|
46
46
|
}
|
|
47
|
-
.
|
|
47
|
+
._light_ons1cf_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_ons1cf_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
|
}
|
|
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
55
|
@keyframes rs-icon-rotate{
|
|
66
56
|
from{
|
|
67
|
-
|
|
68
|
-
transform:rotate(0deg);
|
|
57
|
+
transform:rotate(0deg);
|
|
69
58
|
}
|
|
70
59
|
to{
|
|
71
|
-
|
|
72
|
-
transform:rotate(360deg);
|
|
60
|
+
transform:rotate(360deg);
|
|
73
61
|
}
|
|
74
62
|
}
|
|
75
|
-
.
|
|
63
|
+
._light_8w2392_8{
|
|
76
64
|
--rs-theme-dark:0;
|
|
77
65
|
}
|
|
78
|
-
.
|
|
66
|
+
._dark_8w2392_11{
|
|
79
67
|
--rs-theme-dark:1;
|
|
80
68
|
}
|
|
81
|
-
.
|
|
69
|
+
._sizeS_8w2392_15{
|
|
82
70
|
--_rs-input-vertical-padding:6px;
|
|
83
71
|
--_rs-input-horizontal-padding:8px;
|
|
84
72
|
--_rs-input-parts-offset:4px;
|
|
85
73
|
--_rs-input-icon-offset:8px;
|
|
86
74
|
--_rs-input-icon-size:20px;
|
|
87
75
|
}
|
|
88
|
-
.
|
|
89
|
-
--_rs-typography-letter-spacing:0.0045em;
|
|
90
|
-
--_rs-typography-text-transform:initial;
|
|
91
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
92
|
-
--_rs-typography-font-family:var(
|
|
93
|
-
--rs-font-family-ui,
|
|
94
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
95
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
96
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
97
|
-
);
|
|
98
|
-
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
99
|
-
--_rs-typography-font-weight:var(
|
|
100
|
-
--rs-font-weight-regular,
|
|
101
|
-
400
|
|
102
|
-
);
|
|
103
|
-
--_rs-typography-line-height:var(
|
|
104
|
-
--rs-text-3-line-height,
|
|
105
|
-
20px
|
|
106
|
-
);
|
|
107
|
-
--_rs-typography-base-color:var(
|
|
108
|
-
--_rs-typography-hardness-color,
|
|
109
|
-
var(
|
|
110
|
-
--rs-color-average,
|
|
111
|
-
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)
|
|
112
|
-
)
|
|
113
|
-
);
|
|
114
|
-
--_rs-typography-text-auto-offset:8px;
|
|
115
|
-
--_rs-typography-ul-list-li-padding-left:28px;
|
|
116
|
-
--_rs-typography-ol-list-li-padding-left:21px;
|
|
117
|
-
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
118
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
119
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
120
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
121
|
-
}
|
|
122
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
123
|
-
--_rs-typography-letter-spacing:0.0045em;
|
|
124
|
-
--_rs-typography-text-transform:initial;
|
|
125
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
126
|
-
--_rs-typography-font-family:var(
|
|
127
|
-
--rs-font-family-ui,
|
|
128
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
129
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
130
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
131
|
-
);
|
|
132
|
-
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
133
|
-
--_rs-typography-font-weight:var(
|
|
134
|
-
--rs-font-weight-regular,
|
|
135
|
-
400
|
|
136
|
-
);
|
|
137
|
-
--_rs-typography-line-height:var(
|
|
138
|
-
--rs-text-3-line-height,
|
|
139
|
-
20px
|
|
140
|
-
);
|
|
141
|
-
--_rs-typography-base-color:var(
|
|
142
|
-
--_rs-typography-hardness-color,
|
|
143
|
-
var(
|
|
144
|
-
--rs-color-average,
|
|
145
|
-
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)
|
|
146
|
-
)
|
|
147
|
-
);
|
|
148
|
-
--_rs-typography-text-auto-offset:8px;
|
|
149
|
-
--_rs-typography-ul-list-li-padding-left:28px;
|
|
150
|
-
--_rs-typography-ol-list-li-padding-left:21px;
|
|
151
|
-
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
152
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
153
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
154
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
155
|
-
}
|
|
156
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
76
|
+
._sizeS_8w2392_15 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
157
77
|
--_rs-typography-letter-spacing:0.0045em;
|
|
158
78
|
--_rs-typography-text-transform:initial;
|
|
159
79
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -187,7 +107,10 @@
|
|
|
187
107
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
188
108
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
189
109
|
}
|
|
190
|
-
.
|
|
110
|
+
._sizeS_8w2392_15 [data-rs-internal='input__label'],
|
|
111
|
+
._sizeS_8w2392_15 [data-rs-internal='input__inner'],
|
|
112
|
+
._sizeS_8w2392_15 [data-rs-internal='input__inner']::placeholder,
|
|
113
|
+
._sizeS_8w2392_15 [data-rs-internal='input__suffix']{
|
|
191
114
|
--_rs-typography-letter-spacing:0.0045em;
|
|
192
115
|
--_rs-typography-text-transform:initial;
|
|
193
116
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -221,44 +144,7 @@
|
|
|
221
144
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
222
145
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
223
146
|
}
|
|
224
|
-
.
|
|
225
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__inner'],
|
|
226
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__inner']::placeholder,
|
|
227
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__suffix']{
|
|
228
|
-
--_rs-typography-letter-spacing:0.0045em;
|
|
229
|
-
--_rs-typography-text-transform:initial;
|
|
230
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
231
|
-
--_rs-typography-font-family:var(
|
|
232
|
-
--rs-font-family-ui,
|
|
233
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
234
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
235
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
236
|
-
);
|
|
237
|
-
--_rs-typography-font-size:var(--rs-text-3-font-size, 13px);
|
|
238
|
-
--_rs-typography-font-weight:var(
|
|
239
|
-
--rs-font-weight-regular,
|
|
240
|
-
400
|
|
241
|
-
);
|
|
242
|
-
--_rs-typography-line-height:var(
|
|
243
|
-
--rs-text-3-line-height,
|
|
244
|
-
20px
|
|
245
|
-
);
|
|
246
|
-
--_rs-typography-base-color:var(
|
|
247
|
-
--_rs-typography-hardness-color,
|
|
248
|
-
var(
|
|
249
|
-
--rs-color-average,
|
|
250
|
-
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)
|
|
251
|
-
)
|
|
252
|
-
);
|
|
253
|
-
--_rs-typography-text-auto-offset:8px;
|
|
254
|
-
--_rs-typography-ul-list-li-padding-left:28px;
|
|
255
|
-
--_rs-typography-ol-list-li-padding-left:21px;
|
|
256
|
-
--_rs-typography-list-li-margin-top-from-text:8px;
|
|
257
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
258
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
259
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
260
|
-
}
|
|
261
|
-
._sizeS_1rcx3a8_15 [data-rs-internal='input__bold-label']{
|
|
147
|
+
._sizeS_8w2392_15 [data-rs-internal='input__bold-label']{
|
|
262
148
|
--_rs-typography-letter-spacing:normal;
|
|
263
149
|
--_rs-typography-text-transform:initial;
|
|
264
150
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -289,7 +175,7 @@
|
|
|
289
175
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
290
176
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
291
177
|
}
|
|
292
|
-
.
|
|
178
|
+
._sizeS_8w2392_15 [data-rs-internal='input__note']{
|
|
293
179
|
--_rs-typography-letter-spacing:0.0045em;
|
|
294
180
|
--_rs-typography-text-transform:initial;
|
|
295
181
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -323,7 +209,7 @@
|
|
|
323
209
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
324
210
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
325
211
|
}
|
|
326
|
-
.
|
|
212
|
+
._sizeS_8w2392_15 [data-rs-internal='input__error-message']{
|
|
327
213
|
--_rs-typography-letter-spacing:normal;
|
|
328
214
|
--_rs-typography-text-transform:initial;
|
|
329
215
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -354,56 +240,17 @@
|
|
|
354
240
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
355
241
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
356
242
|
}
|
|
357
|
-
.
|
|
243
|
+
._sizeS_8w2392_15 [data-rs-internal='input__error-icon']:not(html){
|
|
358
244
|
--_rs-icons-height:20px;
|
|
359
245
|
}
|
|
360
|
-
.
|
|
246
|
+
._sizeM_8w2392_18{
|
|
361
247
|
--_rs-input-vertical-padding:8px;
|
|
362
248
|
--_rs-input-horizontal-padding:8px;
|
|
363
249
|
--_rs-input-parts-offset:8px;
|
|
364
250
|
--_rs-input-icon-offset:8px;
|
|
365
251
|
--_rs-input-icon-size:24px;
|
|
366
252
|
}
|
|
367
|
-
.
|
|
368
|
-
--_rs-typography-letter-spacing:0.0015em;
|
|
369
|
-
--_rs-typography-text-transform:initial;
|
|
370
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
371
|
-
--_rs-typography-font-family:var(
|
|
372
|
-
--rs-font-family-ui,
|
|
373
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
374
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
375
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
376
|
-
);
|
|
377
|
-
--_rs-typography-font-size:var(--rs-text-2-font-size, 16px);
|
|
378
|
-
--_rs-typography-font-weight:var(
|
|
379
|
-
--rs-font-weight-regular,
|
|
380
|
-
400
|
|
381
|
-
);
|
|
382
|
-
--_rs-typography-line-height:var(
|
|
383
|
-
--rs-text-2-line-height,
|
|
384
|
-
24px
|
|
385
|
-
);
|
|
386
|
-
--_rs-typography-base-color:var(
|
|
387
|
-
--_rs-typography-hardness-color,
|
|
388
|
-
var(
|
|
389
|
-
--rs-color-average,
|
|
390
|
-
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)
|
|
391
|
-
)
|
|
392
|
-
);
|
|
393
|
-
--_rs-typography-text-auto-offset:16px;
|
|
394
|
-
--_rs-typography-ul-list-li-padding-left:22px;
|
|
395
|
-
--_rs-typography-ol-list-li-padding-left:26px;
|
|
396
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
397
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
398
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
399
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
400
|
-
}
|
|
401
|
-
@media screen and (max-width: 640px){
|
|
402
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
403
|
-
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
253
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
407
254
|
--_rs-typography-letter-spacing:0.0015em;
|
|
408
255
|
--_rs-typography-text-transform:initial;
|
|
409
256
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -438,11 +285,14 @@
|
|
|
438
285
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
439
286
|
}
|
|
440
287
|
@media screen and (max-width: 640px){
|
|
441
|
-
.
|
|
288
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
442
289
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
443
290
|
}
|
|
444
291
|
}
|
|
445
|
-
.
|
|
292
|
+
._sizeM_8w2392_18 [data-rs-internal='input__label'],
|
|
293
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner'],
|
|
294
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner']::placeholder,
|
|
295
|
+
._sizeM_8w2392_18 [data-rs-internal='input__suffix']{
|
|
446
296
|
--_rs-typography-letter-spacing:0.0015em;
|
|
447
297
|
--_rs-typography-text-transform:initial;
|
|
448
298
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -477,95 +327,14 @@
|
|
|
477
327
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
478
328
|
}
|
|
479
329
|
@media screen and (max-width: 640px){
|
|
480
|
-
.
|
|
330
|
+
._sizeM_8w2392_18 [data-rs-internal='input__label'],
|
|
331
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner'],
|
|
332
|
+
._sizeM_8w2392_18 [data-rs-internal='input__inner']::placeholder,
|
|
333
|
+
._sizeM_8w2392_18 [data-rs-internal='input__suffix']{
|
|
481
334
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
482
335
|
}
|
|
483
336
|
}
|
|
484
|
-
.
|
|
485
|
-
--_rs-typography-letter-spacing:0.0015em;
|
|
486
|
-
--_rs-typography-text-transform:initial;
|
|
487
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
488
|
-
--_rs-typography-font-family:var(
|
|
489
|
-
--rs-font-family-ui,
|
|
490
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
491
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
492
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
493
|
-
);
|
|
494
|
-
--_rs-typography-font-size:var(--rs-text-2-font-size, 16px);
|
|
495
|
-
--_rs-typography-font-weight:var(
|
|
496
|
-
--rs-font-weight-regular,
|
|
497
|
-
400
|
|
498
|
-
);
|
|
499
|
-
--_rs-typography-line-height:var(
|
|
500
|
-
--rs-text-2-line-height,
|
|
501
|
-
24px
|
|
502
|
-
);
|
|
503
|
-
--_rs-typography-base-color:var(
|
|
504
|
-
--_rs-typography-hardness-color,
|
|
505
|
-
var(
|
|
506
|
-
--rs-color-average,
|
|
507
|
-
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)
|
|
508
|
-
)
|
|
509
|
-
);
|
|
510
|
-
--_rs-typography-text-auto-offset:16px;
|
|
511
|
-
--_rs-typography-ul-list-li-padding-left:22px;
|
|
512
|
-
--_rs-typography-ol-list-li-padding-left:26px;
|
|
513
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
514
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
515
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
516
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
517
|
-
}
|
|
518
|
-
@media screen and (max-width: 640px){
|
|
519
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
520
|
-
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__label'],
|
|
524
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner'],
|
|
525
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner']::placeholder,
|
|
526
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__suffix']{
|
|
527
|
-
--_rs-typography-letter-spacing:0.0015em;
|
|
528
|
-
--_rs-typography-text-transform:initial;
|
|
529
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
530
|
-
--_rs-typography-font-family:var(
|
|
531
|
-
--rs-font-family-ui,
|
|
532
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
533
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
534
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
535
|
-
);
|
|
536
|
-
--_rs-typography-font-size:var(--rs-text-2-font-size, 16px);
|
|
537
|
-
--_rs-typography-font-weight:var(
|
|
538
|
-
--rs-font-weight-regular,
|
|
539
|
-
400
|
|
540
|
-
);
|
|
541
|
-
--_rs-typography-line-height:var(
|
|
542
|
-
--rs-text-2-line-height,
|
|
543
|
-
24px
|
|
544
|
-
);
|
|
545
|
-
--_rs-typography-base-color:var(
|
|
546
|
-
--_rs-typography-hardness-color,
|
|
547
|
-
var(
|
|
548
|
-
--rs-color-average,
|
|
549
|
-
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)
|
|
550
|
-
)
|
|
551
|
-
);
|
|
552
|
-
--_rs-typography-text-auto-offset:16px;
|
|
553
|
-
--_rs-typography-ul-list-li-padding-left:22px;
|
|
554
|
-
--_rs-typography-ol-list-li-padding-left:26px;
|
|
555
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
556
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
557
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
558
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
559
|
-
}
|
|
560
|
-
@media screen and (max-width: 640px){
|
|
561
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__label'],
|
|
562
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner'],
|
|
563
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__inner']::placeholder,
|
|
564
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__suffix']{
|
|
565
|
-
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
._sizeM_1rcx3a8_18 [data-rs-internal='input__bold-label']{
|
|
337
|
+
._sizeM_8w2392_18 [data-rs-internal='input__bold-label']{
|
|
569
338
|
--_rs-typography-letter-spacing:normal;
|
|
570
339
|
--_rs-typography-text-transform:initial;
|
|
571
340
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -596,7 +365,7 @@
|
|
|
596
365
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
597
366
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
598
367
|
}
|
|
599
|
-
.
|
|
368
|
+
._sizeM_8w2392_18 [data-rs-internal='input__note']{
|
|
600
369
|
--_rs-typography-letter-spacing:0.0045em;
|
|
601
370
|
--_rs-typography-text-transform:initial;
|
|
602
371
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -630,7 +399,7 @@
|
|
|
630
399
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
631
400
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
632
401
|
}
|
|
633
|
-
.
|
|
402
|
+
._sizeM_8w2392_18 [data-rs-internal='input__error-message']{
|
|
634
403
|
--_rs-typography-letter-spacing:normal;
|
|
635
404
|
--_rs-typography-text-transform:initial;
|
|
636
405
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -661,134 +430,17 @@
|
|
|
661
430
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
662
431
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
663
432
|
}
|
|
664
|
-
.
|
|
433
|
+
._sizeM_8w2392_18 [data-rs-internal='input__error-icon']:not(html){
|
|
665
434
|
--_rs-icons-height:20px;
|
|
666
435
|
}
|
|
667
|
-
.
|
|
436
|
+
._sizeL_8w2392_21{
|
|
668
437
|
--_rs-input-vertical-padding:12px;
|
|
669
438
|
--_rs-input-horizontal-padding:16px;
|
|
670
439
|
--_rs-input-parts-offset:8px;
|
|
671
440
|
--_rs-input-icon-offset:16px;
|
|
672
441
|
--_rs-input-icon-size:28px;
|
|
673
442
|
}
|
|
674
|
-
.
|
|
675
|
-
--_rs-typography-letter-spacing:normal;
|
|
676
|
-
--_rs-typography-text-transform:initial;
|
|
677
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
678
|
-
--_rs-typography-font-family:var(
|
|
679
|
-
--rs-font-family-ui,
|
|
680
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
681
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
682
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
683
|
-
);
|
|
684
|
-
--_rs-typography-font-size:var(--rs-text-1-font-size, 20px);
|
|
685
|
-
--_rs-typography-font-weight:var(
|
|
686
|
-
--rs-font-weight-regular,
|
|
687
|
-
400
|
|
688
|
-
);
|
|
689
|
-
--_rs-typography-line-height:var(
|
|
690
|
-
--rs-text-1-line-height,
|
|
691
|
-
28px
|
|
692
|
-
);
|
|
693
|
-
--_rs-typography-base-color:var(
|
|
694
|
-
--_rs-typography-hardness-color,
|
|
695
|
-
var(
|
|
696
|
-
--rs-color-average,
|
|
697
|
-
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)
|
|
698
|
-
)
|
|
699
|
-
);
|
|
700
|
-
--_rs-typography-text-auto-offset:32px;
|
|
701
|
-
--_rs-typography-ul-list-li-padding-left:26px;
|
|
702
|
-
--_rs-typography-ol-list-li-padding-left:32px;
|
|
703
|
-
--_rs-typography-list-li-margin-top-from-text:24px;
|
|
704
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
705
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
706
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
707
|
-
}
|
|
708
|
-
@media screen and (max-width: 640px){
|
|
709
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']::-webkit-input-placeholder{
|
|
710
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
711
|
-
}
|
|
712
|
-
}
|
|
713
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
714
|
-
--_rs-typography-letter-spacing:normal;
|
|
715
|
-
--_rs-typography-text-transform:initial;
|
|
716
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
717
|
-
--_rs-typography-font-family:var(
|
|
718
|
-
--rs-font-family-ui,
|
|
719
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
720
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
721
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
722
|
-
);
|
|
723
|
-
--_rs-typography-font-size:var(--rs-text-1-font-size, 20px);
|
|
724
|
-
--_rs-typography-font-weight:var(
|
|
725
|
-
--rs-font-weight-regular,
|
|
726
|
-
400
|
|
727
|
-
);
|
|
728
|
-
--_rs-typography-line-height:var(
|
|
729
|
-
--rs-text-1-line-height,
|
|
730
|
-
28px
|
|
731
|
-
);
|
|
732
|
-
--_rs-typography-base-color:var(
|
|
733
|
-
--_rs-typography-hardness-color,
|
|
734
|
-
var(
|
|
735
|
-
--rs-color-average,
|
|
736
|
-
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)
|
|
737
|
-
)
|
|
738
|
-
);
|
|
739
|
-
--_rs-typography-text-auto-offset:32px;
|
|
740
|
-
--_rs-typography-ul-list-li-padding-left:26px;
|
|
741
|
-
--_rs-typography-ol-list-li-padding-left:32px;
|
|
742
|
-
--_rs-typography-list-li-margin-top-from-text:24px;
|
|
743
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
744
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
745
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
746
|
-
}
|
|
747
|
-
@media screen and (max-width: 640px){
|
|
748
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
749
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
753
|
-
--_rs-typography-letter-spacing:normal;
|
|
754
|
-
--_rs-typography-text-transform:initial;
|
|
755
|
-
--_rs-typography-font-variant-numeric:initial;
|
|
756
|
-
--_rs-typography-font-family:var(
|
|
757
|
-
--rs-font-family-ui,
|
|
758
|
-
var(--rs-font-family-jb-sans, 'JetBrains Sans', Inter, system-ui, -apple-system,
|
|
759
|
-
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
760
|
-
'Droid Sans', 'Helvetica Neue', Arial, sans-serif)
|
|
761
|
-
);
|
|
762
|
-
--_rs-typography-font-size:var(--rs-text-1-font-size, 20px);
|
|
763
|
-
--_rs-typography-font-weight:var(
|
|
764
|
-
--rs-font-weight-regular,
|
|
765
|
-
400
|
|
766
|
-
);
|
|
767
|
-
--_rs-typography-line-height:var(
|
|
768
|
-
--rs-text-1-line-height,
|
|
769
|
-
28px
|
|
770
|
-
);
|
|
771
|
-
--_rs-typography-base-color:var(
|
|
772
|
-
--_rs-typography-hardness-color,
|
|
773
|
-
var(
|
|
774
|
-
--rs-color-average,
|
|
775
|
-
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)
|
|
776
|
-
)
|
|
777
|
-
);
|
|
778
|
-
--_rs-typography-text-auto-offset:32px;
|
|
779
|
-
--_rs-typography-ul-list-li-padding-left:26px;
|
|
780
|
-
--_rs-typography-ol-list-li-padding-left:32px;
|
|
781
|
-
--_rs-typography-list-li-margin-top-from-text:24px;
|
|
782
|
-
--_rs-typography-link-standalone-border-offset-from-text-base:1.15em;
|
|
783
|
-
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
784
|
-
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
785
|
-
}
|
|
786
|
-
@media screen and (max-width: 640px){
|
|
787
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']:-ms-input-placeholder{
|
|
788
|
-
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
789
|
-
}
|
|
790
|
-
}
|
|
791
|
-
._sizeL_1rcx3a8_21 [data-rs-internal='input__inner']::-ms-input-placeholder{
|
|
443
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
792
444
|
--_rs-typography-letter-spacing:normal;
|
|
793
445
|
--_rs-typography-text-transform:initial;
|
|
794
446
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -823,14 +475,14 @@
|
|
|
823
475
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
824
476
|
}
|
|
825
477
|
@media screen and (max-width: 640px){
|
|
826
|
-
.
|
|
478
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner']::-moz-placeholder{
|
|
827
479
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
828
480
|
}
|
|
829
481
|
}
|
|
830
|
-
.
|
|
831
|
-
.
|
|
832
|
-
.
|
|
833
|
-
.
|
|
482
|
+
._sizeL_8w2392_21 [data-rs-internal='input__label'],
|
|
483
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner'],
|
|
484
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner']::placeholder,
|
|
485
|
+
._sizeL_8w2392_21 [data-rs-internal='input__suffix']{
|
|
834
486
|
--_rs-typography-letter-spacing:normal;
|
|
835
487
|
--_rs-typography-text-transform:initial;
|
|
836
488
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -865,14 +517,14 @@
|
|
|
865
517
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
866
518
|
}
|
|
867
519
|
@media screen and (max-width: 640px){
|
|
868
|
-
.
|
|
869
|
-
.
|
|
870
|
-
.
|
|
871
|
-
.
|
|
520
|
+
._sizeL_8w2392_21 [data-rs-internal='input__label'],
|
|
521
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner'],
|
|
522
|
+
._sizeL_8w2392_21 [data-rs-internal='input__inner']::placeholder,
|
|
523
|
+
._sizeL_8w2392_21 [data-rs-internal='input__suffix']{
|
|
872
524
|
--_rs-typography-list-li-margin-top-from-text:16px;
|
|
873
525
|
}
|
|
874
526
|
}
|
|
875
|
-
.
|
|
527
|
+
._sizeL_8w2392_21 [data-rs-internal='input__bold-label']{
|
|
876
528
|
--_rs-typography-letter-spacing:normal;
|
|
877
529
|
--_rs-typography-text-transform:initial;
|
|
878
530
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -903,7 +555,7 @@
|
|
|
903
555
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
904
556
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
905
557
|
}
|
|
906
|
-
.
|
|
558
|
+
._sizeL_8w2392_21 [data-rs-internal='input__note']{
|
|
907
559
|
--_rs-typography-letter-spacing:0.0015em;
|
|
908
560
|
--_rs-typography-text-transform:initial;
|
|
909
561
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -938,11 +590,11 @@
|
|
|
938
590
|
--_rs-typography-link-border-bottom-width-from-text:1px;
|
|
939
591
|
}
|
|
940
592
|
@media screen and (max-width: 640px){
|
|
941
|
-
.
|
|
593
|
+
._sizeL_8w2392_21 [data-rs-internal='input__note']{
|
|
942
594
|
--_rs-typography-list-li-margin-top-from-text:12px;
|
|
943
595
|
}
|
|
944
596
|
}
|
|
945
|
-
.
|
|
597
|
+
._sizeL_8w2392_21 [data-rs-internal='input__error-message']{
|
|
946
598
|
--_rs-typography-letter-spacing:normal;
|
|
947
599
|
--_rs-typography-text-transform:initial;
|
|
948
600
|
--_rs-typography-font-variant-numeric:initial;
|
|
@@ -973,10 +625,10 @@
|
|
|
973
625
|
--_rs-typography-link-external-standalone-border-offset-from-text-base:1.02em;
|
|
974
626
|
--_rs-typography-link-border-bottom-width-from-text:2px;
|
|
975
627
|
}
|
|
976
|
-
.
|
|
628
|
+
._sizeL_8w2392_21 [data-rs-internal='input__error-icon']:not(html){
|
|
977
629
|
--_rs-icons-height:24px;
|
|
978
630
|
}
|
|
979
|
-
.
|
|
631
|
+
._classic_8w2392_25{
|
|
980
632
|
--_rs-input-focused-enabled-wrapper-border-width:2px;
|
|
981
633
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
982
634
|
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)
|
|
@@ -1026,7 +678,7 @@
|
|
|
1026
678
|
0.5
|
|
1027
679
|
);
|
|
1028
680
|
}
|
|
1029
|
-
.
|
|
681
|
+
._rock_8w2392_28{
|
|
1030
682
|
--_rs-input-focused-enabled-wrapper-border-width:0px;
|
|
1031
683
|
--_rs-input-focused-enabled-wrapper-background:rgb(
|
|
1032
684
|
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)
|
|
@@ -1058,7 +710,7 @@
|
|
|
1058
710
|
);
|
|
1059
711
|
--_rs-input-error-focused-suffix-color:rgba(255,255,255,0.7);
|
|
1060
712
|
}
|
|
1061
|
-
.
|
|
713
|
+
._container_8w2392_32{
|
|
1062
714
|
--_rs-theme-dark:var(
|
|
1063
715
|
--_rs-internal-force-theme-dark-consult-rescui-before-using,
|
|
1064
716
|
var(--rs-theme-dark, 0)
|
|
@@ -1068,7 +720,7 @@
|
|
|
1068
720
|
--_rs-theme-light-coefficient:calc(1 - var(--_rs-theme-dark-coefficient));
|
|
1069
721
|
}
|
|
1070
722
|
@supports (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
1071
|
-
.
|
|
723
|
+
._container_8w2392_32{
|
|
1072
724
|
--_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)));
|
|
1073
725
|
--_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)));
|
|
1074
726
|
--_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)));
|
|
@@ -1077,7 +729,7 @@
|
|
|
1077
729
|
}
|
|
1078
730
|
}
|
|
1079
731
|
@supports not (color: color-mix(in srgb, #fff 50%, #000 50%)){
|
|
1080
|
-
.
|
|
732
|
+
._container_8w2392_32{
|
|
1081
733
|
--_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);
|
|
1082
734
|
--_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));
|
|
1083
735
|
--_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));
|
|
@@ -1085,17 +737,13 @@
|
|
|
1085
737
|
--_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));
|
|
1086
738
|
}
|
|
1087
739
|
}
|
|
1088
|
-
.
|
|
740
|
+
._container_8w2392_32 {
|
|
1089
741
|
|
|
1090
742
|
display:block;
|
|
1091
743
|
}
|
|
1092
|
-
.
|
|
744
|
+
._wrapper_8w2392_39{
|
|
1093
745
|
--_rs-input-border-width:1px;
|
|
1094
746
|
|
|
1095
|
-
display:-webkit-box;
|
|
1096
|
-
|
|
1097
|
-
display:-ms-flexbox;
|
|
1098
|
-
|
|
1099
747
|
display:flex;
|
|
1100
748
|
|
|
1101
749
|
border:var(--_rs-input-border-width) solid 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);
|
|
@@ -1104,27 +752,27 @@
|
|
|
1104
752
|
|
|
1105
753
|
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));
|
|
1106
754
|
}
|
|
1107
|
-
.
|
|
755
|
+
._disabled_8w2392_51 ._wrapper_8w2392_39{
|
|
1108
756
|
cursor:auto;
|
|
1109
757
|
|
|
1110
758
|
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));
|
|
1111
759
|
}
|
|
1112
|
-
.
|
|
760
|
+
._error_8w2392_57 ._wrapper_8w2392_39{
|
|
1113
761
|
--_rs-input-border-width:2px;
|
|
1114
762
|
|
|
1115
763
|
border-color:#F45C4A;
|
|
1116
764
|
}
|
|
1117
|
-
.
|
|
765
|
+
._enabled_8w2392_63._filled_8w2392_63 ._wrapper_8w2392_39{
|
|
1118
766
|
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);
|
|
1119
767
|
}
|
|
1120
768
|
@media (hover: hover){
|
|
1121
|
-
.
|
|
769
|
+
._enabled_8w2392_63:hover ._wrapper_8w2392_39{
|
|
1122
770
|
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);
|
|
1123
771
|
|
|
1124
772
|
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));
|
|
1125
773
|
}
|
|
1126
774
|
}
|
|
1127
|
-
.
|
|
775
|
+
._enabled_8w2392_63._focused_8w2392_75 ._wrapper_8w2392_39{
|
|
1128
776
|
--_rs-input-border-width:var(
|
|
1129
777
|
--_rs-input-focused-enabled-wrapper-border-width
|
|
1130
778
|
);
|
|
@@ -1134,33 +782,27 @@
|
|
|
1134
782
|
background-color:var(--_rs-input-focused-enabled-wrapper-background);
|
|
1135
783
|
}
|
|
1136
784
|
@media (hover: hover){
|
|
1137
|
-
.
|
|
785
|
+
._error_8w2392_57._enabled_8w2392_63:hover ._wrapper_8w2392_39{
|
|
1138
786
|
border-color:#F45C4A;
|
|
1139
787
|
}
|
|
1140
788
|
}
|
|
1141
|
-
.
|
|
1142
|
-
.
|
|
789
|
+
._error_8w2392_57._enabled_8w2392_63._focused_8w2392_75 ._wrapper_8w2392_39,
|
|
790
|
+
._error_8w2392_57._enabled_8w2392_63._filled_8w2392_63 ._wrapper_8w2392_39{
|
|
1143
791
|
border-color:#F45C4A;
|
|
1144
792
|
}
|
|
1145
|
-
.
|
|
793
|
+
._error_8w2392_57._enabled_8w2392_63._focused_8w2392_75 ._wrapper_8w2392_39{
|
|
1146
794
|
background:var(--_rs-input-error-focused-enabled-wrapper-background);
|
|
1147
795
|
}
|
|
1148
|
-
.
|
|
1149
|
-
display:-webkit-box;
|
|
1150
|
-
display:-ms-flexbox;
|
|
796
|
+
._field_8w2392_101{
|
|
1151
797
|
display:flex;
|
|
1152
798
|
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
-ms-flex:1 1 auto;
|
|
1156
|
-
|
|
1157
|
-
flex:1 1 auto;
|
|
799
|
+
flex:1 1 auto;
|
|
1158
800
|
|
|
1159
801
|
min-width:0;
|
|
1160
802
|
|
|
1161
803
|
padding:calc(var(--_rs-input-vertical-padding) - var(--_rs-input-border-width)) calc(var(--_rs-input-horizontal-padding) - var(--_rs-input-border-width));
|
|
1162
804
|
}
|
|
1163
|
-
.
|
|
805
|
+
._inner_8w2392_114{
|
|
1164
806
|
letter-spacing:var(
|
|
1165
807
|
--rs-text-base-letter-spacing,
|
|
1166
808
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1171,41 +813,34 @@
|
|
|
1171
813
|
font-weight:var(--_rs-typography-font-weight);
|
|
1172
814
|
line-height:var(--_rs-typography-line-height);
|
|
1173
815
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1174
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1175
816
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1176
817
|
}
|
|
1177
|
-
.
|
|
818
|
+
._inner_8w2392_114::-ms-clear{
|
|
1178
819
|
display:none;
|
|
1179
820
|
|
|
1180
821
|
width:0;
|
|
1181
822
|
height:0;
|
|
1182
823
|
}
|
|
1183
|
-
.
|
|
824
|
+
._dark_8w2392_11 ._inner_8w2392_114{
|
|
1184
825
|
color-scheme:dark;
|
|
1185
826
|
}
|
|
1186
827
|
@container style(--_rs-theme-dark-coefficient: 1){
|
|
1187
|
-
.
|
|
828
|
+
._inner_8w2392_114{
|
|
1188
829
|
color-scheme:dark
|
|
1189
830
|
}
|
|
1190
831
|
}
|
|
1191
832
|
@container style(--_rs-theme-dark-coefficient: 0){
|
|
1192
|
-
.
|
|
833
|
+
._inner_8w2392_114{
|
|
1193
834
|
color-scheme:light
|
|
1194
835
|
}
|
|
1195
836
|
}
|
|
1196
|
-
.
|
|
837
|
+
._inner_8w2392_114 {
|
|
1197
838
|
|
|
1198
839
|
display:block;
|
|
1199
840
|
|
|
1200
|
-
|
|
841
|
+
flex:1 1 0;
|
|
1201
842
|
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
flex:1 1 0;
|
|
1205
|
-
|
|
1206
|
-
-webkit-box-sizing:border-box;
|
|
1207
|
-
|
|
1208
|
-
box-sizing:border-box;
|
|
843
|
+
box-sizing:border-box;
|
|
1209
844
|
min-width:0;
|
|
1210
845
|
margin:0;
|
|
1211
846
|
padding:0;
|
|
@@ -1221,20 +856,20 @@
|
|
|
1221
856
|
-moz-appearance:none;
|
|
1222
857
|
appearance:none;
|
|
1223
858
|
}
|
|
1224
|
-
.
|
|
859
|
+
._inner_8w2392_114:focus{
|
|
1225
860
|
outline:none;
|
|
1226
861
|
}
|
|
1227
|
-
.
|
|
1228
|
-
.
|
|
862
|
+
._disabled_8w2392_51 ._inner_8w2392_114,
|
|
863
|
+
._inner_8w2392_114:disabled{
|
|
1229
864
|
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);
|
|
1230
865
|
}
|
|
1231
|
-
.
|
|
866
|
+
._focused_8w2392_75 ._inner_8w2392_114{
|
|
1232
867
|
color:var(--_rs-input-focused-inner-color);
|
|
1233
868
|
}
|
|
1234
|
-
.
|
|
869
|
+
._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114{
|
|
1235
870
|
color:var(--_rs-input-error-focused-inner-color);
|
|
1236
871
|
}
|
|
1237
|
-
.
|
|
872
|
+
._inner_8w2392_114::-moz-placeholder{
|
|
1238
873
|
letter-spacing:var(
|
|
1239
874
|
--rs-text-base-letter-spacing,
|
|
1240
875
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1245,19 +880,18 @@
|
|
|
1245
880
|
font-weight:var(--_rs-typography-font-weight);
|
|
1246
881
|
line-height:var(--_rs-typography-line-height);
|
|
1247
882
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1248
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1249
883
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1250
884
|
opacity:1;
|
|
1251
885
|
|
|
1252
886
|
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);
|
|
1253
887
|
}
|
|
1254
|
-
.
|
|
888
|
+
._focused_8w2392_75 ._inner_8w2392_114::-moz-placeholder{
|
|
1255
889
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1256
890
|
}
|
|
1257
|
-
.
|
|
891
|
+
._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114::-moz-placeholder{
|
|
1258
892
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1259
893
|
}
|
|
1260
|
-
.
|
|
894
|
+
._inner_8w2392_114::placeholder{
|
|
1261
895
|
letter-spacing:var(
|
|
1262
896
|
--rs-text-base-letter-spacing,
|
|
1263
897
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1268,132 +902,54 @@
|
|
|
1268
902
|
font-weight:var(--_rs-typography-font-weight);
|
|
1269
903
|
line-height:var(--_rs-typography-line-height);
|
|
1270
904
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1271
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1272
905
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1273
906
|
opacity:1;
|
|
1274
907
|
|
|
1275
908
|
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);
|
|
1276
909
|
}
|
|
1277
|
-
.
|
|
910
|
+
._focused_8w2392_75 ._inner_8w2392_114::placeholder{
|
|
1278
911
|
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1279
912
|
}
|
|
1280
|
-
.
|
|
913
|
+
._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114::placeholder{
|
|
1281
914
|
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1282
915
|
}
|
|
1283
|
-
.
|
|
1284
|
-
letter-spacing:var(
|
|
1285
|
-
--rs-text-base-letter-spacing,
|
|
1286
|
-
var(--_rs-typography-letter-spacing)
|
|
1287
|
-
);
|
|
1288
|
-
text-transform:var(--_rs-typography-text-transform);
|
|
1289
|
-
font-family:var(--_rs-typography-font-family);
|
|
1290
|
-
font-size:var(--_rs-typography-font-size);
|
|
1291
|
-
font-weight:var(--_rs-typography-font-weight);
|
|
1292
|
-
line-height:var(--_rs-typography-line-height);
|
|
1293
|
-
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1294
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1295
|
-
font-feature-settings:'kern', 'liga', 'calt';
|
|
1296
|
-
opacity:1;
|
|
1297
|
-
|
|
1298
|
-
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);
|
|
1299
|
-
}
|
|
1300
|
-
._focused_1rcx3a8_75 ._inner_1rcx3a8_114:-ms-input-placeholder{
|
|
1301
|
-
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1302
|
-
}
|
|
1303
|
-
._error_1rcx3a8_57._focused_1rcx3a8_75 ._inner_1rcx3a8_114:-ms-input-placeholder{
|
|
1304
|
-
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1305
|
-
}
|
|
1306
|
-
._inner_1rcx3a8_114::-ms-input-placeholder{
|
|
1307
|
-
letter-spacing:var(
|
|
1308
|
-
--rs-text-base-letter-spacing,
|
|
1309
|
-
var(--_rs-typography-letter-spacing)
|
|
1310
|
-
);
|
|
1311
|
-
text-transform:var(--_rs-typography-text-transform);
|
|
1312
|
-
font-family:var(--_rs-typography-font-family);
|
|
1313
|
-
font-size:var(--_rs-typography-font-size);
|
|
1314
|
-
font-weight:var(--_rs-typography-font-weight);
|
|
1315
|
-
line-height:var(--_rs-typography-line-height);
|
|
1316
|
-
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1317
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1318
|
-
font-feature-settings:'kern', 'liga', 'calt';
|
|
1319
|
-
opacity:1;
|
|
1320
|
-
|
|
1321
|
-
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);
|
|
1322
|
-
}
|
|
1323
|
-
._focused_1rcx3a8_75 ._inner_1rcx3a8_114::-ms-input-placeholder{
|
|
1324
|
-
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1325
|
-
}
|
|
1326
|
-
._error_1rcx3a8_57._focused_1rcx3a8_75 ._inner_1rcx3a8_114::-ms-input-placeholder{
|
|
1327
|
-
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1328
|
-
}
|
|
1329
|
-
._inner_1rcx3a8_114::placeholder{
|
|
1330
|
-
letter-spacing:var(
|
|
1331
|
-
--rs-text-base-letter-spacing,
|
|
1332
|
-
var(--_rs-typography-letter-spacing)
|
|
1333
|
-
);
|
|
1334
|
-
text-transform:var(--_rs-typography-text-transform);
|
|
1335
|
-
font-family:var(--_rs-typography-font-family);
|
|
1336
|
-
font-size:var(--_rs-typography-font-size);
|
|
1337
|
-
font-weight:var(--_rs-typography-font-weight);
|
|
1338
|
-
line-height:var(--_rs-typography-line-height);
|
|
1339
|
-
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1340
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1341
|
-
font-feature-settings:'kern', 'liga', 'calt';
|
|
1342
|
-
opacity:1;
|
|
1343
|
-
|
|
1344
|
-
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);
|
|
1345
|
-
}
|
|
1346
|
-
._focused_1rcx3a8_75 ._inner_1rcx3a8_114::placeholder{
|
|
1347
|
-
color:var(--_rs-input-focused-inner-placeholder-color);
|
|
1348
|
-
}
|
|
1349
|
-
._error_1rcx3a8_57._focused_1rcx3a8_75 ._inner_1rcx3a8_114::placeholder{
|
|
1350
|
-
color:var(--_rs-input-error-focused-inner-placeholder-color);
|
|
1351
|
-
}
|
|
1352
|
-
._inner_1rcx3a8_114:-moz-ui-invalid{
|
|
916
|
+
._inner_8w2392_114:-moz-ui-invalid{
|
|
1353
917
|
box-shadow:none;
|
|
1354
918
|
}
|
|
1355
|
-
.
|
|
919
|
+
._inner_8w2392_114:-moz-ui-invalid:-moz-focusring{
|
|
1356
920
|
box-shadow:none;
|
|
1357
921
|
}
|
|
1358
|
-
.
|
|
1359
|
-
.
|
|
1360
|
-
.
|
|
1361
|
-
.
|
|
922
|
+
._inner_8w2392_114:-webkit-autofill,
|
|
923
|
+
._inner_8w2392_114:-webkit-autofill:hover,
|
|
924
|
+
._inner_8w2392_114:-webkit-autofill:active,
|
|
925
|
+
._inner_8w2392_114:-webkit-autofill:focus{
|
|
1362
926
|
-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;
|
|
1363
927
|
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
transition-delay:9999s;
|
|
928
|
+
transition-delay:9999s;
|
|
1367
929
|
-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));
|
|
1368
930
|
}
|
|
1369
|
-
.
|
|
931
|
+
._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill, ._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:hover, ._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:active, ._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:focus{
|
|
1370
932
|
-webkit-box-shadow:0 0 0 1000px var(--_rs-input-focused-autofill-box-shadow) inset;
|
|
1371
933
|
-webkit-text-fill-color:var(--_rs-input-focused-autofill-color);
|
|
1372
934
|
}
|
|
1373
|
-
.
|
|
935
|
+
._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill, ._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:hover, ._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:active, ._error_8w2392_57._focused_8w2392_75 ._inner_8w2392_114:-webkit-autofill:focus{
|
|
1374
936
|
-webkit-box-shadow:0 0 0 1000px var(--_rs-input-error-focused-autofill-box-shadow) inset;
|
|
1375
937
|
-webkit-text-fill-color:var(--_rs-input-error-focused-autofill-color);
|
|
1376
938
|
}
|
|
1377
|
-
.
|
|
939
|
+
._offSystemMicroelements_8w2392_229 ._inner_8w2392_114{
|
|
1378
940
|
-moz-appearance:textfield;
|
|
1379
941
|
}
|
|
1380
|
-
.
|
|
1381
|
-
.
|
|
942
|
+
._offSystemMicroelements_8w2392_229 ._inner_8w2392_114::-webkit-outer-spin-button,
|
|
943
|
+
._offSystemMicroelements_8w2392_229 ._inner_8w2392_114::-webkit-inner-spin-button{
|
|
1382
944
|
margin:0;
|
|
1383
945
|
-webkit-appearance:none;
|
|
1384
946
|
appearance:none;
|
|
1385
947
|
}
|
|
1386
|
-
.
|
|
948
|
+
._iconWrapper_8w2392_239{
|
|
1387
949
|
--_rs-input-icon-overlap:calc(var(--_rs-input-vertical-padding) - var(--_rs-input-border-width));
|
|
1388
950
|
|
|
1389
|
-
display:-webkit-inline-box;
|
|
1390
|
-
|
|
1391
|
-
display:-ms-inline-flexbox;
|
|
1392
|
-
|
|
1393
951
|
display:inline-flex;
|
|
1394
|
-
|
|
1395
|
-
-ms-flex:0 0 auto;
|
|
1396
|
-
flex:0 0 auto;
|
|
952
|
+
flex:0 0 auto;
|
|
1397
953
|
|
|
1398
954
|
margin-top:calc(var(--_rs-input-icon-overlap)*-1);
|
|
1399
955
|
margin-bottom:calc(var(--_rs-input-icon-overlap)*-1);
|
|
@@ -1402,15 +958,15 @@
|
|
|
1402
958
|
|
|
1403
959
|
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);
|
|
1404
960
|
}
|
|
1405
|
-
.
|
|
961
|
+
._iconWrapper_8w2392_239._action_8w2392_254{
|
|
1406
962
|
position:relative;
|
|
1407
963
|
|
|
1408
964
|
cursor:pointer;
|
|
1409
965
|
}
|
|
1410
|
-
.
|
|
966
|
+
._iconWrapper_8w2392_239._action_8w2392_254:focus{
|
|
1411
967
|
outline:none;
|
|
1412
968
|
}
|
|
1413
|
-
.
|
|
969
|
+
._iconWrapper_8w2392_239._action_8w2392_254::before{
|
|
1414
970
|
position:absolute;
|
|
1415
971
|
top:-4px;
|
|
1416
972
|
right:-4px;
|
|
@@ -1425,56 +981,56 @@
|
|
|
1425
981
|
content:'';
|
|
1426
982
|
pointer-events:none;
|
|
1427
983
|
}
|
|
1428
|
-
.
|
|
984
|
+
._iconWrapper_8w2392_239._action_8w2392_254:focus[data-focus-method='key']::before{
|
|
1429
985
|
display:block;
|
|
1430
986
|
}
|
|
1431
|
-
.
|
|
987
|
+
._disabled_8w2392_51 ._iconWrapper_8w2392_239{
|
|
1432
988
|
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);
|
|
1433
989
|
}
|
|
1434
|
-
.
|
|
990
|
+
._disabled_8w2392_51 ._iconWrapper_8w2392_239._action_8w2392_254{
|
|
1435
991
|
pointer-events:none;
|
|
1436
992
|
}
|
|
1437
|
-
.
|
|
993
|
+
._iconWrapper_8w2392_239._right_8w2392_292{
|
|
1438
994
|
margin-left:var(--_rs-input-icon-offset);
|
|
1439
995
|
}
|
|
1440
|
-
.
|
|
996
|
+
._iconWrapper_8w2392_239._left_8w2392_296{
|
|
1441
997
|
margin-right:var(--_rs-input-icon-offset);
|
|
1442
998
|
}
|
|
1443
|
-
.
|
|
999
|
+
._focused_8w2392_75 ._iconWrapper_8w2392_239{
|
|
1444
1000
|
color:var(--_rs-input-focused-icon-color);
|
|
1445
1001
|
}
|
|
1446
|
-
.
|
|
1002
|
+
._error_8w2392_57._focused_8w2392_75 ._iconWrapper_8w2392_239{
|
|
1447
1003
|
color:var(--_rs-input-error-focused-icon-color);
|
|
1448
1004
|
}
|
|
1449
1005
|
@media (hover: hover){
|
|
1450
|
-
.
|
|
1006
|
+
._enabled_8w2392_63 ._iconWrapper_8w2392_239._action_8w2392_254:hover{
|
|
1451
1007
|
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));
|
|
1452
1008
|
}
|
|
1453
1009
|
|
|
1454
|
-
.
|
|
1010
|
+
._enabled_8w2392_63._focused_8w2392_75 ._iconWrapper_8w2392_239._action_8w2392_254:hover{
|
|
1455
1011
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1456
1012
|
}
|
|
1457
1013
|
|
|
1458
|
-
.
|
|
1014
|
+
._enabled_8w2392_63._error_8w2392_57._focused_8w2392_75 ._iconWrapper_8w2392_239._action_8w2392_254:hover{
|
|
1459
1015
|
color:var(--_rs-input-error-focused-icon-accent-color);
|
|
1460
1016
|
}
|
|
1461
1017
|
}
|
|
1462
|
-
.
|
|
1018
|
+
._enabled_8w2392_63 ._iconWrapper_8w2392_239._action_8w2392_254:focus[data-focus-method='key']{
|
|
1463
1019
|
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));
|
|
1464
1020
|
}
|
|
1465
|
-
.
|
|
1021
|
+
._enabled_8w2392_63._focused_8w2392_75 ._iconWrapper_8w2392_239._action_8w2392_254:focus[data-focus-method='key']{
|
|
1466
1022
|
color:var(--_rs-input-focused-icon-accent-color);
|
|
1467
1023
|
}
|
|
1468
|
-
.
|
|
1024
|
+
._enabled_8w2392_63._error_8w2392_57._focused_8w2392_75 ._iconWrapper_8w2392_239._action_8w2392_254:focus[data-focus-method='key']{
|
|
1469
1025
|
color:var(--_rs-input-error-focused-icon-accent-color);
|
|
1470
1026
|
}
|
|
1471
|
-
.
|
|
1027
|
+
._iconWrapper_8w2392_239 ._icon_8w2392_239{
|
|
1472
1028
|
fill:currentColor;
|
|
1473
1029
|
|
|
1474
1030
|
width:auto;
|
|
1475
1031
|
height:var(--_rs-input-icon-size);
|
|
1476
1032
|
}
|
|
1477
|
-
.
|
|
1033
|
+
._divider_8w2392_342{
|
|
1478
1034
|
display:block;
|
|
1479
1035
|
|
|
1480
1036
|
width:1px;
|
|
@@ -1483,10 +1039,10 @@
|
|
|
1483
1039
|
|
|
1484
1040
|
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);
|
|
1485
1041
|
}
|
|
1486
|
-
.
|
|
1042
|
+
._focused_8w2392_75 ._divider_8w2392_342{
|
|
1487
1043
|
background:var(--_rs-input-focused-divider-background);
|
|
1488
1044
|
}
|
|
1489
|
-
.
|
|
1045
|
+
._suffix_8w2392_356{
|
|
1490
1046
|
letter-spacing:var(
|
|
1491
1047
|
--rs-text-base-letter-spacing,
|
|
1492
1048
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1497,26 +1053,21 @@
|
|
|
1497
1053
|
font-weight:var(--_rs-typography-font-weight);
|
|
1498
1054
|
line-height:var(--_rs-typography-line-height);
|
|
1499
1055
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1500
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1501
1056
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1502
1057
|
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
-ms-flex:0 0 auto;
|
|
1506
|
-
|
|
1507
|
-
flex:0 0 auto;
|
|
1058
|
+
flex:0 0 auto;
|
|
1508
1059
|
|
|
1509
1060
|
padding:calc(var(--_rs-input-vertical-padding) - var(--_rs-input-border-width)) calc(var(--_rs-input-horizontal-padding) - var(--_rs-input-border-width));
|
|
1510
1061
|
|
|
1511
1062
|
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);
|
|
1512
1063
|
}
|
|
1513
|
-
.
|
|
1064
|
+
._focused_8w2392_75 ._suffix_8w2392_356{
|
|
1514
1065
|
color:var(--_rs-input-focused-suffix-color);
|
|
1515
1066
|
}
|
|
1516
|
-
.
|
|
1067
|
+
._error_8w2392_57._focused_8w2392_75 ._suffix_8w2392_356{
|
|
1517
1068
|
color:var(--_rs-input-error-focused-suffix-color);
|
|
1518
1069
|
}
|
|
1519
|
-
.
|
|
1070
|
+
._errorMessage_8w2392_376{
|
|
1520
1071
|
letter-spacing:var(
|
|
1521
1072
|
--rs-text-base-letter-spacing,
|
|
1522
1073
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1527,32 +1078,23 @@
|
|
|
1527
1078
|
font-weight:var(--_rs-typography-font-weight);
|
|
1528
1079
|
line-height:var(--_rs-typography-line-height);
|
|
1529
1080
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1530
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1531
1081
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1532
1082
|
|
|
1533
|
-
display:-webkit-box;
|
|
1534
|
-
|
|
1535
|
-
display:-ms-flexbox;
|
|
1536
|
-
|
|
1537
1083
|
display:flex;
|
|
1538
|
-
|
|
1539
|
-
flex-wrap:nowrap;
|
|
1084
|
+
flex-wrap:nowrap;
|
|
1540
1085
|
|
|
1541
1086
|
margin-top:var(--_rs-input-parts-offset);
|
|
1542
1087
|
|
|
1543
1088
|
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));
|
|
1544
|
-
-
|
|
1545
|
-
|
|
1546
|
-
column-gap:8px;
|
|
1089
|
+
-moz-column-gap:8px;
|
|
1090
|
+
column-gap:8px;
|
|
1547
1091
|
}
|
|
1548
|
-
.
|
|
1549
|
-
|
|
1550
|
-
-ms-flex:0 0 auto;
|
|
1551
|
-
flex:0 0 auto;
|
|
1092
|
+
._errorIcon_8w2392_388{
|
|
1093
|
+
flex:0 0 auto;
|
|
1552
1094
|
|
|
1553
1095
|
color:#F45C4A;
|
|
1554
1096
|
}
|
|
1555
|
-
.
|
|
1097
|
+
._note_8w2392_394{
|
|
1556
1098
|
letter-spacing:var(
|
|
1557
1099
|
--rs-text-base-letter-spacing,
|
|
1558
1100
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1563,7 +1105,6 @@
|
|
|
1563
1105
|
font-weight:var(--_rs-typography-font-weight);
|
|
1564
1106
|
line-height:var(--_rs-typography-line-height);
|
|
1565
1107
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1566
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1567
1108
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1568
1109
|
color:var(
|
|
1569
1110
|
--rs-color-average,
|
|
@@ -1572,13 +1113,13 @@
|
|
|
1572
1113
|
|
|
1573
1114
|
margin-top:var(--_rs-input-parts-offset);
|
|
1574
1115
|
}
|
|
1575
|
-
.
|
|
1116
|
+
._disabled_8w2392_51 ._note_8w2392_394{
|
|
1576
1117
|
color:var(
|
|
1577
1118
|
--rs-color-pale,
|
|
1578
1119
|
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)
|
|
1579
1120
|
);
|
|
1580
1121
|
}
|
|
1581
|
-
.
|
|
1122
|
+
._label_8w2392_405{
|
|
1582
1123
|
letter-spacing:var(
|
|
1583
1124
|
--rs-text-base-letter-spacing,
|
|
1584
1125
|
var(--_rs-typography-letter-spacing)
|
|
@@ -1589,7 +1130,6 @@
|
|
|
1589
1130
|
font-weight:var(--_rs-typography-font-weight);
|
|
1590
1131
|
line-height:var(--_rs-typography-line-height);
|
|
1591
1132
|
font-variant-numeric:var(--_rs-typography-font-variant-numeric);
|
|
1592
|
-
-webkit-font-feature-settings:'kern', 'liga', 'calt';
|
|
1593
1133
|
font-feature-settings:'kern', 'liga', 'calt';
|
|
1594
1134
|
color:var(
|
|
1595
1135
|
--rs-color-hard,
|
|
@@ -1598,7 +1138,7 @@
|
|
|
1598
1138
|
|
|
1599
1139
|
margin-bottom:var(--_rs-input-parts-offset);
|
|
1600
1140
|
}
|
|
1601
|
-
.
|
|
1141
|
+
._disabled_8w2392_51 ._label_8w2392_405{
|
|
1602
1142
|
color:var(
|
|
1603
1143
|
--rs-color-pale,
|
|
1604
1144
|
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)
|