@entur/form 7.0.39 → 7.0.40
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 +0 -2
- package/dist/form.cjs.development.js +1 -4
- 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 +1 -4
- package/dist/form.esm.js.map +1 -1
- package/dist/styles.css +1158 -532
- package/package.json +6 -6
package/dist/styles.css
CHANGED
|
@@ -1,62 +1,5 @@
|
|
|
1
1
|
/* DO NOT CHANGE!*/
|
|
2
2
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
3
|
-
.eds-feedback-text {
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
margin-top: 0.25rem;
|
|
7
|
-
}
|
|
8
|
-
.eds-feedback-text--info {
|
|
9
|
-
padding-left: calc(1rem + 0.125rem);
|
|
10
|
-
}
|
|
11
|
-
.eds-feedback-text__text {
|
|
12
|
-
color: #181c56;
|
|
13
|
-
}
|
|
14
|
-
.eds-contrast .eds-feedback-text__text {
|
|
15
|
-
color: #ffffff;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.eds-feedback-text__icon {
|
|
19
|
-
font-size: 1.5rem;
|
|
20
|
-
min-height: 1.5rem;
|
|
21
|
-
min-width: 1.5rem;
|
|
22
|
-
padding-right: 0.5rem;
|
|
23
|
-
position: relative;
|
|
24
|
-
top: -0.1rem;
|
|
25
|
-
}
|
|
26
|
-
.eds-feedback-text__icon--success {
|
|
27
|
-
color: #1a8e60;
|
|
28
|
-
}
|
|
29
|
-
.eds-contrast .eds-feedback-text__icon--success {
|
|
30
|
-
color: #5ac39a;
|
|
31
|
-
}
|
|
32
|
-
.eds-feedback-text__icon--error {
|
|
33
|
-
color: #d31b1b;
|
|
34
|
-
}
|
|
35
|
-
.eds-contrast .eds-feedback-text__icon--error {
|
|
36
|
-
color: #ff9494;
|
|
37
|
-
}
|
|
38
|
-
.eds-feedback-text__icon--info {
|
|
39
|
-
color: #0082b9;
|
|
40
|
-
}
|
|
41
|
-
.eds-contrast .eds-feedback-text__icon--info {
|
|
42
|
-
color: #64b3e7;
|
|
43
|
-
}
|
|
44
|
-
.eds-feedback-text__icon--warning {
|
|
45
|
-
color: #ffca28;
|
|
46
|
-
}
|
|
47
|
-
.eds-feedback-text__icon--warning circle {
|
|
48
|
-
fill: #181c56;
|
|
49
|
-
}
|
|
50
|
-
.eds-contrast .eds-feedback-text__icon--warning {
|
|
51
|
-
color: #ffe082;
|
|
52
|
-
}
|
|
53
|
-
.eds-fieldset {
|
|
54
|
-
margin: 0;
|
|
55
|
-
padding: 0;
|
|
56
|
-
border: 0;
|
|
57
|
-
}
|
|
58
|
-
/* DO NOT CHANGE!*/
|
|
59
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
60
3
|
.eds-checkbox__container {
|
|
61
4
|
display: flex;
|
|
62
5
|
align-items: center;
|
|
@@ -83,17 +26,17 @@
|
|
|
83
26
|
width: 0;
|
|
84
27
|
}
|
|
85
28
|
.eds-checkbox__container input:checked + .eds-checkbox__icon, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon {
|
|
86
|
-
background-color:
|
|
29
|
+
background-color: var(--components-form-checkbox-standard-fill-selected);
|
|
87
30
|
}
|
|
88
31
|
.eds-checkbox__container input:checked + .eds-checkbox__icon .eds-checkbox-icon, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon .eds-checkbox-icon {
|
|
89
32
|
visibility: visible;
|
|
90
33
|
}
|
|
91
34
|
.eds-checkbox__container input:checked + .eds-checkbox__icon .eds-checkbox-icon path, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon .eds-checkbox-icon path {
|
|
92
|
-
stroke:
|
|
35
|
+
stroke: var(--components-form-checkbox-standard-icon);
|
|
93
36
|
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
94
37
|
}
|
|
95
38
|
.eds-checkbox__container input:checked + .eds-checkbox__icon .eds-checkbox-icon rect, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon .eds-checkbox-icon rect {
|
|
96
|
-
fill:
|
|
39
|
+
fill: var(--components-form-checkbox-standard-icon);
|
|
97
40
|
}
|
|
98
41
|
.eds-checkbox__container input:checked + .eds-checkbox__icon--disabled, .eds-checkbox__container input:indeterminate + .eds-checkbox__icon--disabled {
|
|
99
42
|
opacity: 0.5;
|
|
@@ -111,64 +54,58 @@
|
|
|
111
54
|
opacity: 0.5;
|
|
112
55
|
}
|
|
113
56
|
.eds-contrast .eds-checkbox__container input:checked + .eds-checkbox__icon, .eds-contrast .eds-checkbox__container input:indeterminate + .eds-checkbox__icon {
|
|
114
|
-
background-color:
|
|
57
|
+
background-color: var(--components-form-checkbox-contrast-fill-selected);
|
|
115
58
|
}
|
|
116
59
|
.eds-contrast .eds-checkbox__container input:checked + .eds-checkbox__icon path, .eds-contrast .eds-checkbox__container input:indeterminate + .eds-checkbox__icon path {
|
|
117
|
-
stroke:
|
|
60
|
+
stroke: var(--components-form-checkbox-contrast-icon);
|
|
118
61
|
}
|
|
119
62
|
.eds-contrast .eds-checkbox__container input:checked + .eds-checkbox__icon rect, .eds-contrast .eds-checkbox__container input:indeterminate + .eds-checkbox__icon rect {
|
|
120
|
-
fill:
|
|
63
|
+
fill: var(--components-form-checkbox-contrast-icon);
|
|
121
64
|
}
|
|
122
65
|
.eds-checkbox__container:hover input + .eds-checkbox__icon {
|
|
123
|
-
border-color:
|
|
124
|
-
background-color:
|
|
66
|
+
border-color: var(--components-form-checkbox-standard-border);
|
|
67
|
+
background-color: var(--components-form-checkbox-standard-fill-hover);
|
|
125
68
|
}
|
|
126
69
|
.eds-contrast .eds-checkbox__container:hover input + .eds-checkbox__icon {
|
|
127
|
-
border-color:
|
|
128
|
-
background-color:
|
|
70
|
+
border-color: var(--components-form-checkbox-contrast-border);
|
|
71
|
+
background-color: var(--components-form-checkbox-contrast-fill-hover);
|
|
129
72
|
}
|
|
130
73
|
.eds-checkbox__container:hover input:checked + .eds-checkbox__icon,
|
|
131
74
|
.eds-checkbox__container:hover input:indeterminate + .eds-checkbox__icon {
|
|
132
75
|
border-color: transparent;
|
|
133
|
-
background-color:
|
|
76
|
+
background-color: var(--components-form-checkbox-standard-fill-selectedhover);
|
|
134
77
|
}
|
|
135
78
|
.eds-contrast .eds-checkbox__container:hover input:checked + .eds-checkbox__icon,
|
|
136
79
|
.eds-contrast .eds-checkbox__container:hover input:indeterminate + .eds-checkbox__icon {
|
|
137
|
-
background-color:
|
|
138
|
-
}
|
|
139
|
-
.eds-checkbox__container:active input + .eds-checkbox__icon {
|
|
140
|
-
border-color: #16194d;
|
|
141
|
-
}
|
|
142
|
-
.eds-contrast .eds-checkbox__container:active input + .eds-checkbox__icon {
|
|
143
|
-
border-color: #9da5cb;
|
|
80
|
+
background-color: var(--components-form-checkbox-contrast-fill-selectedhover);
|
|
144
81
|
}
|
|
145
82
|
.eds-checkbox__container:active input:checked + .eds-checkbox__icon,
|
|
146
83
|
.eds-checkbox__container:active input:indeterminate + .eds-checkbox__icon {
|
|
147
|
-
background-color:
|
|
84
|
+
background-color: var(--components-form-checkbox-standard-fill-selected);
|
|
148
85
|
}
|
|
149
86
|
.eds-contrast .eds-checkbox__container:active input:checked + .eds-checkbox__icon,
|
|
150
87
|
.eds-contrast .eds-checkbox__container:active input:indeterminate + .eds-checkbox__icon {
|
|
151
|
-
background-color:
|
|
88
|
+
background-color: var(--components-form-checkbox-contrast-fill-selected);
|
|
152
89
|
}
|
|
153
90
|
.eds-checkbox__container:focus + .eds-checkbox__icon,
|
|
154
91
|
.eds-checkbox__container [focus-within] + .eds-checkbox__icon {
|
|
155
|
-
outline:
|
|
156
|
-
|
|
92
|
+
outline: 2px solid #181c56;
|
|
93
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
157
94
|
outline-offset: 0.125rem;
|
|
158
95
|
}
|
|
159
96
|
.eds-checkbox__container:focus + .eds-checkbox__icon,
|
|
160
97
|
.eds-checkbox__container :focus-within + .eds-checkbox__icon {
|
|
161
|
-
outline:
|
|
162
|
-
|
|
98
|
+
outline: 2px solid #181c56;
|
|
99
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
163
100
|
outline-offset: 0.125rem;
|
|
164
101
|
}
|
|
165
102
|
.eds-contrast .eds-checkbox__container:focus + .eds-checkbox__icon,
|
|
166
103
|
.eds-contrast .eds-checkbox__container [focus-within] + .eds-checkbox__icon {
|
|
167
|
-
|
|
104
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
168
105
|
}
|
|
169
106
|
.eds-contrast .eds-checkbox__container:focus + .eds-checkbox__icon,
|
|
170
107
|
.eds-contrast .eds-checkbox__container :focus-within + .eds-checkbox__icon {
|
|
171
|
-
|
|
108
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
172
109
|
}
|
|
173
110
|
.eds-checkbox--disabled {
|
|
174
111
|
pointer-events: none;
|
|
@@ -188,17 +125,16 @@
|
|
|
188
125
|
margin-right: 1rem;
|
|
189
126
|
height: 1.25rem;
|
|
190
127
|
width: 1.25rem;
|
|
191
|
-
border: 0.125rem solid
|
|
128
|
+
border: 0.125rem solid var(--components-form-checkbox-standard-border);
|
|
192
129
|
border-radius: 0.125rem;
|
|
193
130
|
background-color: transparent;
|
|
194
|
-
color: #ffffff;
|
|
195
131
|
transition: border-color 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
196
132
|
}
|
|
197
133
|
.eds-checkbox__icon--reduced-click-area {
|
|
198
134
|
margin-right: 0;
|
|
199
135
|
}
|
|
200
136
|
.eds-contrast .eds-checkbox__icon {
|
|
201
|
-
border-color:
|
|
137
|
+
border-color: var(--components-form-checkbox-contrast-border);
|
|
202
138
|
}
|
|
203
139
|
.eds-checkbox__icon .eds-checkbox-icon {
|
|
204
140
|
height: 1rem;
|
|
@@ -219,223 +155,188 @@
|
|
|
219
155
|
}
|
|
220
156
|
/* DO NOT CHANGE!*/
|
|
221
157
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
222
|
-
.eds-
|
|
223
|
-
|
|
224
|
-
|
|
158
|
+
.eds-form-control-wrapper {
|
|
159
|
+
align-items: center;
|
|
160
|
+
background-color: var(--components-form-baseform-standard-fill-default);
|
|
161
|
+
border-radius: 0.25rem;
|
|
162
|
+
border: 0.125rem solid var(--components-form-baseform-standard-border-default);
|
|
163
|
+
box-shadow: 0 0 0 transparent;
|
|
164
|
+
color: var(--components-form-baseform-standard-text-content);
|
|
165
|
+
display: flex;
|
|
225
166
|
position: relative;
|
|
167
|
+
width: 100%;
|
|
168
|
+
min-height: 3rem;
|
|
169
|
+
transition: border-color 0.1s ease-in-out;
|
|
226
170
|
}
|
|
227
|
-
.eds-
|
|
228
|
-
color:
|
|
229
|
-
display: flex;
|
|
230
|
-
font-size: 1rem;
|
|
231
|
-
position: absolute;
|
|
232
|
-
line-height: 1rem;
|
|
233
|
-
height: 3rem;
|
|
234
|
-
padding: 1rem;
|
|
235
|
-
padding-left: 0;
|
|
236
|
-
margin-left: 1rem;
|
|
237
|
-
top: -0.125rem;
|
|
238
|
-
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;
|
|
239
|
-
-webkit-user-select: none;
|
|
240
|
-
-moz-user-select: none;
|
|
241
|
-
user-select: none;
|
|
242
|
-
pointer-events: none;
|
|
171
|
+
.eds-form-control-wrapper[focus-within], .eds-form-control-wrapper:hover {
|
|
172
|
+
border-color: var(--components-form-baseform-standard-border-interactive);
|
|
243
173
|
}
|
|
244
|
-
.eds-form-control-wrapper
|
|
245
|
-
|
|
246
|
-
font-size: 0.75rem;
|
|
247
|
-
line-height: 0.75rem;
|
|
248
|
-
height: 10px;
|
|
249
|
-
padding: 0;
|
|
250
|
-
margin-left: 1rem;
|
|
174
|
+
.eds-form-control-wrapper:focus-within, .eds-form-control-wrapper:hover {
|
|
175
|
+
border-color: var(--components-form-baseform-standard-border-interactive);
|
|
251
176
|
}
|
|
252
|
-
.eds-
|
|
253
|
-
|
|
254
|
-
background: var(--textarea-label-background);
|
|
255
|
-
width: calc(
|
|
256
|
-
100% - 1rem - 1rem - 4px
|
|
257
|
-
);
|
|
177
|
+
.eds-contrast .eds-form-control-wrapper:hover {
|
|
178
|
+
border-color: var(--components-form-baseform-contrast-border-interactive);
|
|
258
179
|
}
|
|
259
|
-
.eds-form-control-wrapper
|
|
260
|
-
|
|
261
|
-
font-size: 0.875rem;
|
|
262
|
-
line-height: 1rem;
|
|
263
|
-
padding: 0;
|
|
264
|
-
margin-left: 1rem;
|
|
180
|
+
.eds-form-control-wrapper[focus-within] {
|
|
181
|
+
outline: 1px solid var(--components-form-baseform-standard-border-interactive);
|
|
265
182
|
}
|
|
266
|
-
.eds-
|
|
267
|
-
|
|
183
|
+
.eds-form-control-wrapper:focus-within {
|
|
184
|
+
outline: 1px solid var(--components-form-baseform-standard-border-interactive);
|
|
268
185
|
}
|
|
269
|
-
.eds-form-control-wrapper
|
|
270
|
-
|
|
271
|
-
line-height: 2.25rem;
|
|
272
|
-
height: 4rem;
|
|
273
|
-
top: -0.25rem;
|
|
186
|
+
.eds-contrast .eds-form-control-wrapper[focus-within] {
|
|
187
|
+
outline: var(--components-form-baseform-contrast-border-interactive);
|
|
274
188
|
}
|
|
275
|
-
.eds-
|
|
276
|
-
|
|
277
|
-
font-size: 0.75rem;
|
|
278
|
-
line-height: 0.75rem;
|
|
279
|
-
height: 10px;
|
|
280
|
-
padding: 0;
|
|
281
|
-
margin-left: 1rem;
|
|
189
|
+
.eds-contrast .eds-form-control-wrapper:focus-within {
|
|
190
|
+
outline: var(--components-form-baseform-contrast-border-interactive);
|
|
282
191
|
}
|
|
283
|
-
.eds-
|
|
284
|
-
|
|
285
|
-
background: var(--textarea-label-background);
|
|
286
|
-
width: calc(
|
|
287
|
-
100% - 1rem - 1rem - 4px
|
|
288
|
-
);
|
|
192
|
+
.eds-form-control-wrapper ::-moz-placeholder {
|
|
193
|
+
color: var(--components-form-baseform-standard-text-label);
|
|
289
194
|
}
|
|
290
|
-
.eds-form-control-wrapper
|
|
291
|
-
|
|
292
|
-
font-size: 0.875rem;
|
|
293
|
-
line-height: 1rem;
|
|
294
|
-
padding: 0;
|
|
295
|
-
margin-left: 1rem;
|
|
195
|
+
.eds-form-control-wrapper ::placeholder {
|
|
196
|
+
color: var(--components-form-baseform-standard-text-label);
|
|
296
197
|
}
|
|
297
|
-
.eds-
|
|
298
|
-
color:
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
align-items: center;
|
|
303
|
-
cursor: help;
|
|
304
|
-
font-size: 1rem;
|
|
198
|
+
.eds-form-control-wrapper--disabled {
|
|
199
|
+
border-color: transparent;
|
|
200
|
+
background-color: var(--components-form-baseform-standard-fill-disabled);
|
|
201
|
+
pointer-events: none;
|
|
202
|
+
color: var(--components-form-baseform-standard-text-disabled);
|
|
305
203
|
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
top: 0.375rem;
|
|
309
|
-
font-size: 0.75rem;
|
|
310
|
-
line-height: 0.75rem;
|
|
311
|
-
height: 10px;
|
|
312
|
-
padding: 0;
|
|
313
|
-
margin-left: 1rem;
|
|
204
|
+
.eds-form-control-wrapper--disabled .eds-input-group__label {
|
|
205
|
+
color: var(--components-form-baseform-standard-text-disabled);
|
|
314
206
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
line-height: 0.75rem;
|
|
320
|
-
height: 10px;
|
|
321
|
-
padding: 0;
|
|
322
|
-
margin-left: 1rem;
|
|
207
|
+
.eds-contrast .eds-form-control-wrapper--disabled {
|
|
208
|
+
border-color: transparent;
|
|
209
|
+
background-color: var(--components-form-baseform-contrast-fill-disabled);
|
|
210
|
+
color: var(--components-form-baseform-contrast-text-disabled);
|
|
323
211
|
}
|
|
324
|
-
.eds-
|
|
325
|
-
|
|
326
|
-
background: var(--textarea-label-background);
|
|
327
|
-
width: calc(
|
|
328
|
-
100% - 1rem - 1rem - 4px
|
|
329
|
-
);
|
|
212
|
+
.eds-contrast .eds-form-control-wrapper--disabled .eds-input-group__label {
|
|
213
|
+
color: var(--components-form-baseform-contrast-text-disabled);
|
|
330
214
|
}
|
|
331
|
-
.eds-
|
|
332
|
-
|
|
333
|
-
background: var(--textarea-label-background);
|
|
334
|
-
width: calc(
|
|
335
|
-
100% - 1rem - 1rem - 4px
|
|
336
|
-
);
|
|
215
|
+
.eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
|
|
216
|
+
display: none;
|
|
337
217
|
}
|
|
338
|
-
.eds-form-control-wrapper--
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
218
|
+
.eds-form-control-wrapper--readonly {
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
pointer-events: none;
|
|
221
|
+
cursor: default;
|
|
222
|
+
background: var(--components-form-baseform-standard-fill-readonly);
|
|
223
|
+
border: var(--components-form-baseform-standard-fill-readonly);
|
|
344
224
|
}
|
|
345
|
-
.eds-form-control-wrapper--
|
|
346
|
-
|
|
347
|
-
|
|
225
|
+
.eds-contrast .eds-form-control-wrapper--readonly {
|
|
226
|
+
background: var(--components-form-baseform-contrast-fill-readonly);
|
|
227
|
+
color: var(--components-form-baseform-contrast-text-description);
|
|
228
|
+
border: var(--components-form-baseform-contrast-fill-readonly);
|
|
229
|
+
}
|
|
230
|
+
.eds-contrast .eds-form-control-wrapper--readonly .eds-input-group__label {
|
|
231
|
+
color: var(--components-form-baseform-contrast-text-description);
|
|
232
|
+
}
|
|
233
|
+
.eds-form-control-wrapper--readonly::before, .eds-form-control-wrapper--readonly::after {
|
|
234
|
+
display: none;
|
|
235
|
+
}
|
|
236
|
+
.eds-form-control-wrapper--size-medium .eds-form-control,
|
|
237
|
+
.eds-form-control-wrapper--size-medium .eds-form-control__append,
|
|
238
|
+
.eds-form-control-wrapper--size-medium .eds-form-control__prepend {
|
|
239
|
+
font-size: 1rem;
|
|
348
240
|
line-height: 1rem;
|
|
349
|
-
padding: 0;
|
|
350
|
-
margin-left: 1rem;
|
|
351
241
|
}
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
.
|
|
355
|
-
display: flex;
|
|
356
|
-
justify-content: center;
|
|
357
|
-
align-items: center;
|
|
358
|
-
position: relative;
|
|
359
|
-
cursor: pointer;
|
|
360
|
-
height: 2rem;
|
|
361
|
-
width: -moz-fit-content;
|
|
362
|
-
width: fit-content;
|
|
363
|
-
-webkit-user-select: none;
|
|
364
|
-
-moz-user-select: none;
|
|
365
|
-
user-select: none;
|
|
242
|
+
.eds-form-control-wrapper--size-large {
|
|
243
|
+
min-height: 4rem;
|
|
244
|
+
padding: 0 0.5rem;
|
|
366
245
|
}
|
|
367
|
-
.eds-form-
|
|
368
|
-
border-
|
|
246
|
+
.eds-form-control-wrapper--size-large::before, .eds-form-control-wrapper--size-large::after {
|
|
247
|
+
border-width: 0.25rem;
|
|
369
248
|
}
|
|
370
|
-
.eds-form-
|
|
371
|
-
|
|
249
|
+
.eds-form-control-wrapper--size-large .eds-form-control,
|
|
250
|
+
.eds-form-control-wrapper--size-large .eds-form-control__append,
|
|
251
|
+
.eds-form-control-wrapper--size-large .eds-form-control__prepend {
|
|
252
|
+
font-size: 1.5rem;
|
|
253
|
+
line-height: 2.25rem;
|
|
372
254
|
}
|
|
373
|
-
.eds-
|
|
374
|
-
border-color:
|
|
255
|
+
.eds-form-control-wrapper--success {
|
|
256
|
+
border-color: var(--components-form-baseform-standard-border-success);
|
|
375
257
|
}
|
|
376
|
-
.eds-
|
|
377
|
-
|
|
258
|
+
.eds-form-control-wrapper--success[focus-within] {
|
|
259
|
+
border-color: var(--components-form-baseform-standard-border-success);
|
|
378
260
|
}
|
|
379
|
-
.eds-form-
|
|
380
|
-
|
|
381
|
-
opacity: 0;
|
|
382
|
-
cursor: pointer;
|
|
383
|
-
height: 0;
|
|
384
|
-
width: 0;
|
|
261
|
+
.eds-form-control-wrapper--success:focus-within {
|
|
262
|
+
border-color: var(--components-form-baseform-standard-border-success);
|
|
385
263
|
}
|
|
386
|
-
.eds-
|
|
387
|
-
|
|
388
|
-
width: 0.625rem;
|
|
264
|
+
.eds-contrast .eds-form-control-wrapper--success {
|
|
265
|
+
border-color: var(--components-form-baseform-standard-border-success);
|
|
389
266
|
}
|
|
390
|
-
.eds-
|
|
391
|
-
|
|
392
|
-
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
393
|
-
outline-offset: 0.125rem;
|
|
267
|
+
.eds-contrast .eds-form-control-wrapper--success[focus-within] {
|
|
268
|
+
border-color: var(--components-form-baseform-contrast-border-success);
|
|
394
269
|
}
|
|
395
|
-
.eds-contrast .eds-form-
|
|
396
|
-
|
|
270
|
+
.eds-contrast .eds-form-control-wrapper--success:focus-within {
|
|
271
|
+
border-color: var(--components-form-baseform-contrast-border-success);
|
|
397
272
|
}
|
|
398
|
-
.eds-form-
|
|
399
|
-
|
|
400
|
-
height: 1.25rem;
|
|
401
|
-
width: 1.25rem;
|
|
402
|
-
margin-right: 1rem;
|
|
403
|
-
background-color: #ffffff;
|
|
404
|
-
border: 0.125rem solid #181c56;
|
|
405
|
-
border-radius: 50%;
|
|
406
|
-
display: flex;
|
|
407
|
-
align-items: center;
|
|
408
|
-
justify-content: center;
|
|
273
|
+
.eds-form-control-wrapper--error {
|
|
274
|
+
border-color: var(--components-form-baseform-standard-border-negative);
|
|
409
275
|
}
|
|
410
|
-
.eds-
|
|
411
|
-
|
|
412
|
-
border-color: #aeb7e2;
|
|
276
|
+
.eds-form-control-wrapper--error[focus-within] {
|
|
277
|
+
border-color: var(--components-form-baseform-standard-border-negative);
|
|
413
278
|
}
|
|
414
|
-
.eds-form-
|
|
415
|
-
|
|
416
|
-
border-color: #d1d3d3;
|
|
417
|
-
cursor: not-allowed;
|
|
279
|
+
.eds-form-control-wrapper--error:focus-within {
|
|
280
|
+
border-color: var(--components-form-baseform-standard-border-negative);
|
|
418
281
|
}
|
|
419
|
-
.eds-
|
|
420
|
-
border-color:
|
|
282
|
+
.eds-contrast .eds-form-control-wrapper--error {
|
|
283
|
+
border-color: var(--components-form-baseform-contrast-border-negative);
|
|
421
284
|
}
|
|
422
|
-
.eds-contrast .eds-form-
|
|
423
|
-
|
|
424
|
-
border-color: #d1d3d3;
|
|
285
|
+
.eds-contrast .eds-form-control-wrapper--error[focus-within] {
|
|
286
|
+
border-color: var(--components-form-baseform-contrast-border-negative);
|
|
425
287
|
}
|
|
426
|
-
.eds-
|
|
427
|
-
color:
|
|
288
|
+
.eds-contrast .eds-form-control-wrapper--error:focus-within {
|
|
289
|
+
border-color: var(--components-form-baseform-contrast-border-negative);
|
|
428
290
|
}
|
|
429
|
-
|
|
291
|
+
|
|
292
|
+
.eds-form-control {
|
|
293
|
+
-webkit-appearance: none;
|
|
294
|
+
-moz-appearance: none;
|
|
295
|
+
appearance: none;
|
|
296
|
+
background-color: transparent;
|
|
297
|
+
border: 0;
|
|
298
|
+
color: var(--components-form-baseform-standard-text-content);
|
|
430
299
|
display: block;
|
|
431
|
-
|
|
432
|
-
height:
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
300
|
+
font-family: inherit;
|
|
301
|
+
line-height: 1rem;
|
|
302
|
+
font-size: 1rem;
|
|
303
|
+
padding: 20px 1rem 0.25rem;
|
|
304
|
+
width: 100%;
|
|
436
305
|
}
|
|
437
|
-
.eds-
|
|
438
|
-
|
|
306
|
+
.eds-form-control::-moz-placeholder {
|
|
307
|
+
opacity: 0;
|
|
308
|
+
-moz-transition: opacity 0.2s ease-in-out;
|
|
309
|
+
transition: opacity 0.2s ease-in-out;
|
|
310
|
+
}
|
|
311
|
+
.eds-form-control::placeholder {
|
|
312
|
+
opacity: 0;
|
|
313
|
+
transition: opacity 0.2s ease-in-out;
|
|
314
|
+
}
|
|
315
|
+
.eds-form-control:focus {
|
|
316
|
+
outline: none;
|
|
317
|
+
}
|
|
318
|
+
.eds-form-control:focus::-moz-placeholder {
|
|
319
|
+
opacity: 1;
|
|
320
|
+
}
|
|
321
|
+
.eds-form-control:focus::placeholder {
|
|
322
|
+
opacity: 1;
|
|
323
|
+
}
|
|
324
|
+
.eds-form-control__prepend, .eds-form-control__append {
|
|
325
|
+
position: relative;
|
|
326
|
+
margin: 0 1rem;
|
|
327
|
+
line-height: inherit;
|
|
328
|
+
}
|
|
329
|
+
.eds-form-control__prepend--tooltip, .eds-form-control__append--tooltip {
|
|
330
|
+
position: static;
|
|
331
|
+
}
|
|
332
|
+
.eds-form-control__prepend svg, .eds-form-control__append svg {
|
|
333
|
+
top: 0.125rem;
|
|
334
|
+
}
|
|
335
|
+
.eds-form-control__prepend {
|
|
336
|
+
margin-right: 0;
|
|
337
|
+
}
|
|
338
|
+
.eds-form-control__append {
|
|
339
|
+
margin-left: 0;
|
|
439
340
|
}
|
|
440
341
|
/* DO NOT CHANGE!*/
|
|
441
342
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
@@ -473,7 +374,7 @@
|
|
|
473
374
|
justify-content: center;
|
|
474
375
|
transition: left 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
475
376
|
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
476
|
-
background-color:
|
|
377
|
+
background-color: var(--components-form-switch-standard-switch);
|
|
477
378
|
top: 0.125rem;
|
|
478
379
|
left: 0.125rem;
|
|
479
380
|
position: relative;
|
|
@@ -487,7 +388,7 @@
|
|
|
487
388
|
}
|
|
488
389
|
.eds-switch__switch {
|
|
489
390
|
position: relative;
|
|
490
|
-
background-color:
|
|
391
|
+
background-color: var(--components-form-switch-standard-fill-false);
|
|
491
392
|
content: "";
|
|
492
393
|
display: block;
|
|
493
394
|
transition: background-color 0.1s ease-in-out;
|
|
@@ -497,19 +398,19 @@
|
|
|
497
398
|
box-shadow: inset 0px 2px 2px -1px rgba(0, 0, 0, 0.1);
|
|
498
399
|
}
|
|
499
400
|
.eds-contrast .eds-switch__switch {
|
|
500
|
-
background-color:
|
|
401
|
+
background-color: var(--components-form-switch-contrast-fill-false);
|
|
501
402
|
}
|
|
502
403
|
.eds-switch--right .eds-switch__switch {
|
|
503
404
|
margin-right: 0.75rem;
|
|
504
405
|
}
|
|
505
406
|
.eds-switch__switch svg g,
|
|
506
407
|
.eds-switch__switch path {
|
|
507
|
-
fill:
|
|
408
|
+
fill: var(--components-form-switch-standard-icon-false);
|
|
508
409
|
transition: fill ease-in-out 0.1s;
|
|
509
410
|
}
|
|
510
411
|
.eds-contrast .eds-switch__switch svg g,
|
|
511
412
|
.eds-contrast .eds-switch__switch path {
|
|
512
|
-
fill:
|
|
413
|
+
fill: var(--components-form-switch-contrast-icon-false);
|
|
513
414
|
}
|
|
514
415
|
:checked + .eds-switch__switch {
|
|
515
416
|
background-color: var(--eds-switch-color);
|
|
@@ -525,12 +426,12 @@
|
|
|
525
426
|
background-color: var(--eds-switch-contrast-color);
|
|
526
427
|
}
|
|
527
428
|
:focus + .eds-switch__switch {
|
|
528
|
-
outline:
|
|
529
|
-
|
|
429
|
+
outline: 2px solid #181c56;
|
|
430
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
530
431
|
outline-offset: 0.125rem;
|
|
531
432
|
}
|
|
532
433
|
.eds-contrast :focus + .eds-switch__switch {
|
|
533
|
-
|
|
434
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
534
435
|
}
|
|
535
436
|
.eds-switch__switch--large {
|
|
536
437
|
width: 3.75rem;
|
|
@@ -558,263 +459,310 @@
|
|
|
558
459
|
}
|
|
559
460
|
/* DO NOT CHANGE!*/
|
|
560
461
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
561
|
-
.eds-
|
|
562
|
-
--border-color: #7C7F9F;
|
|
563
|
-
--border-color-hover: #aeb7e2;
|
|
564
|
-
align-items: center;
|
|
565
|
-
background-color: #ffffff;
|
|
566
|
-
border-radius: 0.25rem;
|
|
567
|
-
border: 0.125rem solid var(--border-color);
|
|
568
|
-
box-shadow: 0 0 0 transparent;
|
|
569
|
-
color: #181c56;
|
|
462
|
+
.eds-feedback-text {
|
|
570
463
|
display: flex;
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
min-height: 3rem;
|
|
574
|
-
transition: border-color 0.1s ease-in-out;
|
|
575
|
-
--textarea-label-background: t.$colors-brand-white;
|
|
576
|
-
/*
|
|
577
|
-
Some input controls require a darker design while inside a contrast block.
|
|
578
|
-
These elements require the `--dark` modifier, even on the wrapper.
|
|
579
|
-
*/
|
|
580
|
-
}
|
|
581
|
-
.eds-form-control-wrapper[focus-within], .eds-form-control-wrapper:hover {
|
|
582
|
-
--border-color: #181c56;
|
|
583
|
-
}
|
|
584
|
-
.eds-form-control-wrapper:focus-within, .eds-form-control-wrapper:hover {
|
|
585
|
-
--border-color: #181c56;
|
|
586
|
-
}
|
|
587
|
-
.eds-contrast .eds-form-control-wrapper:hover {
|
|
588
|
-
--border-color: #aeb7e2;
|
|
589
|
-
}
|
|
590
|
-
.eds-form-control-wrapper[focus-within] {
|
|
591
|
-
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
592
|
-
}
|
|
593
|
-
.eds-form-control-wrapper:focus-within {
|
|
594
|
-
box-shadow: inset 0 0 0 1px var(--border-color);
|
|
595
|
-
}
|
|
596
|
-
.eds-contrast .eds-form-control-wrapper[focus-within] {
|
|
597
|
-
--border-color: #181c56;
|
|
598
|
-
box-shadow: 0 0 0 0.125rem #aeb7e2;
|
|
599
|
-
}
|
|
600
|
-
.eds-contrast .eds-form-control-wrapper:focus-within {
|
|
601
|
-
--border-color: #181c56;
|
|
602
|
-
box-shadow: 0 0 0 0.125rem #aeb7e2;
|
|
603
|
-
}
|
|
604
|
-
.eds-form-control-wrapper ::-moz-placeholder {
|
|
605
|
-
color: #656782;
|
|
606
|
-
}
|
|
607
|
-
.eds-form-control-wrapper ::placeholder {
|
|
608
|
-
color: #656782;
|
|
609
|
-
}
|
|
610
|
-
.eds-form-control-wrapper--disabled {
|
|
611
|
-
--border-color: transparent;
|
|
612
|
-
background-color: #e9e9e9;
|
|
613
|
-
pointer-events: none;
|
|
614
|
-
color: #646464;
|
|
615
|
-
}
|
|
616
|
-
.eds-form-control-wrapper--disabled .eds-input-group__label {
|
|
617
|
-
color: #646464;
|
|
618
|
-
}
|
|
619
|
-
.eds-contrast .eds-form-control-wrapper--disabled {
|
|
620
|
-
background: #292b6a;
|
|
621
|
-
color: #8285a8;
|
|
622
|
-
}
|
|
623
|
-
.eds-contrast .eds-form-control-wrapper--disabled .eds-input-group__label {
|
|
624
|
-
color: #8285a8;
|
|
625
|
-
}
|
|
626
|
-
.eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
|
|
627
|
-
display: none;
|
|
628
|
-
}
|
|
629
|
-
.eds-form-control-wrapper--readonly {
|
|
630
|
-
--border-color: transparent;
|
|
631
|
-
--textarea-label-background: t.$colors-greys-grey90;
|
|
632
|
-
pointer-events: none;
|
|
633
|
-
cursor: default;
|
|
634
|
-
background: #f8f8f8;
|
|
464
|
+
align-items: center;
|
|
465
|
+
margin-top: 0.25rem;
|
|
635
466
|
}
|
|
636
|
-
.eds-
|
|
637
|
-
|
|
638
|
-
background: #292b6a;
|
|
639
|
-
color: #ffffff;
|
|
467
|
+
.eds-feedback-text--info {
|
|
468
|
+
padding-left: calc(1rem + 0.125rem);
|
|
640
469
|
}
|
|
641
|
-
.eds-
|
|
642
|
-
color:
|
|
470
|
+
.eds-feedback-text__text {
|
|
471
|
+
color: var(--components-form-feedbacktext-information-standard-text);
|
|
643
472
|
}
|
|
644
|
-
.eds-
|
|
645
|
-
|
|
473
|
+
.eds-contrast .eds-feedback-text__text {
|
|
474
|
+
color: var(--components-form-feedbacktext-information-contrast-text);
|
|
646
475
|
}
|
|
647
|
-
|
|
648
|
-
.eds-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
476
|
+
|
|
477
|
+
.eds-feedback-text__icon {
|
|
478
|
+
font-size: 1.5rem;
|
|
479
|
+
min-height: 1.5rem;
|
|
480
|
+
min-width: 1.5rem;
|
|
481
|
+
padding-right: 0.5rem;
|
|
482
|
+
position: relative;
|
|
483
|
+
top: -0.1rem;
|
|
652
484
|
}
|
|
653
|
-
.eds-
|
|
654
|
-
|
|
655
|
-
padding: 0 0.5rem;
|
|
485
|
+
.eds-feedback-text__icon--success {
|
|
486
|
+
color: var(--components-form-feedbacktext-success-standard-icon-fill);
|
|
656
487
|
}
|
|
657
|
-
.eds-
|
|
658
|
-
|
|
488
|
+
.eds-feedback-text__icon--success circle {
|
|
489
|
+
fill: var(--components-form-feedbacktext-success-standard-icon-symbol);
|
|
659
490
|
}
|
|
660
|
-
.eds-
|
|
661
|
-
|
|
662
|
-
.eds-form-control-wrapper--size-large .eds-form-control__prepend {
|
|
663
|
-
font-size: 1.5rem;
|
|
664
|
-
line-height: 2.25rem;
|
|
491
|
+
.eds-contrast .eds-feedback-text__icon--success {
|
|
492
|
+
color: var(--components-form-feedbacktext-success-contrast-icon-fill);
|
|
665
493
|
}
|
|
666
|
-
.eds-
|
|
667
|
-
|
|
668
|
-
--border-color: #1a8e60;
|
|
494
|
+
.eds-contrast .eds-feedback-text__icon--success circle {
|
|
495
|
+
fill: var(--components-form-feedbacktext-success-contrast-icon-symbol);
|
|
669
496
|
}
|
|
670
|
-
.eds-
|
|
671
|
-
|
|
497
|
+
.eds-feedback-text__icon--error {
|
|
498
|
+
color: var(--components-form-feedbacktext-negative-standard-icon-fill);
|
|
672
499
|
}
|
|
673
|
-
.eds-
|
|
674
|
-
|
|
500
|
+
.eds-feedback-text__icon--error circle {
|
|
501
|
+
fill: var(--components-form-feedbacktext-negative-standard-icon-symbol);
|
|
675
502
|
}
|
|
676
|
-
.eds-
|
|
677
|
-
|
|
503
|
+
.eds-contrast .eds-feedback-text__icon--error {
|
|
504
|
+
color: var(--components-form-feedbacktext-negative-contrast-icon-fill);
|
|
678
505
|
}
|
|
679
|
-
.eds-contrast .eds-
|
|
680
|
-
|
|
681
|
-
--border-color: #5ac39a;
|
|
506
|
+
.eds-contrast .eds-feedback-text__icon--error circle {
|
|
507
|
+
fill: var(--components-form-feedbacktext-negative-contrast-icon-symbol);
|
|
682
508
|
}
|
|
683
|
-
.eds-
|
|
684
|
-
|
|
509
|
+
.eds-feedback-text__icon--info {
|
|
510
|
+
color: var(--components-form-feedbacktext-information-standard-icon-fill);
|
|
685
511
|
}
|
|
686
|
-
.eds-
|
|
687
|
-
--
|
|
688
|
-
border-color: #181c56;
|
|
512
|
+
.eds-feedback-text__icon--info circle {
|
|
513
|
+
fill: var(--components-form-feedbacktext-information-standard-icon-symbol);
|
|
689
514
|
}
|
|
690
|
-
.eds-contrast .eds-
|
|
691
|
-
|
|
692
|
-
border-color: #181c56;
|
|
515
|
+
.eds-contrast .eds-feedback-text__icon--info {
|
|
516
|
+
color: var(--components-form-feedbacktext-information-contrast-icon-fill);
|
|
693
517
|
}
|
|
694
|
-
.eds-
|
|
695
|
-
|
|
696
|
-
--border-color: #d31b1b;
|
|
518
|
+
.eds-contrast .eds-feedback-text__icon--info circle {
|
|
519
|
+
fill: var(--components-form-feedbacktext-information-contrast-icon-symbol);
|
|
697
520
|
}
|
|
698
|
-
.eds-
|
|
699
|
-
|
|
521
|
+
.eds-feedback-text__icon--warning {
|
|
522
|
+
color: var(--components-form-feedbacktext-warning-standard-icon-fill);
|
|
700
523
|
}
|
|
701
|
-
.eds-
|
|
702
|
-
|
|
524
|
+
.eds-feedback-text__icon--warning circle {
|
|
525
|
+
fill: var(--components-form-feedbacktext-warning-standard-icon-symbol);
|
|
703
526
|
}
|
|
704
|
-
.eds-
|
|
705
|
-
|
|
527
|
+
.eds-contrast .eds-feedback-text__icon--warning {
|
|
528
|
+
color: var(--components-form-feedbacktext-warning-contrast-icon-fill);
|
|
706
529
|
}
|
|
707
|
-
.eds-contrast .eds-
|
|
708
|
-
|
|
709
|
-
--border-color: #ff9494;
|
|
530
|
+
.eds-contrast .eds-feedback-text__icon--warning circle {
|
|
531
|
+
fill: var(--components-form-feedbacktext-warning-contrast-icon-symbol);
|
|
710
532
|
}
|
|
711
|
-
.eds-
|
|
712
|
-
|
|
533
|
+
.eds-fieldset {
|
|
534
|
+
margin: 0;
|
|
535
|
+
padding: 0;
|
|
536
|
+
border: 0;
|
|
713
537
|
}
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
538
|
+
/* DO NOT CHANGE!*/
|
|
539
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
540
|
+
.eds-input-group {
|
|
541
|
+
color: inherit;
|
|
542
|
+
display: block;
|
|
543
|
+
position: relative;
|
|
717
544
|
}
|
|
718
|
-
.eds-
|
|
719
|
-
|
|
720
|
-
|
|
545
|
+
.eds-input-group__label {
|
|
546
|
+
color: var(--components-form-baseform-standard-text-label);
|
|
547
|
+
display: flex;
|
|
548
|
+
font-size: 1rem;
|
|
549
|
+
position: absolute;
|
|
550
|
+
line-height: 1rem;
|
|
551
|
+
height: 3rem;
|
|
552
|
+
padding: 1rem;
|
|
553
|
+
padding-left: 0;
|
|
554
|
+
margin-left: 1rem;
|
|
555
|
+
top: -0.125rem;
|
|
556
|
+
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;
|
|
557
|
+
-webkit-user-select: none;
|
|
558
|
+
-moz-user-select: none;
|
|
559
|
+
user-select: none;
|
|
560
|
+
pointer-events: none;
|
|
561
|
+
}
|
|
562
|
+
.eds-form-control-wrapper--is-filled .eds-input-group__label {
|
|
563
|
+
top: 0.375rem;
|
|
564
|
+
font-size: 0.75rem;
|
|
565
|
+
line-height: 0.75rem;
|
|
566
|
+
height: 10px;
|
|
567
|
+
padding: 0;
|
|
568
|
+
margin-left: 1rem;
|
|
721
569
|
}
|
|
722
|
-
.eds-
|
|
723
|
-
|
|
724
|
-
|
|
570
|
+
.eds-textarea__label .eds-form-control-wrapper--is-filled .eds-input-group__label {
|
|
571
|
+
box-shadow: 0px -2px 0px 4px var(--textarea-label-background);
|
|
572
|
+
background: var(--textarea-label-background);
|
|
573
|
+
width: calc(100% - 1rem - 1rem - 4px);
|
|
725
574
|
}
|
|
726
|
-
.eds-
|
|
727
|
-
|
|
575
|
+
.eds-form-control-wrapper--size-large .eds-form-control-wrapper--is-filled .eds-input-group__label {
|
|
576
|
+
top: 0.5rem;
|
|
577
|
+
font-size: 0.875rem;
|
|
578
|
+
line-height: 1rem;
|
|
579
|
+
padding: 0;
|
|
580
|
+
margin-left: 1rem;
|
|
728
581
|
}
|
|
729
|
-
.eds-
|
|
730
|
-
|
|
582
|
+
.eds-form-control-wrapper--size-large .eds-input-group__label {
|
|
583
|
+
font-size: 1.5rem;
|
|
584
|
+
line-height: 2.25rem;
|
|
585
|
+
height: 4rem;
|
|
586
|
+
top: -0.25rem;
|
|
731
587
|
}
|
|
732
|
-
.eds-
|
|
733
|
-
|
|
588
|
+
.eds-input-group__label--filled {
|
|
589
|
+
top: 0.375rem;
|
|
590
|
+
font-size: 0.75rem;
|
|
591
|
+
line-height: 0.75rem;
|
|
592
|
+
height: 10px;
|
|
593
|
+
padding: 0;
|
|
594
|
+
margin-left: 1rem;
|
|
734
595
|
}
|
|
735
|
-
.eds-
|
|
736
|
-
|
|
737
|
-
|
|
596
|
+
.eds-textarea__label .eds-input-group__label--filled {
|
|
597
|
+
box-shadow: 0px -2px 0px 4px var(--textarea-label-background);
|
|
598
|
+
background: var(--textarea-label-background);
|
|
599
|
+
width: calc(100% - 1rem - 1rem - 4px);
|
|
738
600
|
}
|
|
739
|
-
.eds-
|
|
740
|
-
|
|
741
|
-
|
|
601
|
+
.eds-form-control-wrapper--size-large .eds-input-group__label--filled {
|
|
602
|
+
top: 0.5rem;
|
|
603
|
+
font-size: 0.875rem;
|
|
604
|
+
line-height: 1rem;
|
|
605
|
+
padding: 0;
|
|
606
|
+
margin-left: 1rem;
|
|
742
607
|
}
|
|
743
|
-
.eds-
|
|
744
|
-
|
|
745
|
-
|
|
608
|
+
.eds-input-group__label-tooltip-icon {
|
|
609
|
+
color: var(--base-colors-shape-accent);
|
|
610
|
+
padding-left: 0.25rem;
|
|
611
|
+
padding-right: 0.25rem;
|
|
612
|
+
display: flex;
|
|
613
|
+
align-items: center;
|
|
614
|
+
cursor: help;
|
|
615
|
+
font-size: 1rem;
|
|
746
616
|
}
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
617
|
+
|
|
618
|
+
.eds-form-control-wrapper[focus-within] .eds-input-group__label {
|
|
619
|
+
top: 0.375rem;
|
|
620
|
+
font-size: 0.75rem;
|
|
621
|
+
line-height: 0.75rem;
|
|
622
|
+
height: 10px;
|
|
623
|
+
padding: 0;
|
|
624
|
+
margin-left: 1rem;
|
|
750
625
|
}
|
|
751
626
|
|
|
752
|
-
.eds-form-control {
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
627
|
+
.eds-form-control-wrapper:focus-within .eds-input-group__label {
|
|
628
|
+
top: 0.375rem;
|
|
629
|
+
font-size: 0.75rem;
|
|
630
|
+
line-height: 0.75rem;
|
|
631
|
+
height: 10px;
|
|
632
|
+
padding: 0;
|
|
633
|
+
margin-left: 1rem;
|
|
634
|
+
}
|
|
635
|
+
.eds-textarea__label .eds-form-control-wrapper[focus-within] .eds-input-group__label {
|
|
636
|
+
box-shadow: 0px -2px 0px 4px var(--textarea-label-background);
|
|
637
|
+
background: var(--textarea-label-background);
|
|
638
|
+
width: calc(100% - 1rem - 1rem - 4px);
|
|
639
|
+
}
|
|
640
|
+
.eds-textarea__label .eds-form-control-wrapper:focus-within .eds-input-group__label {
|
|
641
|
+
box-shadow: 0px -2px 0px 4px var(--textarea-label-background);
|
|
642
|
+
background: var(--textarea-label-background);
|
|
643
|
+
width: calc(100% - 1rem - 1rem - 4px);
|
|
644
|
+
}
|
|
645
|
+
.eds-form-control-wrapper--size-large[focus-within] .eds-input-group__label {
|
|
646
|
+
top: 0.5rem;
|
|
647
|
+
font-size: 0.875rem;
|
|
761
648
|
line-height: 1rem;
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
width: 100%;
|
|
649
|
+
padding: 0;
|
|
650
|
+
margin-left: 1rem;
|
|
765
651
|
}
|
|
766
|
-
.eds-form-control
|
|
767
|
-
|
|
768
|
-
-
|
|
769
|
-
|
|
652
|
+
.eds-form-control-wrapper--size-large:focus-within .eds-input-group__label {
|
|
653
|
+
top: 0.5rem;
|
|
654
|
+
font-size: 0.875rem;
|
|
655
|
+
line-height: 1rem;
|
|
656
|
+
padding: 0;
|
|
657
|
+
margin-left: 1rem;
|
|
770
658
|
}
|
|
771
|
-
.eds-form-control
|
|
659
|
+
.eds-contrast .eds-form-control-wrapper .eds-tooltip {
|
|
660
|
+
background: var(--components-tooltip-tooltip-standard-fill);
|
|
661
|
+
color: var(--components-tooltip-tooltip-standard-text);
|
|
662
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
663
|
+
}
|
|
664
|
+
.eds-form-control-wrapper .eds-tooltip::after {
|
|
665
|
+
background: var(--components-tooltip-tooltip-standard-fill);
|
|
666
|
+
}
|
|
667
|
+
/* DO NOT CHANGE!*/
|
|
668
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
669
|
+
.eds-form-component--radio__container {
|
|
670
|
+
display: flex;
|
|
671
|
+
justify-content: center;
|
|
672
|
+
align-items: center;
|
|
673
|
+
position: relative;
|
|
674
|
+
cursor: pointer;
|
|
675
|
+
height: 2rem;
|
|
676
|
+
width: -moz-fit-content;
|
|
677
|
+
width: fit-content;
|
|
678
|
+
-webkit-user-select: none;
|
|
679
|
+
-moz-user-select: none;
|
|
680
|
+
user-select: none;
|
|
681
|
+
}
|
|
682
|
+
.eds-form-component--radio__container :hover ~ .eds-form-component--radio__radio {
|
|
683
|
+
background-color: var(--components-form-radio-standard-fill-hover);
|
|
684
|
+
}
|
|
685
|
+
.eds-contrast .eds-form-component--radio__container :hover ~ .eds-form-component--radio__radio {
|
|
686
|
+
background-color: var(--components-form-radio-contrast-fill-hover);
|
|
687
|
+
}
|
|
688
|
+
.eds-form-component--radio__container input {
|
|
689
|
+
position: absolute;
|
|
772
690
|
opacity: 0;
|
|
773
|
-
|
|
691
|
+
cursor: pointer;
|
|
692
|
+
height: 0;
|
|
693
|
+
width: 0;
|
|
774
694
|
}
|
|
775
|
-
.eds-form-
|
|
776
|
-
|
|
695
|
+
.eds-form-component--radio__container input:checked ~ .eds-form-component--radio__radio .eds-form-component--radio__circle {
|
|
696
|
+
height: 0.625rem;
|
|
697
|
+
width: 0.625rem;
|
|
777
698
|
}
|
|
778
|
-
.eds-form-
|
|
779
|
-
|
|
699
|
+
.eds-form-component--radio__container input:focus ~ .eds-form-component--radio__radio {
|
|
700
|
+
outline: 2px solid #181c56;
|
|
701
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
702
|
+
outline-offset: 0.125rem;
|
|
780
703
|
}
|
|
781
|
-
.eds-form-
|
|
782
|
-
|
|
704
|
+
.eds-contrast .eds-form-component--radio__container input:focus ~ .eds-form-component--radio__radio {
|
|
705
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
783
706
|
}
|
|
784
|
-
.eds-form-
|
|
707
|
+
.eds-form-component--radio__container .eds-form-component--radio__radio {
|
|
785
708
|
position: relative;
|
|
786
|
-
|
|
787
|
-
|
|
709
|
+
height: 1.25rem;
|
|
710
|
+
width: 1.25rem;
|
|
711
|
+
margin-right: 1rem;
|
|
712
|
+
background-color: var(--components-form-radio-standard-fill-default);
|
|
713
|
+
border: 0.125rem solid var(--components-form-radio-standard-border);
|
|
714
|
+
border-radius: 50%;
|
|
715
|
+
display: flex;
|
|
716
|
+
align-items: center;
|
|
717
|
+
justify-content: center;
|
|
788
718
|
}
|
|
789
|
-
.eds-form-
|
|
790
|
-
|
|
719
|
+
.eds-contrast .eds-form-component--radio__container .eds-form-component--radio__radio {
|
|
720
|
+
background-color: var(--components-form-radio-contrast-fill-default);
|
|
721
|
+
border-color: var(--components-form-radio-contrast-border);
|
|
791
722
|
}
|
|
792
|
-
.eds-form-
|
|
793
|
-
|
|
723
|
+
.eds-form-component--radio__container .eds-form-component--radio__radio.eds-form-component--radio__radio--disabled {
|
|
724
|
+
background: var(--components-form-baseform-contrast-fill-disabled);
|
|
725
|
+
border-color: var(--components-form-baseform-contrast-text-disabled);
|
|
726
|
+
cursor: not-allowed;
|
|
794
727
|
}
|
|
795
|
-
.eds-form-
|
|
796
|
-
|
|
728
|
+
.eds-form-component--radio__container .eds-form-component--radio__radio.eds-form-component--radio__radio--disabled:hover {
|
|
729
|
+
border-color: var(--components-form-baseform-contrast-text-disabled);
|
|
797
730
|
}
|
|
798
|
-
.eds-form-
|
|
799
|
-
|
|
731
|
+
.eds-contrast .eds-form-component--radio__container .eds-form-component--radio__radio.eds-form-component--radio__radio--disabled {
|
|
732
|
+
background: var(--components-form-baseform-contrast-fill-disabled);
|
|
733
|
+
border-color: var(--components-form-baseform-contrast-text-disabled);
|
|
734
|
+
}
|
|
735
|
+
.eds-form-component--radio__container .eds-form-component--radio__radio.eds-form-component--radio__radio--disabled ~ .eds-form-component--radio__label {
|
|
736
|
+
color: var(--components-form-baseform-contrast-text-disabled);
|
|
737
|
+
}
|
|
738
|
+
.eds-form-component--radio__container .eds-form-component--radio__radio .eds-form-component--radio__circle {
|
|
739
|
+
display: block;
|
|
740
|
+
width: 0;
|
|
741
|
+
height: 0;
|
|
742
|
+
border-radius: 50%;
|
|
743
|
+
background-color: var(--components-form-radio-standard-fill-selected);
|
|
744
|
+
transition: width 0.1s ease-in-out, height 0.1s ease-in-out;
|
|
745
|
+
}
|
|
746
|
+
.eds-contrast .eds-form-component--radio__container .eds-form-component--radio__radio .eds-form-component--radio__circle {
|
|
747
|
+
background-color: var(--components-form-radio-contrast-icon);
|
|
800
748
|
}
|
|
801
749
|
/* DO NOT CHANGE!*/
|
|
802
750
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
803
751
|
.eds-input-panel[focus-within] .eds-input-panel__container {
|
|
804
|
-
|
|
805
|
-
|
|
752
|
+
outline: 2px solid #181c56;
|
|
753
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
754
|
+
outline-offset: 0.125rem;
|
|
806
755
|
}
|
|
807
756
|
.eds-input-panel:focus-within .eds-input-panel__container {
|
|
808
|
-
|
|
809
|
-
|
|
757
|
+
outline: 2px solid #181c56;
|
|
758
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
759
|
+
outline-offset: 0.125rem;
|
|
810
760
|
}
|
|
811
761
|
.eds-contrast .eds-input-panel[focus-within] .eds-input-panel__container {
|
|
812
|
-
|
|
813
|
-
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
762
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
814
763
|
}
|
|
815
764
|
.eds-contrast .eds-input-panel:focus-within .eds-input-panel__container {
|
|
816
|
-
|
|
817
|
-
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
765
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
818
766
|
}
|
|
819
767
|
.eds-input-panel > input {
|
|
820
768
|
position: absolute;
|
|
@@ -824,53 +772,46 @@
|
|
|
824
772
|
width: 0;
|
|
825
773
|
}
|
|
826
774
|
.eds-input-panel > input:checked + .eds-input-panel__container {
|
|
827
|
-
border-color:
|
|
828
|
-
background:
|
|
775
|
+
border-color: var(--components-form-basepanel-standard-border-selected);
|
|
776
|
+
background: var(--components-form-basepanel-standard-fill-selected);
|
|
829
777
|
}
|
|
830
778
|
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container {
|
|
831
|
-
border-color:
|
|
832
|
-
background:
|
|
779
|
+
border-color: var(--components-form-basepanel-contrast-border-selected);
|
|
780
|
+
background: var(--components-form-basepanel-contrast-fill-selected);
|
|
833
781
|
}
|
|
834
782
|
.eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
|
|
835
783
|
width: 0.75rem;
|
|
836
784
|
height: 0.75rem;
|
|
837
785
|
}
|
|
838
786
|
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
|
|
839
|
-
background-color:
|
|
787
|
+
background-color: var(--components-form-radio-contrast-icon);
|
|
840
788
|
}
|
|
841
789
|
.eds-input-panel > input:checked + .eds-input-panel__container:hover {
|
|
842
|
-
background-color:
|
|
843
|
-
border: 0.125rem solid #babbcf;
|
|
790
|
+
background-color: var(--components-form-basepanel-standard-fill-hover);
|
|
844
791
|
/* The following styling is needed to sync the inner checkbox/radiobutton's
|
|
845
792
|
hover state styling with the inputPanel container */
|
|
846
793
|
}
|
|
847
794
|
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover {
|
|
848
|
-
background:
|
|
795
|
+
background-color: var(--components-form-basepanel-contrast-fill-hover);
|
|
849
796
|
}
|
|
850
797
|
.eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
|
|
851
|
-
background-color:
|
|
852
|
-
border-color:
|
|
798
|
+
background-color: var(--components-form-basepanel-standard-fill-hover);
|
|
799
|
+
border-color: var(--components-form-basepanel-standard-border-selected);
|
|
853
800
|
}
|
|
854
801
|
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
|
|
855
|
-
background-color:
|
|
856
|
-
border-color:
|
|
857
|
-
}
|
|
858
|
-
.eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio .eds-form-component--radio__circle {
|
|
859
|
-
background-color: #292b6a;
|
|
860
|
-
}
|
|
861
|
-
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio .eds-form-component--radio__circle {
|
|
862
|
-
background-color: #ffffff;
|
|
802
|
+
background-color: var(--components-form-basepanel-contrast-fill-hover);
|
|
803
|
+
border-color: var(--components-form-basepanel-contrast-border-selected);
|
|
863
804
|
}
|
|
864
805
|
.eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
|
|
865
|
-
background-color: #292b6a;
|
|
866
806
|
border-color: transparent;
|
|
867
807
|
}
|
|
868
808
|
.eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
|
|
869
|
-
background-color:
|
|
809
|
+
background-color: var(--components-form-checkbox-contrast-fill-selectedhover);
|
|
870
810
|
}
|
|
871
811
|
.eds-input-panel__container {
|
|
872
|
-
background:
|
|
873
|
-
border: 0.125rem solid
|
|
812
|
+
background: var(--components-form-basepanel-standard-fill-default);
|
|
813
|
+
border: 0.125rem solid var(--components-form-basepanel-standard-border-default);
|
|
814
|
+
color: var(--components-form-basepanel-standard-text-accent);
|
|
874
815
|
border-radius: 0.25rem;
|
|
875
816
|
display: flex;
|
|
876
817
|
flex-direction: column;
|
|
@@ -886,38 +827,39 @@
|
|
|
886
827
|
transition: background ease-in-out 0.1s, border-color ease-in-out 0.1s;
|
|
887
828
|
}
|
|
888
829
|
.eds-contrast .eds-input-panel__container {
|
|
889
|
-
background-color:
|
|
890
|
-
border-color:
|
|
830
|
+
background-color: var(--components-form-basepanel-contrast-fill-default);
|
|
831
|
+
border-color: var(--components-form-basepanel-contrast-border-default);
|
|
832
|
+
color: var(--components-form-basepanel-contrast-text-accent);
|
|
891
833
|
}
|
|
892
834
|
.eds-input-panel__container:hover {
|
|
893
|
-
background-color:
|
|
835
|
+
background-color: var(--components-form-basepanel-standard-fill-hover);
|
|
894
836
|
/* The following styling is needed to sync the inner checkbox/radiobutton's
|
|
895
837
|
hover state styling with the inputPanel container */
|
|
896
838
|
}
|
|
897
839
|
.eds-contrast .eds-input-panel__container:hover {
|
|
898
|
-
background-color:
|
|
840
|
+
background-color: var(--components-form-basepanel-contrast-fill-hover);
|
|
899
841
|
}
|
|
900
842
|
.eds-input-panel__container:hover .eds-checkbox__icon,
|
|
901
843
|
.eds-input-panel__container:hover .eds-form-component--radio__radio {
|
|
902
|
-
|
|
903
|
-
|
|
844
|
+
background-color: var(--components-form-basepanel-standard-fill-hover);
|
|
845
|
+
border-color: var(--components-form-basepanel-standard-border-selected);
|
|
904
846
|
}
|
|
905
847
|
.eds-contrast .eds-input-panel__container:hover .eds-checkbox__icon,
|
|
906
848
|
.eds-contrast .eds-input-panel__container:hover .eds-form-component--radio__radio {
|
|
907
|
-
|
|
908
|
-
|
|
849
|
+
background-color: var(--components-form-basepanel-contrast-fill-hover);
|
|
850
|
+
border-color: var(--components-form-basepanel-contrast-border-selected);
|
|
909
851
|
}
|
|
910
852
|
input:disabled + .eds-input-panel__container {
|
|
911
|
-
background:
|
|
912
|
-
border-color:
|
|
913
|
-
color:
|
|
914
|
-
|
|
853
|
+
background: var(--components-form-basepanel-standard-fill-disabled);
|
|
854
|
+
border-color: var(--components-form-basepanel-standard-border-disabled);
|
|
855
|
+
color: var(--components-form-basepanel-standard-text-disabled);
|
|
856
|
+
cursor: not-allowed;
|
|
915
857
|
}
|
|
916
858
|
.eds-contrast input:disabled + .eds-input-panel__container {
|
|
917
|
-
background:
|
|
859
|
+
background: var(--components-form-basepanel-contrast-fill-disabled);
|
|
918
860
|
border-style: dashed;
|
|
919
|
-
border-color:
|
|
920
|
-
color:
|
|
861
|
+
border-color: var(--components-form-basepanel-contrast-border-disabled);
|
|
862
|
+
color: var(--components-form-basepanel-contrast-text-disabled);
|
|
921
863
|
}
|
|
922
864
|
.eds-input-panel__container .eds-checkbox__icon,
|
|
923
865
|
.eds-input-panel__container .eds-checkbox__icon .eds-checkbox__icon,
|
|
@@ -987,22 +929,23 @@ textarea.eds-form-control.eds-textarea {
|
|
|
987
929
|
align-items: center;
|
|
988
930
|
}
|
|
989
931
|
.eds-textfield__clear-button:hover {
|
|
990
|
-
background:
|
|
932
|
+
background: var(--components-form-basepanel-standard-fill-hover);
|
|
991
933
|
}
|
|
992
934
|
.eds-textfield__clear-button:focus {
|
|
993
|
-
outline:
|
|
994
|
-
|
|
935
|
+
outline: 2px solid #181c56;
|
|
936
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
937
|
+
outline-offset: 0.125rem;
|
|
995
938
|
}
|
|
996
939
|
|
|
997
940
|
.eds-textfield__divider {
|
|
998
941
|
content: "";
|
|
999
942
|
display: block;
|
|
1000
|
-
background-color:
|
|
943
|
+
background-color: var(--components-form-baseform-standard-icon);
|
|
1001
944
|
height: 1.5rem;
|
|
1002
945
|
width: 1px;
|
|
1003
946
|
}
|
|
1004
947
|
.eds-contrast .eds-form-control-wrapper--disabled .eds-textfield__divider {
|
|
1005
|
-
background-color:
|
|
948
|
+
background-color: var(--components-form-baseform-contrast-icon);
|
|
1006
949
|
}
|
|
1007
950
|
/* DO NOT CHANGE!*/
|
|
1008
951
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
@@ -1011,10 +954,10 @@ textarea.eds-form-control.eds-textarea {
|
|
|
1011
954
|
flex: 1 1 0px;
|
|
1012
955
|
}
|
|
1013
956
|
.eds-segmented-choice .eds-base-segmented {
|
|
1014
|
-
--background-color:
|
|
957
|
+
--background-color: var(--components-form-segmentedcontrol-standard-fill-unselected);
|
|
1015
958
|
background-color: var(--background-color);
|
|
1016
959
|
border-radius: 0.25rem;
|
|
1017
|
-
color:
|
|
960
|
+
color: var(--components-form-segmentedcontrol-standard-text-unselected);
|
|
1018
961
|
cursor: pointer;
|
|
1019
962
|
font-size: 0.875rem;
|
|
1020
963
|
height: 1.5rem;
|
|
@@ -1033,17 +976,23 @@ textarea.eds-form-control.eds-textarea {
|
|
|
1033
976
|
line-height: 1.5rem;
|
|
1034
977
|
padding: 0.5rem 0.75rem;
|
|
1035
978
|
}
|
|
979
|
+
.eds-contrast .eds-segmented-choice .eds-base-segmented {
|
|
980
|
+
--background-color: var(--components-form-segmentedcontrol-contrast-background);
|
|
981
|
+
color: var(--components-form-segmentedcontrol-contrast-text-unselected);
|
|
982
|
+
}
|
|
1036
983
|
.eds-segmented-choice:hover input:not(:checked) + .eds-base-segmented {
|
|
1037
|
-
--background-color:
|
|
984
|
+
--background-color: var(--components-form-segmentedcontrol-standard-fill-hover);
|
|
1038
985
|
}
|
|
1039
986
|
.eds-contrast .eds-segmented-choice:hover input:not(:checked) + .eds-base-segmented {
|
|
1040
|
-
--background-color:
|
|
987
|
+
--background-color: var(--components-form-segmentedcontrol-contrast-fill-hover);
|
|
1041
988
|
}
|
|
1042
989
|
.eds-segmented-choice:hover input:checked + .eds-base-segmented {
|
|
1043
|
-
--background-color:
|
|
990
|
+
--background-color: var(--components-form-segmentedcontrol-standard-fill-hover);
|
|
991
|
+
color: var(--components-form-segmentedcontrol-standard-text-unselected);
|
|
1044
992
|
}
|
|
1045
993
|
.eds-contrast .eds-segmented-choice:hover input:checked + .eds-base-segmented {
|
|
1046
|
-
--background-color:
|
|
994
|
+
--background-color: var(--components-form-segmentedcontrol-contrast-fill-hover);
|
|
995
|
+
color: var(--components-form-segmentedcontrol-contrast-text-unselected);
|
|
1047
996
|
}
|
|
1048
997
|
.eds-segmented-choice input {
|
|
1049
998
|
-webkit-appearance: none;
|
|
@@ -1055,37 +1004,714 @@ textarea.eds-form-control.eds-textarea {
|
|
|
1055
1004
|
width: 0;
|
|
1056
1005
|
}
|
|
1057
1006
|
.eds-segmented-choice input:checked + .eds-base-segmented {
|
|
1058
|
-
--background-color:
|
|
1007
|
+
--background-color: var(--components-form-segmentedcontrol-standard-fill-selected);
|
|
1008
|
+
color: var(--components-form-segmentedcontrol-standard-text-selected);
|
|
1059
1009
|
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
1060
1010
|
}
|
|
1061
1011
|
.eds-contrast .eds-segmented-choice input:checked + .eds-base-segmented {
|
|
1062
|
-
--background-color:
|
|
1012
|
+
--background-color: var(--components-form-segmentedcontrol-contrast-fill-selected);
|
|
1063
1013
|
box-shadow: 0 0.0625rem 0.1875rem rgb(57, 61, 121);
|
|
1064
|
-
color:
|
|
1014
|
+
color: var(--components-form-segmentedcontrol-contrast-text-selected);
|
|
1065
1015
|
}
|
|
1066
1016
|
.eds-segmented-choice input:focus:not(:checked) + .eds-base-segmented {
|
|
1067
|
-
|
|
1017
|
+
outline: 2px solid #181c56;
|
|
1018
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
1019
|
+
outline-offset: 0.125rem;
|
|
1068
1020
|
}
|
|
1069
1021
|
.eds-contrast .eds-segmented-choice input:focus:not(:checked) + .eds-base-segmented {
|
|
1070
|
-
|
|
1022
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
1071
1023
|
}
|
|
1072
1024
|
.eds-segmented-choice input:focus:checked + .eds-base-segmented {
|
|
1073
|
-
|
|
1025
|
+
outline: 2px solid #181c56;
|
|
1026
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
1027
|
+
outline-offset: 0.125rem;
|
|
1074
1028
|
}
|
|
1075
1029
|
.eds-contrast .eds-segmented-choice input:focus:checked + .eds-base-segmented {
|
|
1076
|
-
|
|
1030
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
1077
1031
|
}
|
|
1078
1032
|
/* DO NOT CHANGE!*/
|
|
1079
1033
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1080
1034
|
.eds-segmented-control {
|
|
1081
1035
|
margin-top: 0.25rem;
|
|
1082
1036
|
display: flex;
|
|
1083
|
-
background:
|
|
1037
|
+
background: var(--components-form-segmentedcontrol-standard-background);
|
|
1084
1038
|
border-radius: 0.5rem;
|
|
1085
1039
|
}
|
|
1086
1040
|
.eds-contrast .eds-segmented-control {
|
|
1087
|
-
background:
|
|
1041
|
+
background: var(--components-form-segmentedcontrol-contrast-background);
|
|
1042
|
+
}
|
|
1043
|
+
@import "~@entur/tokens/dist/primitive.css";
|
|
1044
|
+
@import "~@entur/tokens/dist/semantic.css";
|
|
1045
|
+
/* DO NOT CHANGE!*/
|
|
1046
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1047
|
+
:root {
|
|
1048
|
+
--fill-background-contrast-dark: var(--ebony-90);
|
|
1049
|
+
--fill-background-contrast-light: var(--lavender-90);
|
|
1050
|
+
--fill-background-contrast-lightalt: var(--blue-90);
|
|
1051
|
+
--fill-background-contrast-lightalt-2: var(--blue-100);
|
|
1052
|
+
--fill-background-overlay-solid: var(--ebony-80);
|
|
1053
|
+
--fill-background-overlay-solidalt: var(--ebony-75);
|
|
1054
|
+
--fill-background-overlay-transparent: var(--transparent-ebony-alpha15);
|
|
1055
|
+
--fill-background-overlay-transparentalt: var(--transparent-ebony-alpha25);
|
|
1056
|
+
--fill-background-standard-colorless: var(--white-alpha-0);
|
|
1057
|
+
--fill-background-standard-dark: var(--ebony-100);
|
|
1058
|
+
--fill-background-standard-light: var(--white-alpha-100);
|
|
1059
|
+
--fill-background-subdued-dark: var(--ebony-85);
|
|
1060
|
+
--fill-background-subdued-light: var(--blue-30);
|
|
1061
|
+
--fill-background-tint-dark: var(--ebony-95);
|
|
1062
|
+
--fill-background-tint-light: var(--blue-10);
|
|
1063
|
+
--fill-background-tint-neutral: var(--grey-10);
|
|
1064
|
+
--fill-background-tint-transparent: var(--transparent-blue-alpha10);
|
|
1065
|
+
--fill-boolean-false-contrast: var(--blue-50);
|
|
1066
|
+
--fill-boolean-false-dark: var(--transparent-ebony-alpha35);
|
|
1067
|
+
--fill-boolean-false-light: var(--grey-60);
|
|
1068
|
+
--fill-boolean-true-contrast: var(--mint-40);
|
|
1069
|
+
--fill-boolean-true-dark: var(--mint-40);
|
|
1070
|
+
--fill-boolean-true-light: var(--mint-60);
|
|
1071
|
+
--fill-disabled-light: var(--grey-40);
|
|
1072
|
+
--fill-disabled-transparent: var(--transparent-neutral-alpha15);
|
|
1073
|
+
--fill-disabled-transparentalt: var(--transparent-neutral-alpha10);
|
|
1074
|
+
--fill-information-contrast: var(--sky-30);
|
|
1075
|
+
--fill-information-deep: var(--sky-50);
|
|
1076
|
+
--fill-information-muted: var(--sky-10);
|
|
1077
|
+
--fill-information-tint: var(--sky-20);
|
|
1078
|
+
--fill-negative-contrast: var(--coral-40);
|
|
1079
|
+
--fill-negative-dark: var(--coral-90);
|
|
1080
|
+
--fill-negative-deep: var(--coral-60);
|
|
1081
|
+
--fill-negative-muted: var(--coral-20);
|
|
1082
|
+
--fill-negative-tint: var(--coral-30);
|
|
1083
|
+
--fill-negative-transparent: var(--transparent-coral-alpha20);
|
|
1084
|
+
--fill-primary-active-contrast: var(--lavender-50);
|
|
1085
|
+
--fill-primary-active-light: var(--lavender-100);
|
|
1086
|
+
--fill-primary-default-contrast: var(--lavender-40);
|
|
1087
|
+
--fill-primary-default-light: var(--lavender-90);
|
|
1088
|
+
--fill-primary-hover-contrast: var(--lavender-30);
|
|
1089
|
+
--fill-primary-hover-light: var(--blue-90);
|
|
1090
|
+
--fill-secondary-active-contrast: var(--lavender-50);
|
|
1091
|
+
--fill-secondary-active-light: var(--lavender-40);
|
|
1092
|
+
--fill-secondary-default-colorless: var(--white-alpha-0);
|
|
1093
|
+
--fill-secondary-hover-contrast: var(--blue-70);
|
|
1094
|
+
--fill-secondary-hover-light: var(--lavender-20);
|
|
1095
|
+
--fill-selected-default-contrast: var(--blue-90);
|
|
1096
|
+
--fill-selected-default-dark: var(--ebony-10);
|
|
1097
|
+
--fill-selected-default-darkalt: var(--ebony-50);
|
|
1098
|
+
--fill-selected-default-light: var(--blue-10);
|
|
1099
|
+
--fill-selected-default-neutral: var(--grey-30);
|
|
1100
|
+
--fill-selected-hover-contrast: var(--blue-80);
|
|
1101
|
+
--fill-selected-hover-dark: var(--transparent-ebony-alpha35);
|
|
1102
|
+
--fill-selected-hover-light: var(--blue-20);
|
|
1103
|
+
--fill-selected-hover-neutral: var(--grey-20);
|
|
1104
|
+
--fill-success-contrast: var(--mint-40);
|
|
1105
|
+
--fill-success-deep: var(--mint-60);
|
|
1106
|
+
--fill-success-muted: var(--mint-20);
|
|
1107
|
+
--fill-success-subdued: var(--mint-50);
|
|
1108
|
+
--fill-success-tint: var(--mint-30);
|
|
1109
|
+
--fill-warning-contrast: var(--canary-40);
|
|
1110
|
+
--fill-warning-deep: var(--canary-60);
|
|
1111
|
+
--fill-warning-muted: var(--canary-20);
|
|
1112
|
+
--fill-warning-tint: var(--canary-30);
|
|
1113
|
+
--shape-accent: var(--lavender-90);
|
|
1114
|
+
--shape-contrast: var(--lavender-40);
|
|
1115
|
+
--shape-dark: var(--ebony-100);
|
|
1116
|
+
--shape-darkalt: var(--ebony-30);
|
|
1117
|
+
--shape-disabled: var(--grey-80);
|
|
1118
|
+
--shape-highlight: var(--coral-40);
|
|
1119
|
+
--shape-highlightalt: var(--coral-30);
|
|
1120
|
+
--shape-inactive: var(--blue-40);
|
|
1121
|
+
--shape-information: var(--sky-50);
|
|
1122
|
+
--shape-informationalt: var(--sky-30);
|
|
1123
|
+
--shape-light: var(--white-alpha-100);
|
|
1124
|
+
--shape-lightalt: var(--ebony-10);
|
|
1125
|
+
--shape-negative: var(--coral-60);
|
|
1126
|
+
--shape-negativealt: var(--coral-30);
|
|
1127
|
+
--shape-neutral: var(--grey-70);
|
|
1128
|
+
--shape-neutralalt: var(--grey-50);
|
|
1129
|
+
--shape-neutralalt2: var(--grey-60);
|
|
1130
|
+
--shape-subdued: var(--blue-70);
|
|
1131
|
+
--shape-subduedalt: var(--blue-30);
|
|
1132
|
+
--shape-success: var(--mint-60);
|
|
1133
|
+
--shape-successalt: var(--mint-40);
|
|
1134
|
+
--shape-warning: var(--canary-60);
|
|
1135
|
+
--shape-warningalt: var(--canary-40);
|
|
1136
|
+
--stroke-accent: var(--lavender-90);
|
|
1137
|
+
--stroke-colorless: var(--white-alpha-0);
|
|
1138
|
+
--stroke-contrast: var(--lavender-40);
|
|
1139
|
+
--stroke-contrastalt: var(--blue-80);
|
|
1140
|
+
--stroke-dark: var(--ebony-30);
|
|
1141
|
+
--stroke-darkalt: var(--ebony-50);
|
|
1142
|
+
--stroke-darkalt-2: var(--ebony-100);
|
|
1143
|
+
--stroke-highlight: var(--coral-40);
|
|
1144
|
+
--stroke-highlightalt: var(--coral-30);
|
|
1145
|
+
--stroke-information: var(--sky-50);
|
|
1146
|
+
--stroke-light: var(--white-alpha-100);
|
|
1147
|
+
--stroke-lightalt: var(--ebony-10);
|
|
1148
|
+
--stroke-negative: var(--coral-60);
|
|
1149
|
+
--stroke-negativealt: var(--coral-30);
|
|
1150
|
+
--stroke-neutral: var(--grey-30);
|
|
1151
|
+
--stroke-neutralalt: var(--grey-60);
|
|
1152
|
+
--stroke-subdued: var(--blue-60);
|
|
1153
|
+
--stroke-success: var(--mint-60);
|
|
1154
|
+
--stroke-successalt: var(--mint-40);
|
|
1155
|
+
--stroke-transparent: var(--transparent-blue-alpha40);
|
|
1156
|
+
--stroke-transparentalt: var(--transparent-lavender-alpha70);
|
|
1157
|
+
--stroke-warning: var(--canary-70);
|
|
1158
|
+
--text-accent: var(--lavender-90);
|
|
1159
|
+
--text-dark: var(--ebony-100);
|
|
1160
|
+
--text-darkalt: var(--ebony-30);
|
|
1161
|
+
--text-disabled: var(--grey-80);
|
|
1162
|
+
--text-highlight: var(--lavender-40);
|
|
1163
|
+
--text-highlightalt: var(--peach-40);
|
|
1164
|
+
--text-light: var(--white-alpha-100);
|
|
1165
|
+
--text-lightalt: var(--ebony-10);
|
|
1166
|
+
--text-negative: var(--coral-60);
|
|
1167
|
+
--text-negativealt: var(--coral-30);
|
|
1168
|
+
--text-neutral: var(--grey-70);
|
|
1169
|
+
--text-neutralalt: var(--grey-50);
|
|
1170
|
+
--text-neutralalt2: var(--grey-60);
|
|
1171
|
+
--text-subdued: var(--blue-70);
|
|
1172
|
+
--text-subduedalt: var(--blue-30);
|
|
1173
|
+
--text-success: var(--mint-60);
|
|
1174
|
+
--text-successalt: var(--mint-40);
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
/* DO NOT CHANGE!*/
|
|
1178
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1179
|
+
[data-color-mode=light],
|
|
1180
|
+
:root {
|
|
1181
|
+
--components-form-baseform-contrast-border-default: var(--stroke-subdued);
|
|
1182
|
+
--components-form-baseform-contrast-border-interactive: var(--stroke-contrast);
|
|
1183
|
+
--components-form-baseform-contrast-border-negative: var(--stroke-negativealt);
|
|
1184
|
+
--components-form-baseform-contrast-border-success: var(--stroke-successalt);
|
|
1185
|
+
--components-form-baseform-contrast-fill-default: var(--fill-background-standard-light);
|
|
1186
|
+
--components-form-baseform-contrast-fill-disabled: var(--fill-disabled-transparent);
|
|
1187
|
+
--components-form-baseform-contrast-fill-readonly: var(--fill-background-standard-colorless);
|
|
1188
|
+
--components-form-baseform-contrast-icon: var(--shape-accent);
|
|
1189
|
+
--components-form-baseform-contrast-icon-disabled: var(--shape-neutral);
|
|
1190
|
+
--components-form-baseform-contrast-text-content: var(--text-accent);
|
|
1191
|
+
--components-form-baseform-contrast-text-description: var(--text-light);
|
|
1192
|
+
--components-form-baseform-contrast-text-label: var(--text-subdued);
|
|
1193
|
+
--components-form-baseform-contrast-text-disabled: var(--text-neutral);
|
|
1194
|
+
--components-form-baseform-standard-border-default: var(--stroke-subdued);
|
|
1195
|
+
--components-form-baseform-standard-border-interactive: var(--stroke-accent);
|
|
1196
|
+
--components-form-baseform-standard-border-negative: var(--stroke-negative);
|
|
1197
|
+
--components-form-baseform-standard-border-success: var(--stroke-success);
|
|
1198
|
+
--components-form-baseform-standard-fill-default: var(--fill-background-standard-light);
|
|
1199
|
+
--components-form-baseform-standard-fill-disabled: var(--fill-disabled-light);
|
|
1200
|
+
--components-form-baseform-standard-fill-readonly: var(--fill-background-standard-colorless);
|
|
1201
|
+
--components-form-baseform-standard-icon: var(--shape-accent);
|
|
1202
|
+
--components-form-baseform-standard-icon-disabled: var(--shape-neutral);
|
|
1203
|
+
--components-form-baseform-standard-text-content: var(--text-accent);
|
|
1204
|
+
--components-form-baseform-standard-text-description: var(--text-accent);
|
|
1205
|
+
--components-form-baseform-standard-text-label: var(--text-subdued);
|
|
1206
|
+
--components-form-baseform-standard-text-disabled: var(--text-neutral);
|
|
1207
|
+
--components-form-basemenu-border: var(--stroke-subdued);
|
|
1208
|
+
--components-form-basemenu-fill-default: var(--fill-background-tint-neutral);
|
|
1209
|
+
--components-form-basemenu-fill-hover: var(--fill-background-subdued-light);
|
|
1210
|
+
--components-form-basemenu-icon: var(--shape-accent);
|
|
1211
|
+
--components-form-basemenu-icon-disabled: var(--shape-neutral);
|
|
1212
|
+
--components-form-basemenu-text: var(--text-accent);
|
|
1213
|
+
--components-form-basemenu-text-disabled: var(--text-neutral);
|
|
1214
|
+
--components-form-basepanel-contrast-border-default: var(--stroke-subdued);
|
|
1215
|
+
--components-form-basepanel-contrast-border-disabled: var(--stroke-neutralalt);
|
|
1216
|
+
--components-form-basepanel-contrast-border-selected: var(--stroke-contrast);
|
|
1217
|
+
--components-form-basepanel-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1218
|
+
--components-form-basepanel-contrast-fill-disabled: var(--fill-disabled-transparent);
|
|
1219
|
+
--components-form-basepanel-contrast-fill-expired: var(--fill-negative-transparent);
|
|
1220
|
+
--components-form-basepanel-contrast-fill-hover: var(--fill-selected-hover-contrast);
|
|
1221
|
+
--components-form-basepanel-contrast-fill-selected: var(--fill-primary-hover-light);
|
|
1222
|
+
--components-form-basepanel-contrast-text-accent: var(--text-light);
|
|
1223
|
+
--components-form-basepanel-contrast-text-disabled: var(--text-neutralalt);
|
|
1224
|
+
--components-form-basepanel-contrast-text-rebate: var(--text-successalt);
|
|
1225
|
+
--components-form-basepanel-contrast-text-subdued: var(--text-subduedalt);
|
|
1226
|
+
--components-form-basepanel-standard-border-default: var(--stroke-subdued);
|
|
1227
|
+
--components-form-basepanel-standard-border-disabled: var(--stroke-neutralalt);
|
|
1228
|
+
--components-form-basepanel-standard-border-selected: var(--stroke-accent);
|
|
1229
|
+
--components-form-basepanel-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1230
|
+
--components-form-basepanel-standard-fill-disabled: var(--fill-disabled-light);
|
|
1231
|
+
--components-form-basepanel-standard-fill-expired: var(--fill-negative-transparent);
|
|
1232
|
+
--components-form-basepanel-standard-fill-hover: var(--fill-selected-hover-light);
|
|
1233
|
+
--components-form-basepanel-standard-fill-selected: var(--fill-selected-default-light);
|
|
1234
|
+
--components-form-basepanel-standard-text-accent: var(--text-accent);
|
|
1235
|
+
--components-form-basepanel-standard-text-disabled: var(--text-neutral);
|
|
1236
|
+
--components-form-basepanel-standard-text-rebate: var(--text-success);
|
|
1237
|
+
--components-form-basepanel-standard-text-subdued: var(--text-subdued);
|
|
1238
|
+
--components-form-checkbox-contrast-border: var(--stroke-contrast);
|
|
1239
|
+
--components-form-checkbox-contrast-border-negative: var(--stroke-negativealt);
|
|
1240
|
+
--components-form-checkbox-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1241
|
+
--components-form-checkbox-contrast-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1242
|
+
--components-form-checkbox-contrast-fill-selected: var(--fill-primary-default-contrast);
|
|
1243
|
+
--components-form-checkbox-contrast-fill-selectedhover: var(--fill-primary-hover-contrast);
|
|
1244
|
+
--components-form-checkbox-contrast-icon: var(--shape-accent);
|
|
1245
|
+
--components-form-checkbox-contrast-text: var(--text-light);
|
|
1246
|
+
--components-form-checkbox-standard-border: var(--stroke-accent);
|
|
1247
|
+
--components-form-checkbox-standard-border-negative: var(--stroke-negative);
|
|
1248
|
+
--components-form-checkbox-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1249
|
+
--components-form-checkbox-standard-fill-hover: var(--fill-secondary-hover-light);
|
|
1250
|
+
--components-form-checkbox-standard-fill-selected: var(--fill-primary-default-light);
|
|
1251
|
+
--components-form-checkbox-standard-fill-selectedhover: var(--fill-primary-hover-light);
|
|
1252
|
+
--components-form-checkbox-standard-icon: var(--shape-light);
|
|
1253
|
+
--components-form-checkbox-standard-text: var(--text-accent);
|
|
1254
|
+
--components-form-feedbacktext-information-contrast-icon-fill: var(--shape-informationalt);
|
|
1255
|
+
--components-form-feedbacktext-information-contrast-icon-symbol: var(--shape-accent);
|
|
1256
|
+
--components-form-feedbacktext-information-contrast-stroke: var(--stroke-accent);
|
|
1257
|
+
--components-form-feedbacktext-information-contrast-text: var(--text-light);
|
|
1258
|
+
--components-form-feedbacktext-information-standard-icon-fill: var(--shape-information);
|
|
1259
|
+
--components-form-feedbacktext-information-standard-icon-symbol: var(--shape-light);
|
|
1260
|
+
--components-form-feedbacktext-information-standard-stroke: var(--stroke-light);
|
|
1261
|
+
--components-form-feedbacktext-information-standard-text: var(--text-accent);
|
|
1262
|
+
--components-form-feedbacktext-negative-contrast-icon-fill: var(--shape-negativealt);
|
|
1263
|
+
--components-form-feedbacktext-negative-contrast-icon-symbol: var(--shape-accent);
|
|
1264
|
+
--components-form-feedbacktext-negative-contrast-stroke: var(--stroke-accent);
|
|
1265
|
+
--components-form-feedbacktext-negative-contrast-text: var(--text-light);
|
|
1266
|
+
--components-form-feedbacktext-negative-standard-icon-fill: var(--shape-negative);
|
|
1267
|
+
--components-form-feedbacktext-negative-standard-stroke: var(--stroke-light);
|
|
1268
|
+
--components-form-feedbacktext-negative-standard-symbol: var(--shape-light);
|
|
1269
|
+
--components-form-feedbacktext-negative-standard-text: var(--text-accent);
|
|
1270
|
+
--components-form-feedbacktext-success-contrast-icon-fill: var(--shape-successalt);
|
|
1271
|
+
--components-form-feedbacktext-success-contrast-icon-stroke: var(--stroke-accent);
|
|
1272
|
+
--components-form-feedbacktext-success-contrast-icon-symbol: var(--shape-accent);
|
|
1273
|
+
--components-form-feedbacktext-success-contrast-text: var(--text-light);
|
|
1274
|
+
--components-form-feedbacktext-success-standard-icon-fill: var(--shape-success);
|
|
1275
|
+
--components-form-feedbacktext-success-standard-icon-stroke: var(--stroke-light);
|
|
1276
|
+
--components-form-feedbacktext-success-standard-icon-symbol: var(--shape-light);
|
|
1277
|
+
--components-form-feedbacktext-success-standard-text: var(--text-accent);
|
|
1278
|
+
--components-form-feedbacktext-warning-contrast-icon: var(--shape-warningalt);
|
|
1279
|
+
--components-form-feedbacktext-warning-contrast-icon-symbol: var(--shape-accent);
|
|
1280
|
+
--components-form-feedbacktext-warning-contrast-stroke: var(--stroke-accent);
|
|
1281
|
+
--components-form-feedbacktext-warning-contrast-text: var(--text-light);
|
|
1282
|
+
--components-form-feedbacktext-warning-standard-icon-fill: var(--shape-warning);
|
|
1283
|
+
--components-form-feedbacktext-warning-standard-icon-symbol: var(--shape-accent);
|
|
1284
|
+
--components-form-feedbacktext-warning-standard-stroke: var(--stroke-light);
|
|
1285
|
+
--components-form-feedbacktext-warning-standard-text: var(--text-accent);
|
|
1286
|
+
--components-form-radio-contrast-border: var(--stroke-contrast);
|
|
1287
|
+
--components-form-radio-contrast-border-negative: var(--stroke-negativealt);
|
|
1288
|
+
--components-form-radio-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1289
|
+
--components-form-radio-contrast-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1290
|
+
--components-form-radio-contrast-fill-selected: var(--fill-primary-default-contrast);
|
|
1291
|
+
--components-form-radio-contrast-fill-selectedhover: var(--fill-primary-hover-contrast);
|
|
1292
|
+
--components-form-radio-contrast-icon: var(--shape-light);
|
|
1293
|
+
--components-form-radio-contrast-text: var(--text-light);
|
|
1294
|
+
--components-form-radio-standard-border: var(--stroke-accent);
|
|
1295
|
+
--components-form-radio-standard-border-negative: var(--stroke-negative);
|
|
1296
|
+
--components-form-radio-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1297
|
+
--components-form-radio-standard-fill-hover: var(--fill-secondary-hover-light);
|
|
1298
|
+
--components-form-radio-standard-fill-selected: var(--fill-primary-default-light);
|
|
1299
|
+
--components-form-radio-standard-icon: var(--shape-accent);
|
|
1300
|
+
--components-form-radio-standard-selectedhover: var(--fill-primary-hover-light);
|
|
1301
|
+
--components-form-radio-standard-text: var(--text-accent);
|
|
1302
|
+
--components-form-segmentedcontrol-contrast-background: var(--fill-background-contrast-lightalt);
|
|
1303
|
+
--components-form-segmentedcontrol-contrast-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1304
|
+
--components-form-segmentedcontrol-contrast-fill-selected: var(--fill-background-standard-light);
|
|
1305
|
+
--components-form-segmentedcontrol-contrast-fill-unselected: var(--fill-background-standard-colorless);
|
|
1306
|
+
--components-form-segmentedcontrol-contrast-icon-selected: var(--shape-accent);
|
|
1307
|
+
--components-form-segmentedcontrol-contrast-icon-unselected: var(--shape-light);
|
|
1308
|
+
--components-form-segmentedcontrol-contrast-text-selected: var(--text-accent);
|
|
1309
|
+
--components-form-segmentedcontrol-contrast-text-unselected: var(--text-light);
|
|
1310
|
+
--components-form-segmentedcontrol-standard-background: var(--fill-background-subdued-light);
|
|
1311
|
+
--components-form-segmentedcontrol-standard-fill-hover: var(--fill-selected-hover-light);
|
|
1312
|
+
--components-form-segmentedcontrol-standard-fill-selected: var(--fill-background-standard-light);
|
|
1313
|
+
--components-form-segmentedcontrol-standard-fill-unselected: var(--fill-background-standard-colorless);
|
|
1314
|
+
--components-form-segmentedcontrol-standard-icon-selected: var(--shape-accent);
|
|
1315
|
+
--components-form-segmentedcontrol-standard-icon-unselected: var(--shape-accent);
|
|
1316
|
+
--components-form-segmentedcontrol-standard-text-selected: var(--text-accent);
|
|
1317
|
+
--components-form-segmentedcontrol-standard-text-unselected: var(--text-accent);
|
|
1318
|
+
--components-form-switch-contrast-fill-false: var(--fill-boolean-false-contrast);
|
|
1319
|
+
--components-form-switch-contrast-fill-true: var(--fill-boolean-true-contrast);
|
|
1320
|
+
--components-form-switch-contrast-icon-false: var(--shape-subdued);
|
|
1321
|
+
--components-form-switch-contrast-icon-true: var(--shape-accent);
|
|
1322
|
+
--components-form-switch-contrast-switch: var(--fill-background-standard-light);
|
|
1323
|
+
--components-form-switch-contrast-text: var(--text-light);
|
|
1324
|
+
--components-form-switch-standard-fill-false: var(--fill-boolean-false-light);
|
|
1325
|
+
--components-form-switch-standard-fill-true: var(--fill-boolean-true-light);
|
|
1326
|
+
--components-form-switch-standard-icon-false: var(--shape-neutral);
|
|
1327
|
+
--components-form-switch-standard-icon-true: var(--shape-accent);
|
|
1328
|
+
--components-form-switch-standard-switch: var(--fill-background-standard-light);
|
|
1329
|
+
--components-form-switch-standard-text: var(--text-accent);
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
[data-color-mode=dark] {
|
|
1333
|
+
--components-form-baseform-contrast-border-default: var(--stroke-subdued);
|
|
1334
|
+
--components-form-baseform-contrast-border-interactive: var(--stroke-contrast);
|
|
1335
|
+
--components-form-baseform-contrast-border-negative: var(--stroke-negativealt);
|
|
1336
|
+
--components-form-baseform-contrast-border-success: var(--stroke-successalt);
|
|
1337
|
+
--components-form-baseform-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1338
|
+
--components-form-baseform-contrast-fill-disabled: var(--fill-disabled-transparent);
|
|
1339
|
+
--components-form-baseform-contrast-fill-readonly: var(--fill-background-standard-colorless);
|
|
1340
|
+
--components-form-baseform-contrast-icon: var(--shape-lightalt);
|
|
1341
|
+
--components-form-baseform-contrast-icon-disabled: var(--shape-neutral);
|
|
1342
|
+
--components-form-baseform-contrast-text-content: var(--text-lightalt);
|
|
1343
|
+
--components-form-baseform-contrast-text-description: var(--text-lightalt);
|
|
1344
|
+
--components-form-baseform-contrast-text-label: var(--text-darkalt);
|
|
1345
|
+
--components-form-baseform-contrast-text-disabled: var(--text-neutral);
|
|
1346
|
+
--components-form-baseform-standard-border-default: var(--stroke-subdued);
|
|
1347
|
+
--components-form-baseform-standard-border-interactive: var(--stroke-contrast);
|
|
1348
|
+
--components-form-baseform-standard-border-negative: var(--stroke-negativealt);
|
|
1349
|
+
--components-form-baseform-standard-border-success: var(--stroke-successalt);
|
|
1350
|
+
--components-form-baseform-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1351
|
+
--components-form-baseform-standard-fill-disabled: var(--fill-disabled-transparent);
|
|
1352
|
+
--components-form-baseform-standard-fill-readonly: var(--fill-background-standard-colorless);
|
|
1353
|
+
--components-form-baseform-standard-icon: var(--shape-lightalt);
|
|
1354
|
+
--components-form-baseform-standard-icon-disabled: var(--shape-neutral);
|
|
1355
|
+
--components-form-baseform-standard-text-content: var(--text-lightalt);
|
|
1356
|
+
--components-form-baseform-standard-text-description: var(--text-lightalt);
|
|
1357
|
+
--components-form-baseform-standard-text-label: var(--text-darkalt);
|
|
1358
|
+
--components-form-baseform-standard-text-disabled: var(--text-neutral);
|
|
1359
|
+
--components-form-basemenu-border: var(--stroke-colorless);
|
|
1360
|
+
--components-form-basemenu-fill-default: var(--fill-background-overlay-solidalt);
|
|
1361
|
+
--components-form-basemenu-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1362
|
+
--components-form-basemenu-icon: var(--shape-lightalt);
|
|
1363
|
+
--components-form-basemenu-icon-disabled: var(--shape-neutralalt2);
|
|
1364
|
+
--components-form-basemenu-text: var(--text-lightalt);
|
|
1365
|
+
--components-form-basemenu-text-disabled: var(--text-neutralalt2);
|
|
1366
|
+
--components-form-basepanel-contrast-border-default: var(--stroke-darkalt);
|
|
1367
|
+
--components-form-basepanel-contrast-border-disabled: var(--stroke-neutralalt);
|
|
1368
|
+
--components-form-basepanel-contrast-border-selected: var(--stroke-contrast);
|
|
1369
|
+
--components-form-basepanel-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1370
|
+
--components-form-basepanel-contrast-fill-disabled: var(--fill-disabled-transparent);
|
|
1371
|
+
--components-form-basepanel-contrast-fill-expired: var(--fill-negative-transparent);
|
|
1372
|
+
--components-form-basepanel-contrast-fill-hover: var(--fill-background-overlay-solid);
|
|
1373
|
+
--components-form-basepanel-contrast-fill-selected: var(--fill-background-overlay-transparent);
|
|
1374
|
+
--components-form-basepanel-contrast-text-accent: var(--text-lightalt);
|
|
1375
|
+
--components-form-basepanel-contrast-text-disabled: var(--text-neutralalt);
|
|
1376
|
+
--components-form-basepanel-contrast-text-rebate: var(--text-successalt);
|
|
1377
|
+
--components-form-basepanel-contrast-text-subdued: var(--text-darkalt);
|
|
1378
|
+
--components-form-basepanel-standard-border-default: var(--stroke-darkalt);
|
|
1379
|
+
--components-form-basepanel-standard-border-disabled: var(--stroke-neutralalt);
|
|
1380
|
+
--components-form-basepanel-standard-border-selected: var(--stroke-contrast);
|
|
1381
|
+
--components-form-basepanel-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1382
|
+
--components-form-basepanel-standard-fill-disabled: var(--fill-disabled-transparent);
|
|
1383
|
+
--components-form-basepanel-standard-fill-expired: var(--fill-negative-transparent);
|
|
1384
|
+
--components-form-basepanel-standard-fill-hover: var(--fill-background-overlay-solid);
|
|
1385
|
+
--components-form-basepanel-standard-fill-selected: var(--fill-background-overlay-transparent);
|
|
1386
|
+
--components-form-basepanel-standard-text-accent: var(--text-lightalt);
|
|
1387
|
+
--components-form-basepanel-standard-text-disabled: var(--text-neutralalt);
|
|
1388
|
+
--components-form-basepanel-standard-text-rebate: var(--text-successalt);
|
|
1389
|
+
--components-form-basepanel-standard-text-subdued: var(--text-darkalt);
|
|
1390
|
+
--components-form-checkbox-contrast-border: var(--stroke-contrast);
|
|
1391
|
+
--components-form-checkbox-contrast-border-negative: var(--stroke-negativealt);
|
|
1392
|
+
--components-form-checkbox-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1393
|
+
--components-form-checkbox-contrast-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1394
|
+
--components-form-checkbox-contrast-fill-selected: var(--fill-primary-default-contrast);
|
|
1395
|
+
--components-form-checkbox-contrast-fill-selectedhover: var(--fill-primary-hover-contrast);
|
|
1396
|
+
--components-form-checkbox-contrast-icon: var(--shape-accent);
|
|
1397
|
+
--components-form-checkbox-contrast-text: var(--text-lightalt);
|
|
1398
|
+
--components-form-checkbox-standard-border: var(--stroke-contrast);
|
|
1399
|
+
--components-form-checkbox-standard-border-negative: var(--stroke-negativealt);
|
|
1400
|
+
--components-form-checkbox-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1401
|
+
--components-form-checkbox-standard-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1402
|
+
--components-form-checkbox-standard-fill-selected: var(--fill-primary-default-contrast);
|
|
1403
|
+
--components-form-checkbox-standard-fill-selectedhover: var(--fill-primary-hover-contrast);
|
|
1404
|
+
--components-form-checkbox-standard-icon: var(--shape-accent);
|
|
1405
|
+
--components-form-checkbox-standard-text: var(--text-lightalt);
|
|
1406
|
+
--components-form-feedbacktext-information-contrast-icon-fill: var(--shape-informationalt);
|
|
1407
|
+
--components-form-feedbacktext-information-contrast-icon-symbol: var(--shape-dark);
|
|
1408
|
+
--components-form-feedbacktext-information-contrast-stroke: var(--stroke-darkalt-2);
|
|
1409
|
+
--components-form-feedbacktext-information-contrast-text: var(--text-lightalt);
|
|
1410
|
+
--components-form-feedbacktext-information-standard-icon-fill: var(--shape-informationalt);
|
|
1411
|
+
--components-form-feedbacktext-information-standard-icon-symbol: var(--shape-dark);
|
|
1412
|
+
--components-form-feedbacktext-information-standard-stroke: var(--stroke-darkalt-2);
|
|
1413
|
+
--components-form-feedbacktext-information-standard-text: var(--text-lightalt);
|
|
1414
|
+
--components-form-feedbacktext-negative-contrast-icon-fill: var(--shape-negativealt);
|
|
1415
|
+
--components-form-feedbacktext-negative-contrast-icon-symbol: var(--shape-dark);
|
|
1416
|
+
--components-form-feedbacktext-negative-contrast-stroke: var(--stroke-darkalt-2);
|
|
1417
|
+
--components-form-feedbacktext-negative-contrast-text: var(--text-lightalt);
|
|
1418
|
+
--components-form-feedbacktext-negative-standard-icon-fill: var(--shape-negativealt);
|
|
1419
|
+
--components-form-feedbacktext-negative-standard-stroke: var(--stroke-darkalt-2);
|
|
1420
|
+
--components-form-feedbacktext-negative-standard-symbol: var(--shape-dark);
|
|
1421
|
+
--components-form-feedbacktext-negative-standard-text: var(--text-lightalt);
|
|
1422
|
+
--components-form-feedbacktext-success-contrast-icon-fill: var(--shape-successalt);
|
|
1423
|
+
--components-form-feedbacktext-success-contrast-icon-stroke: var(--stroke-darkalt-2);
|
|
1424
|
+
--components-form-feedbacktext-success-contrast-icon-symbol: var(--shape-dark);
|
|
1425
|
+
--components-form-feedbacktext-success-contrast-text: var(--text-lightalt);
|
|
1426
|
+
--components-form-feedbacktext-success-standard-icon-fill: var(--shape-successalt);
|
|
1427
|
+
--components-form-feedbacktext-success-standard-icon-stroke: var(--stroke-darkalt-2);
|
|
1428
|
+
--components-form-feedbacktext-success-standard-icon-symbol: var(--shape-dark);
|
|
1429
|
+
--components-form-feedbacktext-success-standard-text: var(--text-lightalt);
|
|
1430
|
+
--components-form-feedbacktext-warning-contrast-icon: var(--shape-warningalt);
|
|
1431
|
+
--components-form-feedbacktext-warning-contrast-icon-symbol: var(--shape-dark);
|
|
1432
|
+
--components-form-feedbacktext-warning-contrast-stroke: var(--stroke-darkalt-2);
|
|
1433
|
+
--components-form-feedbacktext-warning-contrast-text: var(--text-lightalt);
|
|
1434
|
+
--components-form-feedbacktext-warning-standard-icon-fill: var(--shape-warningalt);
|
|
1435
|
+
--components-form-feedbacktext-warning-standard-icon-symbol: var(--shape-dark);
|
|
1436
|
+
--components-form-feedbacktext-warning-standard-stroke: var(--stroke-darkalt-2);
|
|
1437
|
+
--components-form-feedbacktext-warning-standard-text: var(--text-lightalt);
|
|
1438
|
+
--components-form-radio-contrast-border: var(--stroke-contrast);
|
|
1439
|
+
--components-form-radio-contrast-border-negative: var(--stroke-negativealt);
|
|
1440
|
+
--components-form-radio-contrast-fill-default: var(--fill-background-standard-colorless);
|
|
1441
|
+
--components-form-radio-contrast-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1442
|
+
--components-form-radio-contrast-fill-selected: var(--fill-primary-default-contrast);
|
|
1443
|
+
--components-form-radio-contrast-fill-selectedhover: var(--fill-primary-hover-contrast);
|
|
1444
|
+
--components-form-radio-contrast-icon: var(--shape-lightalt);
|
|
1445
|
+
--components-form-radio-contrast-text: var(--text-lightalt);
|
|
1446
|
+
--components-form-radio-standard-border: var(--stroke-contrast);
|
|
1447
|
+
--components-form-radio-standard-border-negative: var(--stroke-negativealt);
|
|
1448
|
+
--components-form-radio-standard-fill-default: var(--fill-background-standard-colorless);
|
|
1449
|
+
--components-form-radio-standard-fill-hover: var(--fill-secondary-hover-contrast);
|
|
1450
|
+
--components-form-radio-standard-fill-selected: var(--fill-primary-default-contrast);
|
|
1451
|
+
--components-form-radio-standard-icon: var(--shape-lightalt);
|
|
1452
|
+
--components-form-radio-standard-selectedhover: var(--fill-primary-hover-contrast);
|
|
1453
|
+
--components-form-radio-standard-text: var(--text-lightalt);
|
|
1454
|
+
--components-form-segmentedcontrol-contrast-background: var(--fill-background-overlay-transparent);
|
|
1455
|
+
--components-form-segmentedcontrol-contrast-fill-hover: var(--fill-background-overlay-transparent);
|
|
1456
|
+
--components-form-segmentedcontrol-contrast-fill-selected: var(--fill-selected-default-dark);
|
|
1457
|
+
--components-form-segmentedcontrol-contrast-fill-unselected: var(--fill-background-standard-colorless);
|
|
1458
|
+
--components-form-segmentedcontrol-contrast-icon-selected: var(--shape-dark);
|
|
1459
|
+
--components-form-segmentedcontrol-contrast-icon-unselected: var(--shape-lightalt);
|
|
1460
|
+
--components-form-segmentedcontrol-contrast-text-selected: var(--text-dark);
|
|
1461
|
+
--components-form-segmentedcontrol-contrast-text-unselected: var(--text-lightalt);
|
|
1462
|
+
--components-form-segmentedcontrol-standard-background: var(--fill-background-overlay-transparent);
|
|
1463
|
+
--components-form-segmentedcontrol-standard-fill-hover: var(--fill-background-overlay-transparent);
|
|
1464
|
+
--components-form-segmentedcontrol-standard-fill-selected: var(--fill-selected-default-dark);
|
|
1465
|
+
--components-form-segmentedcontrol-standard-fill-unselected: var(--fill-background-standard-colorless);
|
|
1466
|
+
--components-form-segmentedcontrol-standard-icon-selected: var(--shape-dark);
|
|
1467
|
+
--components-form-segmentedcontrol-standard-icon-unselected: var(--shape-lightalt);
|
|
1468
|
+
--components-form-segmentedcontrol-standard-text-selected: var(--text-dark);
|
|
1469
|
+
--components-form-segmentedcontrol-standard-text-unselected: var(--text-lightalt);
|
|
1470
|
+
--components-form-switch-contrast-fill-false: var(--fill-boolean-false-dark);
|
|
1471
|
+
--components-form-switch-contrast-fill-true: var(--fill-boolean-true-contrast);
|
|
1472
|
+
--components-form-switch-contrast-icon-false: var(--shape-darkalt);
|
|
1473
|
+
--components-form-switch-contrast-icon-true: var(--shape-lightalt);
|
|
1474
|
+
--components-form-switch-contrast-switch: var(--fill-background-standard-dark);
|
|
1475
|
+
--components-form-switch-contrast-text: var(--text-lightalt);
|
|
1476
|
+
--components-form-switch-standard-fill-false: var(--fill-boolean-false-dark);
|
|
1477
|
+
--components-form-switch-standard-fill-true: var(--fill-boolean-true-contrast);
|
|
1478
|
+
--components-form-switch-standard-icon-false: var(--shape-darkalt);
|
|
1479
|
+
--components-form-switch-standard-icon-true: var(--shape-lightalt);
|
|
1480
|
+
--components-form-switch-standard-switch: var(--fill-background-standard-dark);
|
|
1481
|
+
--components-form-switch-standard-text: var(--text-lightalt);
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
/* DO NOT CHANGE!*/
|
|
1485
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1486
|
+
[data-color-mode=light],
|
|
1487
|
+
:root {
|
|
1488
|
+
--basecolors-frame-contrast: var(--fill-background-contrast-light);
|
|
1489
|
+
--basecolors-frame-contrastalt: var(--fill-background-contrast-lightalt);
|
|
1490
|
+
--basecolors-frame-default: var(--fill-background-standard-light);
|
|
1491
|
+
--basecolors-frame-elevated: var(--fill-background-standard-light);
|
|
1492
|
+
--basecolors-frame-elevatedalt: var(--fill-background-tint-light);
|
|
1493
|
+
--basecolors-frame-subdued: var(--fill-background-subdued-light);
|
|
1494
|
+
--basecolors-frame-tint: var(--fill-background-tint-light);
|
|
1495
|
+
--basecolors-shape-accent: var(--shape-accent);
|
|
1496
|
+
--basecolors-shape-bicycle-contrast: var(--contrast-bicycle);
|
|
1497
|
+
--basecolors-shape-bicycle-default: var(--standard-bicycle);
|
|
1498
|
+
--basecolors-shape-bus-contrast: var(--contrast-bus);
|
|
1499
|
+
--basecolors-shape-bus-default: var(--standard-bus);
|
|
1500
|
+
--basecolors-shape-cableway-contrast: var(--contrast-cableway);
|
|
1501
|
+
--basecolors-shape-cableway-default: var(--standard-cableway);
|
|
1502
|
+
--basecolors-shape-disabled: var(--shape-neutral);
|
|
1503
|
+
--basecolors-shape-disabledalt: var(--shape-neutralalt);
|
|
1504
|
+
--basecolors-shape-ferry-contrast: var(--contrast-ferry);
|
|
1505
|
+
--basecolors-shape-ferry-default: var(--standard-ferry);
|
|
1506
|
+
--basecolors-shape-funicular-contrast: var(--contrast-funicular);
|
|
1507
|
+
--basecolors-shape-funicular-default: var(--standard-funicular);
|
|
1508
|
+
--basecolors-shape-helicopter-contrast: var(--contrast-helicopter);
|
|
1509
|
+
--basecolors-shape-helicopter-default: var(--standard-helicopter);
|
|
1510
|
+
--basecolors-shape-highlight: var(--stroke-highlight);
|
|
1511
|
+
--basecolors-shape-light: var(--shape-light);
|
|
1512
|
+
--basecolors-shape-mask: var(--shape-light);
|
|
1513
|
+
--basecolors-shape-maskalt: var(--shape-light);
|
|
1514
|
+
--basecolors-shape-metro-contrast: var(--contrast-metro);
|
|
1515
|
+
--basecolors-shape-metro-default: var(--standard-metro);
|
|
1516
|
+
--basecolors-shape-mobility-contrast: var(--contrast-mobility);
|
|
1517
|
+
--basecolors-shape-mobility-default: var(--standard-mobility);
|
|
1518
|
+
--basecolors-shape-plane-contrast: var(--contrast-plane);
|
|
1519
|
+
--basecolors-shape-plane-default: var(--standard-plane);
|
|
1520
|
+
--basecolors-shape-subdued: var(--shape-subdued);
|
|
1521
|
+
--basecolors-shape-subduedalt: var(--shape-subduedalt);
|
|
1522
|
+
--basecolors-shape-taxi-contrast: var(--contrast-taxi);
|
|
1523
|
+
--basecolors-shape-taxi-default: var(--standard-taxi);
|
|
1524
|
+
--basecolors-shape-train-contrast: var(--contrast-train);
|
|
1525
|
+
--basecolors-shape-train-default: var(--standard-train);
|
|
1526
|
+
--basecolors-shape-tram-contrast: var(--contrast-tram);
|
|
1527
|
+
--basecolors-shape-tram-default: var(--standard-tram);
|
|
1528
|
+
--basecolors-shape-walk-contrast: var(--contrast-walk);
|
|
1529
|
+
--basecolors-shape-walk-default: var(--standard-walk);
|
|
1530
|
+
--basecolors-shape-airportlinkbus-contrast: var(--contrast-airportlinkbus);
|
|
1531
|
+
--basecolors-shape-airportlinkbus-default: var(--standard-airportlinkbus);
|
|
1532
|
+
--basecolors-shape-airportlinkrail-contrast: var(--contrast-airportlinkrail);
|
|
1533
|
+
--basecolors-shape-airportlinkrail-default: var(--standard-airportlinkrail);
|
|
1534
|
+
--basecolors-stroke-contrast: var(--stroke-contrast);
|
|
1535
|
+
--basecolors-stroke-default: var(--stroke-accent);
|
|
1536
|
+
--basecolors-stroke-disabled: var(--stroke-neutralalt);
|
|
1537
|
+
--basecolors-stroke-focus-contrast: var(--stroke-contrast);
|
|
1538
|
+
--basecolors-stroke-focus-standard: var(--stroke-accent);
|
|
1539
|
+
--basecolors-stroke-highlight: var(--stroke-highlight);
|
|
1540
|
+
--basecolors-stroke-light: var(--stroke-light);
|
|
1541
|
+
--basecolors-stroke-subdued: var(--stroke-subdued);
|
|
1542
|
+
--basecolors-stroke-subduedalt: var(--stroke-neutral);
|
|
1543
|
+
--basecolors-text-accent: var(--text-accent);
|
|
1544
|
+
--basecolors-text-disabled: var(--text-neutral);
|
|
1545
|
+
--basecolors-text-disabledalt: var(--text-neutralalt);
|
|
1546
|
+
--basecolors-text-highlight: var(--stroke-highlight);
|
|
1547
|
+
--basecolors-text-light: var(--text-light);
|
|
1548
|
+
--basecolors-text-subdued: var(--text-subdued);
|
|
1549
|
+
--basecolors-text-subduedalt: var(--text-subduedalt);
|
|
1088
1550
|
}
|
|
1551
|
+
|
|
1552
|
+
[data-color-mode=dark] {
|
|
1553
|
+
--basecolors-frame-contrast: var(--fill-background-contrast-dark);
|
|
1554
|
+
--basecolors-frame-contrastalt: var(--fill-background-tint-dark);
|
|
1555
|
+
--basecolors-frame-default: var(--fill-background-standard-dark);
|
|
1556
|
+
--basecolors-frame-elevated: var(--fill-background-overlay-transparent);
|
|
1557
|
+
--basecolors-frame-elevatedalt: var(--fill-background-overlay-solidalt);
|
|
1558
|
+
--basecolors-frame-subdued: var(--fill-background-subdued-dark);
|
|
1559
|
+
--basecolors-frame-tint: var(--fill-background-tint-dark);
|
|
1560
|
+
--basecolors-shape-accent: var(--shape-lightalt);
|
|
1561
|
+
--basecolors-shape-bicycle-contrast: var(--dark-bicycle);
|
|
1562
|
+
--basecolors-shape-bicycle-default: var(--dark-bicycle);
|
|
1563
|
+
--basecolors-shape-bus-contrast: var(--dark-bus);
|
|
1564
|
+
--basecolors-shape-bus-default: var(--dark-bus);
|
|
1565
|
+
--basecolors-shape-cableway-contrast: var(--dark-cableway);
|
|
1566
|
+
--basecolors-shape-cableway-default: var(--dark-cableway);
|
|
1567
|
+
--basecolors-shape-disabled: var(--shape-neutralalt);
|
|
1568
|
+
--basecolors-shape-disabledalt: var(--shape-darkalt);
|
|
1569
|
+
--basecolors-shape-ferry-contrast: var(--dark-ferry);
|
|
1570
|
+
--basecolors-shape-ferry-default: var(--dark-ferry);
|
|
1571
|
+
--basecolors-shape-funicular-contrast: var(--dark-funicular);
|
|
1572
|
+
--basecolors-shape-funicular-default: var(--dark-funicular);
|
|
1573
|
+
--basecolors-shape-helicopter-contrast: var(--dark-helicopter);
|
|
1574
|
+
--basecolors-shape-helicopter-default: var(--dark-helicopter);
|
|
1575
|
+
--basecolors-shape-highlight: var(--stroke-highlightalt);
|
|
1576
|
+
--basecolors-shape-light: var(--shape-lightalt);
|
|
1577
|
+
--basecolors-shape-mask: var(--fill-background-subdued-dark);
|
|
1578
|
+
--basecolors-shape-maskalt: var(--fill-background-overlay-solid);
|
|
1579
|
+
--basecolors-shape-metro-contrast: var(--dark-metro);
|
|
1580
|
+
--basecolors-shape-metro-default: var(--dark-metro);
|
|
1581
|
+
--basecolors-shape-mobility-contrast: var(--dark-mobility);
|
|
1582
|
+
--basecolors-shape-mobility-default: var(--dark-mobility);
|
|
1583
|
+
--basecolors-shape-plane-contrast: var(--dark-plane);
|
|
1584
|
+
--basecolors-shape-plane-default: var(--dark-plane);
|
|
1585
|
+
--basecolors-shape-subdued: var(--shape-darkalt);
|
|
1586
|
+
--basecolors-shape-subduedalt: var(--shape-darkalt);
|
|
1587
|
+
--basecolors-shape-taxi-contrast: var(--dark-taxi);
|
|
1588
|
+
--basecolors-shape-taxi-default: var(--dark-taxi);
|
|
1589
|
+
--basecolors-shape-train-contrast: var(--dark-train);
|
|
1590
|
+
--basecolors-shape-train-default: var(--dark-train);
|
|
1591
|
+
--basecolors-shape-tram-contrast: var(--dark-tram);
|
|
1592
|
+
--basecolors-shape-tram-default: var(--dark-tram);
|
|
1593
|
+
--basecolors-shape-walk-contrast: var(--dark-walk);
|
|
1594
|
+
--basecolors-shape-walk-default: var(--dark-walk);
|
|
1595
|
+
--basecolors-shape-airportlinkbus-contrast: var(--dark-airportlinkbus);
|
|
1596
|
+
--basecolors-shape-airportlinkbus-default: var(--dark-airportlinkbus);
|
|
1597
|
+
--basecolors-shape-airportlinkrail-contrast: var(--dark-airportlinkrail);
|
|
1598
|
+
--basecolors-shape-airportlinkrail-default: var(--dark-airportlinkrail);
|
|
1599
|
+
--basecolors-stroke-contrast: var(--stroke-contrast);
|
|
1600
|
+
--basecolors-stroke-default: var(--stroke-dark);
|
|
1601
|
+
--basecolors-stroke-disabled: var(--stroke-neutral);
|
|
1602
|
+
--basecolors-stroke-focus-contrast: var(--stroke-contrast);
|
|
1603
|
+
--basecolors-stroke-focus-standard: var(--stroke-contrast);
|
|
1604
|
+
--basecolors-stroke-highlight: var(--stroke-highlightalt);
|
|
1605
|
+
--basecolors-stroke-light: var(--stroke-dark);
|
|
1606
|
+
--basecolors-stroke-subdued: var(--stroke-darkalt);
|
|
1607
|
+
--basecolors-stroke-subduedalt: var(--stroke-darkalt);
|
|
1608
|
+
--basecolors-text-accent: var(--text-lightalt);
|
|
1609
|
+
--basecolors-text-disabled: var(--text-neutralalt);
|
|
1610
|
+
--basecolors-text-disabledalt: var(--text-neutralalt);
|
|
1611
|
+
--basecolors-text-highlight: var(--stroke-highlightalt);
|
|
1612
|
+
--basecolors-text-light: var(--text-lightalt);
|
|
1613
|
+
--basecolors-text-subdued: var(--text-darkalt);
|
|
1614
|
+
--basecolors-text-subduedalt: var(--text-darkalt);
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
/* DO NOT CHANGE!*/
|
|
1618
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
1619
|
+
:root {
|
|
1620
|
+
--contrast-bicycle: #00db9b;
|
|
1621
|
+
--contrast-bus: #ff6392;
|
|
1622
|
+
--contrast-bus-transparent: rgba(255,99,146,0.14902);
|
|
1623
|
+
--contrast-cableway: #b482fb;
|
|
1624
|
+
--contrast-cableway-transparent: rgba(180,130,251,0.14902);
|
|
1625
|
+
--contrast-carferry: #6fdfff;
|
|
1626
|
+
--contrast-carferry-transparent: rgba(111,223,255,0.14902);
|
|
1627
|
+
--contrast-citybike: #00db9b;
|
|
1628
|
+
--contrast-ferry: #6fdfff;
|
|
1629
|
+
--contrast-ferry-transparent: rgba(111,223,255,0.14902);
|
|
1630
|
+
--contrast-funicular: #b482fb;
|
|
1631
|
+
--contrast-funicular-transparent: rgba(180,130,251,0.14902);
|
|
1632
|
+
--contrast-helicopter: #fbafea;
|
|
1633
|
+
--contrast-helicopter-transparent: rgba(251,175,234,0.14902);
|
|
1634
|
+
--contrast-metro: #f08901;
|
|
1635
|
+
--contrast-metro-transparent: rgba(240,137,1,0.14902);
|
|
1636
|
+
--contrast-mobility: #00db9b;
|
|
1637
|
+
--contrast-neutral: #ffffff;
|
|
1638
|
+
--contrast-plane: #fbafea;
|
|
1639
|
+
--contrast-plane-transparent: rgba(251,175,234,0.14902);
|
|
1640
|
+
--contrast-taxi: #ffe082;
|
|
1641
|
+
--contrast-taxi-transparent: rgba(255,224,130,0.14902);
|
|
1642
|
+
--contrast-train: #42a5f5;
|
|
1643
|
+
--contrast-train-transparent: rgba(66,165,245,0.14902);
|
|
1644
|
+
--contrast-tram: #b482fb;
|
|
1645
|
+
--contrast-tram-transparent: rgba(180,130,251,0.14902);
|
|
1646
|
+
--contrast-walk: #8284ab;
|
|
1647
|
+
--contrast-airportlinkbus: #fbafea;
|
|
1648
|
+
--contrast-airportlinkbus-transparent: rgba(251,175,234,0.14902);
|
|
1649
|
+
--contrast-airportlinkrail: #fbafea;
|
|
1650
|
+
--contrast-airportlinkrail-transparent: rgba(251,175,234,0.14902);
|
|
1651
|
+
--dark-bicycle: #4db295;
|
|
1652
|
+
--dark-bus: #e87a9b;
|
|
1653
|
+
--dark-bus-transparent: rgba(232,122,155,0.14902);
|
|
1654
|
+
--dark-cableway: #b898e5;
|
|
1655
|
+
--dark-cableway-transparent: rgba(184,152,229,0.14902);
|
|
1656
|
+
--dark-carferry: #8ccfe2;
|
|
1657
|
+
--dark-carferry-transparent: rgba(140,207,226,0.14902);
|
|
1658
|
+
--dark-citybike: #4db295;
|
|
1659
|
+
--dark-ferry: #8ccfe2;
|
|
1660
|
+
--dark-ferry-transparent: rgba(140,207,226,0.14902);
|
|
1661
|
+
--dark-funicular: #b898e5;
|
|
1662
|
+
--dark-funicular-transparent: rgba(184,152,229,0.14902);
|
|
1663
|
+
--dark-helicopter: #f2b8e5;
|
|
1664
|
+
--dark-helicopter-transparent: rgba(242,184,229,0.14902);
|
|
1665
|
+
--dark-metro: #dd973c;
|
|
1666
|
+
--dark-metro-transparent: rgba(221,151,60,0.14902);
|
|
1667
|
+
--dark-mobility: #4db295;
|
|
1668
|
+
--dark-neutral: #e5e5e9;
|
|
1669
|
+
--dark-plane: #f2b8e5;
|
|
1670
|
+
--dark-plane-transparent: rgba(242,184,229,0.14902);
|
|
1671
|
+
--dark-taxi: #ffe082;
|
|
1672
|
+
--dark-taxi-transparent: rgba(255,224,130,0.14902);
|
|
1673
|
+
--dark-train: #60a2d7;
|
|
1674
|
+
--dark-train-transparent: rgba(96,162,215,0.14902);
|
|
1675
|
+
--dark-tram: #b898e5;
|
|
1676
|
+
--dark-tram-transparent: rgba(184,152,229,0.14902);
|
|
1677
|
+
--dark-walk: #8d8e9c;
|
|
1678
|
+
--dark-airportlinkbus: #f2b8e5;
|
|
1679
|
+
--dark-airportlinkbus-transparent: rgba(242,184,229,0.14902);
|
|
1680
|
+
--dark-airportlinkrail: #f2b8e5;
|
|
1681
|
+
--dark-airportlinkrail-transparent: rgba(242,184,229,0.14902);
|
|
1682
|
+
--standard-bicycle: #388f76;
|
|
1683
|
+
--standard-bus: #c5044e;
|
|
1684
|
+
--standard-bus-transparent: rgba(197,4,78,0.14902);
|
|
1685
|
+
--standard-cableway: #78469a;
|
|
1686
|
+
--standard-cableway-transparent: rgba(120,70,154,0.14902);
|
|
1687
|
+
--standard-carferry: #0c6693;
|
|
1688
|
+
--standard-carferry-transparent: rgba(12,102,147,0.14902);
|
|
1689
|
+
--standard-citybike: #388f76;
|
|
1690
|
+
--standard-ferry: #0c6693;
|
|
1691
|
+
--standard-ferry-transparent: rgba(12,102,147,0.14902);
|
|
1692
|
+
--standard-funicular: #78469a;
|
|
1693
|
+
--standard-funicular-transparent: rgba(120,70,154,0.14902);
|
|
1694
|
+
--standard-helicopter: #800664;
|
|
1695
|
+
--standard-helicopter-transparent: rgba(128,6,100,0.14902);
|
|
1696
|
+
--standard-metro: #bf5826;
|
|
1697
|
+
--standard-metro-transparent: rgba(191,88,38,0.14902);
|
|
1698
|
+
--standard-mobility: #388f76;
|
|
1699
|
+
--standard-neutral: #181c56;
|
|
1700
|
+
--standard-plane: #800664;
|
|
1701
|
+
--standard-plane-transparent: rgba(128,6,100,0.14902);
|
|
1702
|
+
--standard-taxi: #3d3e40;
|
|
1703
|
+
--standard-taxi-transparent: rgba(61,62,64,0.14902);
|
|
1704
|
+
--standard-train: #00367f;
|
|
1705
|
+
--standard-train-transparent: rgba(0,54,127,0.14902);
|
|
1706
|
+
--standard-tram: #78469a;
|
|
1707
|
+
--standard-tram-transparent: rgba(120,70,154,0.14902);
|
|
1708
|
+
--standard-walk: #8d8e9c;
|
|
1709
|
+
--standard-airportlinkbus: #800664;
|
|
1710
|
+
--standard-airportlinkbus-transparent: rgba(128,6,100,0.14902);
|
|
1711
|
+
--standard-airportlinkrail: #800664;
|
|
1712
|
+
--standard-airportlinkrail-transparent: rgba(128,6,100,0.14902);
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1089
1715
|
:root {
|
|
1090
1716
|
--eds-form: 1;
|
|
1091
1717
|
}
|