@entur/form 5.4.15 → 5.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/BaseFormControl.d.ts +1 -1
- package/dist/Checkbox.d.ts +1 -1
- package/dist/FeedbackText.d.ts +1 -1
- package/dist/Fieldset.d.ts +1 -1
- package/dist/InputGroupContext.d.ts +1 -1
- package/dist/InputGroupLabel.d.ts +1 -1
- package/dist/Radio.d.ts +1 -1
- package/dist/RadioGroup.d.ts +1 -1
- package/dist/RadioGroupContext.d.ts +1 -1
- package/dist/RadioPanel.d.ts +1 -1
- package/dist/Switch.d.ts +1 -1
- package/dist/TextArea.d.ts +1 -1
- package/dist/TextField.d.ts +1 -1
- package/dist/TravelSwitch.d.ts +1 -1
- package/dist/VariantProvider.d.ts +2 -2
- package/dist/form.cjs.development.js +198 -278
- package/dist/form.cjs.development.js.map +1 -1
- package/dist/form.cjs.production.min.js +1 -1
- package/dist/form.cjs.production.min.js.map +1 -1
- package/dist/form.esm.js +198 -278
- package/dist/form.esm.js.map +1 -1
- package/dist/segmented-control/MultipleSegmentedControl.d.ts +1 -1
- package/dist/segmented-control/SegmentedChoice.d.ts +1 -1
- package/dist/segmented-control/SegmentedContext.d.ts +4 -4
- package/dist/segmented-control/SegmentedControl.d.ts +1 -1
- package/dist/styles.css +356 -387
- package/dist/variants.d.ts +1 -1
- package/package.json +7 -7
- package/CHANGELOG.md +0 -836
package/dist/styles.css
CHANGED
|
@@ -2,6 +2,248 @@
|
|
|
2
2
|
--eds-form: 1;
|
|
3
3
|
}/* DO NOT CHANGE!*/
|
|
4
4
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
5
|
+
.eds-form-control-wrapper {
|
|
6
|
+
--border-color: #181c56;
|
|
7
|
+
--border-color-hover: #aeb7e2;
|
|
8
|
+
align-items: center;
|
|
9
|
+
background-color: #ffffff;
|
|
10
|
+
border-radius: 0.25rem;
|
|
11
|
+
border: 0.125rem solid #d1d3d3;
|
|
12
|
+
box-shadow: 0 0 0 transparent;
|
|
13
|
+
color: #181c56;
|
|
14
|
+
display: flex;
|
|
15
|
+
position: relative;
|
|
16
|
+
width: 100%;
|
|
17
|
+
min-height: 3rem;
|
|
18
|
+
transition: border-color 0.1s ease-in-out;
|
|
19
|
+
--textarea-label-background: $colors-brand-white;
|
|
20
|
+
/*
|
|
21
|
+
Some input controls require a darker design while inside a contrast block.
|
|
22
|
+
These elements require the `--dark` modifier, even on the wrapper.
|
|
23
|
+
*/
|
|
24
|
+
}
|
|
25
|
+
.eds-contrast .eds-form-control-wrapper {
|
|
26
|
+
--border-color: #aeb7e2;
|
|
27
|
+
background-color: #ffffff;
|
|
28
|
+
border-color: #54568c;
|
|
29
|
+
}
|
|
30
|
+
.eds-form-control-wrapper[focus-within], .eds-form-control-wrapper:hover {
|
|
31
|
+
border-color: #181c56;
|
|
32
|
+
}
|
|
33
|
+
.eds-form-control-wrapper:focus-within, .eds-form-control-wrapper:hover {
|
|
34
|
+
border-color: #181c56;
|
|
35
|
+
}
|
|
36
|
+
.eds-contrast .eds-form-control-wrapper:hover {
|
|
37
|
+
border-color: #aeb7e2;
|
|
38
|
+
background: #ebebf1;
|
|
39
|
+
}
|
|
40
|
+
.eds-form-control-wrapper[focus-within] {
|
|
41
|
+
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
42
|
+
}
|
|
43
|
+
.eds-form-control-wrapper:focus-within {
|
|
44
|
+
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
45
|
+
}
|
|
46
|
+
.eds-contrast .eds-form-control-wrapper[focus-within] {
|
|
47
|
+
border-color: #181c56;
|
|
48
|
+
--border-color: #aeb7e2;
|
|
49
|
+
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
50
|
+
}
|
|
51
|
+
.eds-contrast .eds-form-control-wrapper:focus-within {
|
|
52
|
+
border-color: #181c56;
|
|
53
|
+
--border-color: #aeb7e2;
|
|
54
|
+
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
55
|
+
}
|
|
56
|
+
.eds-form-control-wrapper ::-moz-placeholder {
|
|
57
|
+
color: #656782;
|
|
58
|
+
}
|
|
59
|
+
.eds-form-control-wrapper ::placeholder {
|
|
60
|
+
color: #656782;
|
|
61
|
+
}
|
|
62
|
+
.eds-form-control-wrapper--disabled {
|
|
63
|
+
background-color: #e9e9e9;
|
|
64
|
+
color: #656782;
|
|
65
|
+
border-color: transparent;
|
|
66
|
+
pointer-events: none;
|
|
67
|
+
}
|
|
68
|
+
.eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
|
|
69
|
+
display: none;
|
|
70
|
+
}
|
|
71
|
+
.eds-contrast .eds-form-control-wrapper--disabled {
|
|
72
|
+
background: #292b6a;
|
|
73
|
+
border-color: transparent;
|
|
74
|
+
color: #8285a8;
|
|
75
|
+
}
|
|
76
|
+
.eds-form-control-wrapper--readonly {
|
|
77
|
+
pointer-events: none;
|
|
78
|
+
cursor: default;
|
|
79
|
+
border-color: transparent;
|
|
80
|
+
background: #f8f8f8;
|
|
81
|
+
--textarea-label-background: $colors-greys-grey90;
|
|
82
|
+
}
|
|
83
|
+
.eds-contrast .eds-form-control-wrapper--readonly {
|
|
84
|
+
background: #292b6a;
|
|
85
|
+
--textarea-label-background: $colors-blues-blue10;
|
|
86
|
+
color: #ffffff;
|
|
87
|
+
border-color: transparent;
|
|
88
|
+
}
|
|
89
|
+
.eds-form-control-wrapper--readonly::before, .eds-form-control-wrapper--readonly::after {
|
|
90
|
+
display: none;
|
|
91
|
+
}
|
|
92
|
+
.eds-form-control-wrapper--size-medium .eds-form-control,
|
|
93
|
+
.eds-form-control-wrapper--size-medium .eds-form-control__append,
|
|
94
|
+
.eds-form-control-wrapper--size-medium .eds-form-control__prepend {
|
|
95
|
+
font-size: 1rem;
|
|
96
|
+
line-height: 1rem;
|
|
97
|
+
}
|
|
98
|
+
.eds-form-control-wrapper--size-large {
|
|
99
|
+
min-height: 4rem;
|
|
100
|
+
padding: 0 0.5rem;
|
|
101
|
+
}
|
|
102
|
+
.eds-form-control-wrapper--size-large::before, .eds-form-control-wrapper--size-large::after {
|
|
103
|
+
border-width: 0.25rem;
|
|
104
|
+
}
|
|
105
|
+
.eds-form-control-wrapper--size-large .eds-form-control,
|
|
106
|
+
.eds-form-control-wrapper--size-large .eds-form-control__append,
|
|
107
|
+
.eds-form-control-wrapper--size-large .eds-form-control__prepend {
|
|
108
|
+
font-size: 1.5rem;
|
|
109
|
+
line-height: 2.25rem;
|
|
110
|
+
}
|
|
111
|
+
.eds-form-control-wrapper--success {
|
|
112
|
+
border-color: #1a8e60;
|
|
113
|
+
--border-color: #1a8e60;
|
|
114
|
+
}
|
|
115
|
+
.eds-form-control-wrapper--success:hover {
|
|
116
|
+
border-color: #5ac39a;
|
|
117
|
+
}
|
|
118
|
+
.eds-form-control-wrapper--success[focus-within] {
|
|
119
|
+
border-color: #1a8e60;
|
|
120
|
+
}
|
|
121
|
+
.eds-form-control-wrapper--success:focus-within {
|
|
122
|
+
border-color: #1a8e60;
|
|
123
|
+
}
|
|
124
|
+
.eds-contrast .eds-form-control-wrapper--success {
|
|
125
|
+
border-color: #5ac39a;
|
|
126
|
+
--border-color: #5ac39a;
|
|
127
|
+
}
|
|
128
|
+
.eds-contrast .eds-form-control-wrapper--success:hover {
|
|
129
|
+
border-color: #1a8e60;
|
|
130
|
+
}
|
|
131
|
+
.eds-contrast .eds-form-control-wrapper--success[focus-within] {
|
|
132
|
+
--border-color: #5ac39a;
|
|
133
|
+
border-color: #181c56;
|
|
134
|
+
}
|
|
135
|
+
.eds-contrast .eds-form-control-wrapper--success:focus-within {
|
|
136
|
+
--border-color: #5ac39a;
|
|
137
|
+
border-color: #181c56;
|
|
138
|
+
}
|
|
139
|
+
.eds-form-control-wrapper--error {
|
|
140
|
+
border-color: #d31b1b;
|
|
141
|
+
--border-color: #d31b1b;
|
|
142
|
+
}
|
|
143
|
+
.eds-form-control-wrapper--error:hover {
|
|
144
|
+
border-color: #ff9494;
|
|
145
|
+
}
|
|
146
|
+
.eds-form-control-wrapper--error[focus-within] {
|
|
147
|
+
border-color: #d31b1b;
|
|
148
|
+
}
|
|
149
|
+
.eds-form-control-wrapper--error:focus-within {
|
|
150
|
+
border-color: #d31b1b;
|
|
151
|
+
}
|
|
152
|
+
.eds-contrast .eds-form-control-wrapper--error {
|
|
153
|
+
border-color: #ff9494;
|
|
154
|
+
--border-color: #ff9494;
|
|
155
|
+
}
|
|
156
|
+
.eds-contrast .eds-form-control-wrapper--error:hover {
|
|
157
|
+
border-color: #d31b1b;
|
|
158
|
+
}
|
|
159
|
+
.eds-contrast .eds-form-control-wrapper--error[focus-within] {
|
|
160
|
+
border-color: #181c56;
|
|
161
|
+
--border-color: #ff9494;
|
|
162
|
+
}
|
|
163
|
+
.eds-contrast .eds-form-control-wrapper--error:focus-within {
|
|
164
|
+
border-color: #181c56;
|
|
165
|
+
--border-color: #ff9494;
|
|
166
|
+
}
|
|
167
|
+
.eds-contrast .eds-form-control-wrapper--dark {
|
|
168
|
+
background-color: #181c56;
|
|
169
|
+
color: #ffffff;
|
|
170
|
+
}
|
|
171
|
+
.eds-contrast .eds-form-control-wrapper--dark ::-moz-placeholder {
|
|
172
|
+
color: #aeb7e2;
|
|
173
|
+
}
|
|
174
|
+
.eds-contrast .eds-form-control-wrapper--dark ::placeholder {
|
|
175
|
+
color: #aeb7e2;
|
|
176
|
+
}
|
|
177
|
+
.eds-contrast .eds-form-control-wrapper--dark:hover {
|
|
178
|
+
border-color: #aeb7e2;
|
|
179
|
+
}
|
|
180
|
+
.eds-contrast .eds-form-control-wrapper--dark[focus-within] {
|
|
181
|
+
background-color: #292b6a;
|
|
182
|
+
border-color: #aeb7e2;
|
|
183
|
+
}
|
|
184
|
+
.eds-contrast .eds-form-control-wrapper--dark:focus-within {
|
|
185
|
+
background-color: #292b6a;
|
|
186
|
+
border-color: #aeb7e2;
|
|
187
|
+
}
|
|
188
|
+
.eds-contrast .eds-form-control-wrapper--dark * {
|
|
189
|
+
background-color: transparent;
|
|
190
|
+
color: inherit;
|
|
191
|
+
}
|
|
192
|
+
.eds-contrast .eds-form-control-wrapper--dark.eds-form-control-wrapper--disabled {
|
|
193
|
+
background-color: #292b6a;
|
|
194
|
+
color: #8285a8;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.eds-form-control {
|
|
198
|
+
-webkit-appearance: none;
|
|
199
|
+
-moz-appearance: none;
|
|
200
|
+
appearance: none;
|
|
201
|
+
background-color: transparent;
|
|
202
|
+
border: 0;
|
|
203
|
+
color: inherit;
|
|
204
|
+
display: block;
|
|
205
|
+
font-family: inherit;
|
|
206
|
+
line-height: 1rem;
|
|
207
|
+
font-size: 1rem;
|
|
208
|
+
padding: 20px 1rem 0.25rem;
|
|
209
|
+
width: 100%;
|
|
210
|
+
}
|
|
211
|
+
.eds-form-control::-moz-placeholder {
|
|
212
|
+
opacity: 0;
|
|
213
|
+
-moz-transition: opacity 0.2s ease-in-out;
|
|
214
|
+
transition: opacity 0.2s ease-in-out;
|
|
215
|
+
}
|
|
216
|
+
.eds-form-control::placeholder {
|
|
217
|
+
opacity: 0;
|
|
218
|
+
transition: opacity 0.2s ease-in-out;
|
|
219
|
+
}
|
|
220
|
+
.eds-form-control:focus {
|
|
221
|
+
outline: none;
|
|
222
|
+
}
|
|
223
|
+
.eds-form-control:focus::-moz-placeholder {
|
|
224
|
+
opacity: 1;
|
|
225
|
+
}
|
|
226
|
+
.eds-form-control:focus::placeholder {
|
|
227
|
+
opacity: 1;
|
|
228
|
+
}
|
|
229
|
+
.eds-form-control__prepend, .eds-form-control__append {
|
|
230
|
+
position: relative;
|
|
231
|
+
margin: 0 1rem;
|
|
232
|
+
line-height: inherit;
|
|
233
|
+
}
|
|
234
|
+
.eds-form-control__prepend--tooltip, .eds-form-control__append--tooltip {
|
|
235
|
+
position: static;
|
|
236
|
+
}
|
|
237
|
+
.eds-form-control__prepend svg, .eds-form-control__append svg {
|
|
238
|
+
top: 0.125rem;
|
|
239
|
+
}
|
|
240
|
+
.eds-form-control__prepend {
|
|
241
|
+
margin-right: 0;
|
|
242
|
+
}
|
|
243
|
+
.eds-form-control__append {
|
|
244
|
+
margin-left: 0;
|
|
245
|
+
}/* DO NOT CHANGE!*/
|
|
246
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
5
247
|
.eds-fieldset {
|
|
6
248
|
margin: 0;
|
|
7
249
|
padding: 0;
|
|
@@ -69,12 +311,10 @@
|
|
|
69
311
|
position: relative;
|
|
70
312
|
cursor: pointer;
|
|
71
313
|
height: 2rem;
|
|
72
|
-
width: -webkit-fit-content;
|
|
73
314
|
width: -moz-fit-content;
|
|
74
315
|
width: fit-content;
|
|
75
316
|
-webkit-user-select: none;
|
|
76
317
|
-moz-user-select: none;
|
|
77
|
-
-ms-user-select: none;
|
|
78
318
|
user-select: none;
|
|
79
319
|
}
|
|
80
320
|
.eds-form-component--radio__container :hover ~ .eds-form-component--radio__radio {
|
|
@@ -162,14 +402,11 @@
|
|
|
162
402
|
height: 2rem;
|
|
163
403
|
-webkit-user-select: none;
|
|
164
404
|
-moz-user-select: none;
|
|
165
|
-
-ms-user-select: none;
|
|
166
405
|
user-select: none;
|
|
167
|
-
width: -webkit-fit-content;
|
|
168
406
|
width: -moz-fit-content;
|
|
169
407
|
width: fit-content;
|
|
170
408
|
}
|
|
171
409
|
.eds-checkbox__container--reduced-click-area {
|
|
172
|
-
height: -webkit-fit-content;
|
|
173
410
|
height: -moz-fit-content;
|
|
174
411
|
height: fit-content;
|
|
175
412
|
}
|
|
@@ -187,8 +424,7 @@
|
|
|
187
424
|
}
|
|
188
425
|
.eds-checkbox__container input:checked + .eds-checkbox__icon .eds-checkbox-icon__path, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon .eds-checkbox-icon__path {
|
|
189
426
|
stroke: #ffffff;
|
|
190
|
-
|
|
191
|
-
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
427
|
+
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
192
428
|
}
|
|
193
429
|
.eds-checkbox__container input:checked + .eds-checkbox__icon--disabled, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon--disabled {
|
|
194
430
|
opacity: 0.5;
|
|
@@ -277,130 +513,12 @@
|
|
|
277
513
|
stroke-width: 0.375rem;
|
|
278
514
|
}
|
|
279
515
|
|
|
280
|
-
@-webkit-keyframes stroke {
|
|
281
|
-
100% {
|
|
282
|
-
stroke-dashoffset: 0;
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
|
|
286
516
|
@keyframes stroke {
|
|
287
517
|
100% {
|
|
288
518
|
stroke-dashoffset: 0;
|
|
289
519
|
}
|
|
290
520
|
}/* DO NOT CHANGE!*/
|
|
291
521
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
292
|
-
.eds-switch {
|
|
293
|
-
cursor: pointer;
|
|
294
|
-
-webkit-user-select: none;
|
|
295
|
-
-moz-user-select: none;
|
|
296
|
-
-ms-user-select: none;
|
|
297
|
-
user-select: none;
|
|
298
|
-
padding: 0.5rem 0;
|
|
299
|
-
width: -webkit-fit-content;
|
|
300
|
-
width: -moz-fit-content;
|
|
301
|
-
width: fit-content;
|
|
302
|
-
}
|
|
303
|
-
.eds-switch input {
|
|
304
|
-
opacity: 0;
|
|
305
|
-
pointer-events: none;
|
|
306
|
-
position: absolute;
|
|
307
|
-
}
|
|
308
|
-
.eds-switch--right {
|
|
309
|
-
display: flex;
|
|
310
|
-
flex-direction: row;
|
|
311
|
-
align-items: center;
|
|
312
|
-
}
|
|
313
|
-
.eds-switch--bottom {
|
|
314
|
-
display: flex;
|
|
315
|
-
flex-direction: column;
|
|
316
|
-
align-items: center;
|
|
317
|
-
}
|
|
318
|
-
.eds-switch__circle {
|
|
319
|
-
border-radius: 50%;
|
|
320
|
-
height: 1.25rem;
|
|
321
|
-
width: 1.25rem;
|
|
322
|
-
content: "";
|
|
323
|
-
display: flex;
|
|
324
|
-
align-items: center;
|
|
325
|
-
justify-content: center;
|
|
326
|
-
transition: left 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
327
|
-
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
328
|
-
background-color: #ffffff;
|
|
329
|
-
top: 0.125rem;
|
|
330
|
-
left: 0.125rem;
|
|
331
|
-
position: relative;
|
|
332
|
-
}
|
|
333
|
-
.eds-switch__switch--large .eds-switch__circle {
|
|
334
|
-
height: 1.75rem;
|
|
335
|
-
width: 1.75rem;
|
|
336
|
-
}
|
|
337
|
-
.eds-switch .eds-switch__switch svg g,
|
|
338
|
-
.eds-switch .eds-switch__switch path {
|
|
339
|
-
fill: #949494;
|
|
340
|
-
transition: fill ease-in-out 0.1s;
|
|
341
|
-
}
|
|
342
|
-
.eds-switch__switch {
|
|
343
|
-
position: relative;
|
|
344
|
-
background-color: #d1d3d3;
|
|
345
|
-
content: "";
|
|
346
|
-
display: block;
|
|
347
|
-
transition: background-color 0.1s ease-in-out;
|
|
348
|
-
height: 1.5rem;
|
|
349
|
-
width: 3rem;
|
|
350
|
-
border-radius: 1.5rem;
|
|
351
|
-
}
|
|
352
|
-
.eds-switch--right .eds-switch__switch {
|
|
353
|
-
margin-right: 0.75rem;
|
|
354
|
-
}
|
|
355
|
-
:checked + .eds-switch__switch {
|
|
356
|
-
background-color: var(--eds-switch-color);
|
|
357
|
-
}
|
|
358
|
-
:checked + .eds-switch__switch .eds-switch__circle {
|
|
359
|
-
left: 1.625rem;
|
|
360
|
-
}
|
|
361
|
-
:checked + .eds-switch__switch .eds-switch__circle svg g,
|
|
362
|
-
:checked + .eds-switch__switch .eds-switch__circle path {
|
|
363
|
-
fill: var(--eds-switch-color);
|
|
364
|
-
}
|
|
365
|
-
.eds-contrast :checked + .eds-switch__switch .eds-switch__circle svg g,
|
|
366
|
-
.eds-contrast :checked + .eds-switch__switch .eds-switch__circle path {
|
|
367
|
-
fill: var(--eds-switch-color);
|
|
368
|
-
}
|
|
369
|
-
.eds-contrast :checked + .eds-switch__switch {
|
|
370
|
-
background-color: var(--eds-switch-contrast-color);
|
|
371
|
-
}
|
|
372
|
-
:focus + .eds-switch__switch {
|
|
373
|
-
outline: none;
|
|
374
|
-
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
375
|
-
outline-offset: 0.125rem;
|
|
376
|
-
}
|
|
377
|
-
.eds-contrast :focus + .eds-switch__switch {
|
|
378
|
-
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
379
|
-
}
|
|
380
|
-
.eds-contrast .eds-switch__switch {
|
|
381
|
-
background-color: #54568c;
|
|
382
|
-
}
|
|
383
|
-
.eds-switch__switch--large {
|
|
384
|
-
width: 3.75rem;
|
|
385
|
-
height: 2rem;
|
|
386
|
-
border-radius: 3.75rem;
|
|
387
|
-
}
|
|
388
|
-
:checked + .eds-switch__switch--large .eds-switch__circle {
|
|
389
|
-
left: 1.875rem;
|
|
390
|
-
}
|
|
391
|
-
.eds-switch__label--large--right {
|
|
392
|
-
font-size: 1rem;
|
|
393
|
-
}
|
|
394
|
-
.eds-switch__label--large--bottom {
|
|
395
|
-
font-size: 0.875rem;
|
|
396
|
-
}
|
|
397
|
-
.eds-switch__label--medium--right {
|
|
398
|
-
font-size: 0.875rem;
|
|
399
|
-
}
|
|
400
|
-
.eds-switch__label--medium--bottom {
|
|
401
|
-
font-size: 0.75rem;
|
|
402
|
-
}/* DO NOT CHANGE!*/
|
|
403
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
404
522
|
.eds-radio-panel__wrapper[focus-within] .eds-radio-panel__container {
|
|
405
523
|
border-color: #181c56;
|
|
406
524
|
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
@@ -441,8 +559,7 @@
|
|
|
441
559
|
}
|
|
442
560
|
.eds-radio-panel__wrapper input:checked + .eds-radio-panel__container .eds-radio-panel__check .eds-checkbox-icon__path {
|
|
443
561
|
stroke: #5ac39a;
|
|
444
|
-
|
|
445
|
-
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
562
|
+
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
446
563
|
}
|
|
447
564
|
.eds-radio-panel__wrapper input:checked + .eds-radio-panel__container .eds-radio-panel__check--disabled {
|
|
448
565
|
opacity: 0.5;
|
|
@@ -462,9 +579,7 @@
|
|
|
462
579
|
padding: 1rem;
|
|
463
580
|
-webkit-user-select: none;
|
|
464
581
|
-moz-user-select: none;
|
|
465
|
-
-ms-user-select: none;
|
|
466
582
|
user-select: none;
|
|
467
|
-
width: -webkit-fit-content;
|
|
468
583
|
width: -moz-fit-content;
|
|
469
584
|
width: fit-content;
|
|
470
585
|
}
|
|
@@ -562,7 +677,6 @@
|
|
|
562
677
|
transition: top 0.2s ease-in-out, font-size 0.2s ease-in-out, padding 0.2s ease-in-out, line-height ease-in-out 0.2s;
|
|
563
678
|
-webkit-user-select: none;
|
|
564
679
|
-moz-user-select: none;
|
|
565
|
-
-ms-user-select: none;
|
|
566
680
|
user-select: none;
|
|
567
681
|
pointer-events: none;
|
|
568
682
|
}
|
|
@@ -711,260 +825,124 @@ textarea.eds-form-control.eds-textarea {
|
|
|
711
825
|
background-color: #8285a8;
|
|
712
826
|
}/* DO NOT CHANGE!*/
|
|
713
827
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
714
|
-
.eds-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
color: #181c56;
|
|
723
|
-
display: flex;
|
|
724
|
-
position: relative;
|
|
725
|
-
width: 100%;
|
|
726
|
-
min-height: 3rem;
|
|
727
|
-
transition: border-color 0.1s ease-in-out;
|
|
728
|
-
--textarea-label-background: $colors-brand-white;
|
|
729
|
-
/*
|
|
730
|
-
Some input controls require a darker design while inside a contrast block.
|
|
731
|
-
These elements require the `--dark` modifier, even on the wrapper.
|
|
732
|
-
*/
|
|
733
|
-
}
|
|
734
|
-
.eds-contrast .eds-form-control-wrapper {
|
|
735
|
-
--border-color: #aeb7e2;
|
|
736
|
-
background-color: #ffffff;
|
|
737
|
-
border-color: #54568c;
|
|
738
|
-
}
|
|
739
|
-
.eds-form-control-wrapper[focus-within], .eds-form-control-wrapper:hover {
|
|
740
|
-
border-color: #181c56;
|
|
741
|
-
}
|
|
742
|
-
.eds-form-control-wrapper:focus-within, .eds-form-control-wrapper:hover {
|
|
743
|
-
border-color: #181c56;
|
|
744
|
-
}
|
|
745
|
-
.eds-contrast .eds-form-control-wrapper:hover {
|
|
746
|
-
border-color: #aeb7e2;
|
|
747
|
-
background: #ebebf1;
|
|
748
|
-
}
|
|
749
|
-
.eds-form-control-wrapper[focus-within] {
|
|
750
|
-
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
751
|
-
}
|
|
752
|
-
.eds-form-control-wrapper:focus-within {
|
|
753
|
-
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
754
|
-
}
|
|
755
|
-
.eds-contrast .eds-form-control-wrapper[focus-within] {
|
|
756
|
-
border-color: #181c56;
|
|
757
|
-
--border-color: #aeb7e2;
|
|
758
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
759
|
-
}
|
|
760
|
-
.eds-contrast .eds-form-control-wrapper:focus-within {
|
|
761
|
-
border-color: #181c56;
|
|
762
|
-
--border-color: #aeb7e2;
|
|
763
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
764
|
-
}
|
|
765
|
-
.eds-form-control-wrapper ::-moz-placeholder {
|
|
766
|
-
color: #656782;
|
|
767
|
-
}
|
|
768
|
-
.eds-form-control-wrapper :-ms-input-placeholder {
|
|
769
|
-
color: #656782;
|
|
770
|
-
}
|
|
771
|
-
.eds-form-control-wrapper ::placeholder {
|
|
772
|
-
color: #656782;
|
|
773
|
-
}
|
|
774
|
-
.eds-form-control-wrapper--disabled {
|
|
775
|
-
background-color: #e9e9e9;
|
|
776
|
-
color: #656782;
|
|
777
|
-
border-color: transparent;
|
|
778
|
-
pointer-events: none;
|
|
779
|
-
}
|
|
780
|
-
.eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
|
|
781
|
-
display: none;
|
|
782
|
-
}
|
|
783
|
-
.eds-contrast .eds-form-control-wrapper--disabled {
|
|
784
|
-
background: #292b6a;
|
|
785
|
-
border-color: transparent;
|
|
786
|
-
color: #8285a8;
|
|
828
|
+
.eds-switch {
|
|
829
|
+
cursor: pointer;
|
|
830
|
+
-webkit-user-select: none;
|
|
831
|
+
-moz-user-select: none;
|
|
832
|
+
user-select: none;
|
|
833
|
+
padding: 0.5rem 0;
|
|
834
|
+
width: -moz-fit-content;
|
|
835
|
+
width: fit-content;
|
|
787
836
|
}
|
|
788
|
-
.eds-
|
|
837
|
+
.eds-switch input {
|
|
838
|
+
opacity: 0;
|
|
789
839
|
pointer-events: none;
|
|
790
|
-
|
|
791
|
-
border-color: transparent;
|
|
792
|
-
background: #f8f8f8;
|
|
793
|
-
--textarea-label-background: $colors-greys-grey90;
|
|
794
|
-
}
|
|
795
|
-
.eds-contrast .eds-form-control-wrapper--readonly {
|
|
796
|
-
background: #292b6a;
|
|
797
|
-
--textarea-label-background: $colors-blues-blue10;
|
|
798
|
-
color: #ffffff;
|
|
799
|
-
border-color: transparent;
|
|
800
|
-
}
|
|
801
|
-
.eds-form-control-wrapper--readonly::before, .eds-form-control-wrapper--readonly::after {
|
|
802
|
-
display: none;
|
|
803
|
-
}
|
|
804
|
-
.eds-form-control-wrapper--size-medium .eds-form-control,
|
|
805
|
-
.eds-form-control-wrapper--size-medium .eds-form-control__append,
|
|
806
|
-
.eds-form-control-wrapper--size-medium .eds-form-control__prepend {
|
|
807
|
-
font-size: 1rem;
|
|
808
|
-
line-height: 1rem;
|
|
809
|
-
}
|
|
810
|
-
.eds-form-control-wrapper--size-large {
|
|
811
|
-
min-height: 4rem;
|
|
812
|
-
padding: 0 0.5rem;
|
|
813
|
-
}
|
|
814
|
-
.eds-form-control-wrapper--size-large::before, .eds-form-control-wrapper--size-large::after {
|
|
815
|
-
border-width: 0.25rem;
|
|
816
|
-
}
|
|
817
|
-
.eds-form-control-wrapper--size-large .eds-form-control,
|
|
818
|
-
.eds-form-control-wrapper--size-large .eds-form-control__append,
|
|
819
|
-
.eds-form-control-wrapper--size-large .eds-form-control__prepend {
|
|
820
|
-
font-size: 1.5rem;
|
|
821
|
-
line-height: 2.25rem;
|
|
822
|
-
}
|
|
823
|
-
.eds-form-control-wrapper--success {
|
|
824
|
-
border-color: #1a8e60;
|
|
825
|
-
--border-color: #1a8e60;
|
|
826
|
-
}
|
|
827
|
-
.eds-form-control-wrapper--success:hover {
|
|
828
|
-
border-color: #5ac39a;
|
|
829
|
-
}
|
|
830
|
-
.eds-form-control-wrapper--success[focus-within] {
|
|
831
|
-
border-color: #1a8e60;
|
|
832
|
-
}
|
|
833
|
-
.eds-form-control-wrapper--success:focus-within {
|
|
834
|
-
border-color: #1a8e60;
|
|
835
|
-
}
|
|
836
|
-
.eds-contrast .eds-form-control-wrapper--success {
|
|
837
|
-
border-color: #5ac39a;
|
|
838
|
-
--border-color: #5ac39a;
|
|
839
|
-
}
|
|
840
|
-
.eds-contrast .eds-form-control-wrapper--success:hover {
|
|
841
|
-
border-color: #1a8e60;
|
|
842
|
-
}
|
|
843
|
-
.eds-contrast .eds-form-control-wrapper--success[focus-within] {
|
|
844
|
-
--border-color: #5ac39a;
|
|
845
|
-
border-color: #181c56;
|
|
846
|
-
}
|
|
847
|
-
.eds-contrast .eds-form-control-wrapper--success:focus-within {
|
|
848
|
-
--border-color: #5ac39a;
|
|
849
|
-
border-color: #181c56;
|
|
840
|
+
position: absolute;
|
|
850
841
|
}
|
|
851
|
-
.eds-
|
|
852
|
-
|
|
853
|
-
|
|
842
|
+
.eds-switch--right {
|
|
843
|
+
display: flex;
|
|
844
|
+
flex-direction: row;
|
|
845
|
+
align-items: center;
|
|
854
846
|
}
|
|
855
|
-
.eds-
|
|
856
|
-
|
|
847
|
+
.eds-switch--bottom {
|
|
848
|
+
display: flex;
|
|
849
|
+
flex-direction: column;
|
|
850
|
+
align-items: center;
|
|
857
851
|
}
|
|
858
|
-
.eds-
|
|
859
|
-
border-
|
|
852
|
+
.eds-switch__circle {
|
|
853
|
+
border-radius: 50%;
|
|
854
|
+
height: 1.25rem;
|
|
855
|
+
width: 1.25rem;
|
|
856
|
+
content: "";
|
|
857
|
+
display: flex;
|
|
858
|
+
align-items: center;
|
|
859
|
+
justify-content: center;
|
|
860
|
+
transition: left 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
861
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
862
|
+
background-color: #ffffff;
|
|
863
|
+
top: 0.125rem;
|
|
864
|
+
left: 0.125rem;
|
|
865
|
+
position: relative;
|
|
860
866
|
}
|
|
861
|
-
.eds-
|
|
862
|
-
|
|
867
|
+
.eds-switch__switch--large .eds-switch__circle {
|
|
868
|
+
height: 1.75rem;
|
|
869
|
+
width: 1.75rem;
|
|
863
870
|
}
|
|
864
|
-
.eds-
|
|
865
|
-
|
|
866
|
-
|
|
871
|
+
.eds-switch .eds-switch__switch svg g,
|
|
872
|
+
.eds-switch .eds-switch__switch path {
|
|
873
|
+
fill: #949494;
|
|
874
|
+
transition: fill ease-in-out 0.1s;
|
|
867
875
|
}
|
|
868
|
-
.eds-
|
|
869
|
-
|
|
876
|
+
.eds-switch__switch {
|
|
877
|
+
position: relative;
|
|
878
|
+
background-color: #d1d3d3;
|
|
879
|
+
content: "";
|
|
880
|
+
display: block;
|
|
881
|
+
transition: background-color 0.1s ease-in-out;
|
|
882
|
+
height: 1.5rem;
|
|
883
|
+
width: 3rem;
|
|
884
|
+
border-radius: 1.5rem;
|
|
870
885
|
}
|
|
871
|
-
.eds-
|
|
872
|
-
|
|
873
|
-
--border-color: #ff9494;
|
|
886
|
+
.eds-switch--right .eds-switch__switch {
|
|
887
|
+
margin-right: 0.75rem;
|
|
874
888
|
}
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
--border-color: #ff9494;
|
|
889
|
+
:checked + .eds-switch__switch {
|
|
890
|
+
background-color: var(--eds-switch-color);
|
|
878
891
|
}
|
|
879
|
-
.eds-
|
|
880
|
-
|
|
881
|
-
color: #ffffff;
|
|
892
|
+
:checked + .eds-switch__switch .eds-switch__circle {
|
|
893
|
+
left: 1.625rem;
|
|
882
894
|
}
|
|
883
|
-
.eds-
|
|
884
|
-
|
|
895
|
+
:checked + .eds-switch__switch .eds-switch__circle svg g,
|
|
896
|
+
:checked + .eds-switch__switch .eds-switch__circle path {
|
|
897
|
+
fill: var(--eds-switch-color);
|
|
885
898
|
}
|
|
886
|
-
.eds-contrast .eds-
|
|
887
|
-
|
|
899
|
+
.eds-contrast :checked + .eds-switch__switch .eds-switch__circle svg g,
|
|
900
|
+
.eds-contrast :checked + .eds-switch__switch .eds-switch__circle path {
|
|
901
|
+
fill: var(--eds-switch-color);
|
|
888
902
|
}
|
|
889
|
-
.eds-contrast .eds-
|
|
890
|
-
color:
|
|
903
|
+
.eds-contrast :checked + .eds-switch__switch {
|
|
904
|
+
background-color: var(--eds-switch-contrast-color);
|
|
891
905
|
}
|
|
892
|
-
|
|
893
|
-
|
|
906
|
+
:focus + .eds-switch__switch {
|
|
907
|
+
outline: none;
|
|
908
|
+
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
909
|
+
outline-offset: 0.125rem;
|
|
894
910
|
}
|
|
895
|
-
.eds-contrast .eds-
|
|
896
|
-
|
|
897
|
-
border-color: #aeb7e2;
|
|
911
|
+
.eds-contrast :focus + .eds-switch__switch {
|
|
912
|
+
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
898
913
|
}
|
|
899
|
-
.eds-contrast .eds-
|
|
900
|
-
background-color: #
|
|
901
|
-
border-color: #aeb7e2;
|
|
914
|
+
.eds-contrast .eds-switch__switch {
|
|
915
|
+
background-color: #54568c;
|
|
902
916
|
}
|
|
903
|
-
.eds-
|
|
904
|
-
|
|
905
|
-
|
|
917
|
+
.eds-switch__switch--large {
|
|
918
|
+
width: 3.75rem;
|
|
919
|
+
height: 2rem;
|
|
920
|
+
border-radius: 3.75rem;
|
|
906
921
|
}
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
color: #8285a8;
|
|
922
|
+
:checked + .eds-switch__switch--large .eds-switch__circle {
|
|
923
|
+
left: 1.875rem;
|
|
910
924
|
}
|
|
911
|
-
|
|
912
|
-
.eds-form-control {
|
|
913
|
-
-webkit-appearance: none;
|
|
914
|
-
-moz-appearance: none;
|
|
915
|
-
appearance: none;
|
|
916
|
-
background-color: transparent;
|
|
917
|
-
border: 0;
|
|
918
|
-
color: inherit;
|
|
919
|
-
display: block;
|
|
920
|
-
font-family: inherit;
|
|
921
|
-
line-height: 1rem;
|
|
925
|
+
.eds-switch__label--large--right {
|
|
922
926
|
font-size: 1rem;
|
|
923
|
-
padding: 20px 1rem 0.25rem;
|
|
924
|
-
width: 100%;
|
|
925
|
-
}
|
|
926
|
-
.eds-form-control::-moz-placeholder {
|
|
927
|
-
opacity: 0;
|
|
928
|
-
-moz-transition: opacity 0.2s ease-in-out;
|
|
929
|
-
transition: opacity 0.2s ease-in-out;
|
|
930
|
-
}
|
|
931
|
-
.eds-form-control:-ms-input-placeholder {
|
|
932
|
-
opacity: 0;
|
|
933
|
-
-ms-transition: opacity 0.2s ease-in-out;
|
|
934
|
-
transition: opacity 0.2s ease-in-out;
|
|
935
|
-
}
|
|
936
|
-
.eds-form-control::placeholder {
|
|
937
|
-
opacity: 0;
|
|
938
|
-
transition: opacity 0.2s ease-in-out;
|
|
939
|
-
}
|
|
940
|
-
.eds-form-control:focus {
|
|
941
|
-
outline: none;
|
|
942
|
-
}
|
|
943
|
-
.eds-form-control:focus::-moz-placeholder {
|
|
944
|
-
opacity: 1;
|
|
945
927
|
}
|
|
946
|
-
.eds-
|
|
947
|
-
|
|
948
|
-
}
|
|
949
|
-
.eds-form-control:focus::placeholder {
|
|
950
|
-
opacity: 1;
|
|
951
|
-
}
|
|
952
|
-
.eds-form-control__prepend, .eds-form-control__append {
|
|
953
|
-
position: relative;
|
|
954
|
-
margin: 0 1rem;
|
|
955
|
-
line-height: inherit;
|
|
956
|
-
}
|
|
957
|
-
.eds-form-control__prepend--tooltip, .eds-form-control__append--tooltip {
|
|
958
|
-
position: static;
|
|
928
|
+
.eds-switch__label--large--bottom {
|
|
929
|
+
font-size: 0.875rem;
|
|
959
930
|
}
|
|
960
|
-
.eds-
|
|
961
|
-
|
|
931
|
+
.eds-switch__label--medium--right {
|
|
932
|
+
font-size: 0.875rem;
|
|
962
933
|
}
|
|
963
|
-
.eds-
|
|
964
|
-
|
|
934
|
+
.eds-switch__label--medium--bottom {
|
|
935
|
+
font-size: 0.75rem;
|
|
936
|
+
}/* DO NOT CHANGE!*/
|
|
937
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
938
|
+
.eds-segmented-control {
|
|
939
|
+
margin-top: 0.25rem;
|
|
940
|
+
display: flex;
|
|
941
|
+
background: #d1d4e3;
|
|
942
|
+
border-radius: 0.5rem;
|
|
965
943
|
}
|
|
966
|
-
.eds-
|
|
967
|
-
|
|
944
|
+
.eds-contrast .eds-segmented-control {
|
|
945
|
+
background: #393d79;
|
|
968
946
|
}/* DO NOT CHANGE!*/
|
|
969
947
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
970
948
|
.eds-segmented-choice {
|
|
@@ -975,27 +953,23 @@ textarea.eds-form-control.eds-textarea {
|
|
|
975
953
|
--background-color: transparent;
|
|
976
954
|
background-color: var(--background-color);
|
|
977
955
|
border-radius: 0.25rem;
|
|
978
|
-
border: 0.0625rem solid transparent;
|
|
979
|
-
margin: 0.25rem;
|
|
980
956
|
color: inherit;
|
|
981
957
|
cursor: pointer;
|
|
982
958
|
font-size: 0.875rem;
|
|
959
|
+
height: 1.5rem;
|
|
983
960
|
line-height: 1.25rem;
|
|
961
|
+
margin: 0.25rem;
|
|
962
|
+
outline-color: transparent;
|
|
984
963
|
padding: calc(0.25rem/ 2) 0.75rem;
|
|
985
|
-
height: 1.5rem;
|
|
986
964
|
text-align: center;
|
|
987
965
|
-webkit-user-select: none;
|
|
988
966
|
-moz-user-select: none;
|
|
989
|
-
-ms-user-select: none;
|
|
990
967
|
user-select: none;
|
|
991
968
|
}
|
|
992
|
-
.eds-contrast .eds-segmented-choice .eds-base-segmented {
|
|
993
|
-
border-color: #393d79;
|
|
994
|
-
}
|
|
995
969
|
.eds-segmented-choice .eds-base-segmented--large {
|
|
996
970
|
font-size: 1rem;
|
|
997
|
-
line-height: 1.5rem;
|
|
998
971
|
height: 2.5rem;
|
|
972
|
+
line-height: 1.5rem;
|
|
999
973
|
padding: 0.5rem 0.75rem;
|
|
1000
974
|
}
|
|
1001
975
|
.eds-segmented-choice:hover input:not(:checked) + .eds-base-segmented {
|
|
@@ -1004,6 +978,12 @@ textarea.eds-form-control.eds-textarea {
|
|
|
1004
978
|
.eds-contrast .eds-segmented-choice:hover input:not(:checked) + .eds-base-segmented {
|
|
1005
979
|
--background-color: #54568c;
|
|
1006
980
|
}
|
|
981
|
+
.eds-segmented-choice:hover input:checked + .eds-base-segmented {
|
|
982
|
+
--background-color: #ebebf1;
|
|
983
|
+
}
|
|
984
|
+
.eds-contrast .eds-segmented-choice:hover input:checked + .eds-base-segmented {
|
|
985
|
+
--background-color: #d1d4e3;
|
|
986
|
+
}
|
|
1007
987
|
.eds-segmented-choice input {
|
|
1008
988
|
-webkit-appearance: none;
|
|
1009
989
|
-moz-appearance: none;
|
|
@@ -1018,30 +998,19 @@ textarea.eds-form-control.eds-textarea {
|
|
|
1018
998
|
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
1019
999
|
}
|
|
1020
1000
|
.eds-contrast .eds-segmented-choice input:checked + .eds-base-segmented {
|
|
1001
|
+
--background-color: #ffffff;
|
|
1021
1002
|
box-shadow: 0 0.0625rem 0.1875rem #393d79;
|
|
1022
1003
|
color: #181c56;
|
|
1023
|
-
--background-color: #ffffff;
|
|
1024
1004
|
}
|
|
1025
|
-
.eds-segmented-choice input:focus + .eds-base-segmented {
|
|
1026
|
-
|
|
1027
|
-
border: 0.0625rem solid #181c56;
|
|
1005
|
+
.eds-segmented-choice input:focus:not(:checked) + .eds-base-segmented {
|
|
1006
|
+
box-shadow: inset 0 0 0 0.0625rem #d1d4e3, inset 0 0 0 calc(0.125rem + 0.0625rem) #181c56;
|
|
1028
1007
|
}
|
|
1029
|
-
.eds-contrast .eds-segmented-choice input:focus + .eds-base-segmented {
|
|
1030
|
-
|
|
1008
|
+
.eds-contrast .eds-segmented-choice input:focus:not(:checked) + .eds-base-segmented {
|
|
1009
|
+
box-shadow: inset 0 0 0 0.0625rem #393d79, inset 0 0 0 calc(0.125rem + 0.0625rem) #ffffff;
|
|
1031
1010
|
}
|
|
1032
|
-
.eds-segmented-choice
|
|
1033
|
-
|
|
1011
|
+
.eds-segmented-choice input:focus:checked + .eds-base-segmented {
|
|
1012
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25), inset 0 0 0 0.0625rem #ffffff, inset 0 0 0 calc(0.125rem + 0.0625rem) #181c56;
|
|
1034
1013
|
}
|
|
1035
|
-
.eds-contrast .eds-segmented-choice
|
|
1036
|
-
|
|
1037
|
-
}/* DO NOT CHANGE!*/
|
|
1038
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1039
|
-
.eds-segmented-control {
|
|
1040
|
-
margin-top: 0.25rem;
|
|
1041
|
-
display: flex;
|
|
1042
|
-
background: #d1d4e3;
|
|
1043
|
-
border-radius: 0.25rem;
|
|
1044
|
-
}
|
|
1045
|
-
.eds-contrast .eds-segmented-control {
|
|
1046
|
-
background: #393d79;
|
|
1014
|
+
.eds-contrast .eds-segmented-choice input:focus:checked + .eds-base-segmented {
|
|
1015
|
+
box-shadow: 0 0.0625rem 0.1875rem #393d79, inset 0 0 0 0.0625rem #ffffff, inset 0 0 0 calc(0.125rem + 0.0625rem) #181c56;
|
|
1047
1016
|
}
|