@utrecht/component-library-css 1.0.0-alpha.13 → 1.0.0-alpha.130
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/README.md +44 -0
- package/dist/bem.css +2251 -203
- package/dist/html.css +2047 -194
- package/dist/index.css +4921 -644
- package/dist/root-theme.css +389 -153
- package/html-component.md +25 -0
- package/package.json +7 -4
- package/src/bem.scss +41 -1
- package/src/html.scss +19 -6
package/dist/html.css
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
5
5
|
*/
|
|
6
6
|
/* Collection of all semantic HTML styles in the component library */
|
|
7
|
+
/**
|
|
8
|
+
* @license EUPL-1.2
|
|
9
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
10
|
+
*/
|
|
11
|
+
/**
|
|
12
|
+
* @license EUPL-1.2
|
|
13
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
14
|
+
*/
|
|
15
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
16
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
7
17
|
/**
|
|
8
18
|
* @license EUPL-1.2
|
|
9
19
|
* Copyright (c) 2021 Robbert Broersma
|
|
@@ -27,6 +37,8 @@
|
|
|
27
37
|
.utrecht-blockquote, .utrecht-html blockquote {
|
|
28
38
|
font-family: var(--utrecht-document-font-family);
|
|
29
39
|
font-size: var(--utrecht-blockquote-font-size);
|
|
40
|
+
margin-inline-end: var(--utrecht-blockquote-margin-inline-end);
|
|
41
|
+
margin-inline-start: var(--utrecht-blockquote-margin-inline-start);
|
|
30
42
|
}
|
|
31
43
|
|
|
32
44
|
.utrecht-blockquote__attribution {
|
|
@@ -42,10 +54,8 @@
|
|
|
42
54
|
}
|
|
43
55
|
|
|
44
56
|
.utrecht-blockquote--distanced, .utrecht-html blockquote {
|
|
45
|
-
margin-inline-start: var(--utrecht-blockquote-margin-inline-start);
|
|
46
|
-
margin-inline-end: var(--utrecht-blockquote-margin-inline-end);
|
|
47
|
-
margin-block-start: var(--utrecht-blockquote-margin-block-start);
|
|
48
57
|
margin-block-end: var(--utrecht-blockquote-margin-block-end);
|
|
58
|
+
margin-block-start: var(--utrecht-blockquote-margin-block-start);
|
|
49
59
|
}
|
|
50
60
|
|
|
51
61
|
/**
|
|
@@ -54,46 +64,212 @@
|
|
|
54
64
|
*/
|
|
55
65
|
/**
|
|
56
66
|
* @license EUPL-1.2
|
|
67
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
68
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
69
|
+
*/
|
|
70
|
+
/**
|
|
71
|
+
* @license EUPL-1.2
|
|
72
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
57
73
|
* Copyright (c) 2021 Robbert Broersma
|
|
58
74
|
*/
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
75
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
76
|
+
.utrecht-button, .utrecht-html input[type=button i],
|
|
77
|
+
.utrecht-html input[type=reset i],
|
|
78
|
+
.utrecht-html input[type=submit i],
|
|
79
|
+
.utrecht-html button {
|
|
80
|
+
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
81
|
+
border-radius: var(--utrecht-button-border-radius);
|
|
82
|
+
border-style: solid;
|
|
83
|
+
border-width: var(--utrecht-button-border-width, 0);
|
|
84
|
+
color: var(--utrecht-button-primary-action-color, var(--utrecht-button-color));
|
|
85
|
+
font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
|
|
86
|
+
font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
|
|
87
|
+
font-weight: var(--utrecht-button-font-weight);
|
|
88
|
+
inline-size: var(--utrecht-button-inline-size, auto);
|
|
89
|
+
letter-spacing: var(--utrecht-button-letter-spacing);
|
|
90
|
+
min-block-size: var(--utrecht-button-min-block-size, auto);
|
|
91
|
+
min-inline-size: var(--utrecht-button-min-inline-size, 0);
|
|
92
|
+
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
93
|
+
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
94
|
+
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
95
|
+
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
96
|
+
text-transform: var(--utrecht-button-text-transform);
|
|
97
|
+
user-select: none;
|
|
62
98
|
}
|
|
63
99
|
|
|
64
|
-
.utrecht-
|
|
65
|
-
|
|
100
|
+
.utrecht-button--distanced, .utrecht-html input[type=button i],
|
|
101
|
+
.utrecht-html input[type=reset i],
|
|
102
|
+
.utrecht-html input[type=submit i],
|
|
103
|
+
.utrecht-html button {
|
|
104
|
+
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
105
|
+
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
106
|
+
margin-inline-end: var(--utrecht-button-margin-inline-end);
|
|
107
|
+
margin-inline-start: var(--utrecht-button-margin-inline-start);
|
|
66
108
|
}
|
|
67
109
|
|
|
68
|
-
.utrecht-
|
|
69
|
-
|
|
110
|
+
.utrecht-button--submit, .utrecht-html button[type=submit i],
|
|
111
|
+
.utrecht-html input[type=submit i] {
|
|
112
|
+
/* lower priority specificty than busy and disabled cursor */
|
|
113
|
+
cursor: var(--utrecht-action-submit-cursor);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.utrecht-button--busy, .utrecht-html button[aria-busy=true],
|
|
117
|
+
.utrecht-html button[aria-disabled=true][aria-busy=true],
|
|
118
|
+
.utrecht-html button:disabled[aria-busy=true] {
|
|
119
|
+
cursor: var(--utrecht-action-busy-cursor);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.utrecht-button:disabled, .utrecht-html input[type=button i]:disabled,
|
|
123
|
+
.utrecht-html input[type=reset i]:disabled,
|
|
124
|
+
.utrecht-html input[type=submit i]:disabled,
|
|
125
|
+
.utrecht-html button:disabled,
|
|
126
|
+
.utrecht-button--disabled,
|
|
127
|
+
.utrecht-html button[aria-disabled=true] {
|
|
128
|
+
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
129
|
+
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
130
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
134
|
+
.utrecht-html input[type=reset i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
135
|
+
.utrecht-html input[type=submit i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
136
|
+
.utrecht-button--active,
|
|
137
|
+
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
138
|
+
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
139
|
+
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.utrecht-button--focus-visible, .utrecht-html button:focus-visible, .utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
143
|
+
.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
144
|
+
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
145
|
+
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
146
|
+
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
147
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
148
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
149
|
+
outline-offset: 0;
|
|
150
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
151
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.utrecht-button--focus, .utrecht-html button:focus:not([aria-disabled=true]):not(:disabled), .utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
155
|
+
.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
156
|
+
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
157
|
+
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
158
|
+
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
159
|
+
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/* override the `:focus` selector above */
|
|
163
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
164
|
+
.utrecht-button:focus:not(:focus-visible), .utrecht-html input[type=button i]:focus:not(:focus-visible),
|
|
165
|
+
.utrecht-html input[type=reset i]:focus:not(:focus-visible),
|
|
166
|
+
.utrecht-html input[type=submit i]:focus:not(:focus-visible),
|
|
167
|
+
.utrecht-html button:focus:not(:focus-visible) {
|
|
168
|
+
/* undo focus ring */
|
|
169
|
+
box-shadow: none;
|
|
170
|
+
outline-style: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.utrecht-button--hover:not(:disabled), .utrecht-html button:not(:disabled):hover:not([aria-disabled=true]),
|
|
174
|
+
.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
175
|
+
.utrecht-html input[type=button i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
176
|
+
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
177
|
+
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
178
|
+
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
179
|
+
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
180
|
+
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
70
181
|
}
|
|
71
182
|
|
|
183
|
+
/* override the `:focus` selector above */
|
|
184
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
72
185
|
/**
|
|
73
186
|
* @license EUPL-1.2
|
|
74
187
|
* Copyright (c) 2021 Robbert Broersma
|
|
75
188
|
*/
|
|
76
189
|
/**
|
|
77
190
|
* @license EUPL-1.2
|
|
78
|
-
* Copyright (c) 2021
|
|
191
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
79
192
|
*/
|
|
80
|
-
|
|
193
|
+
/**
|
|
194
|
+
* @license EUPL-1.2
|
|
195
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
196
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
197
|
+
*/
|
|
198
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
199
|
+
.utrecht-checkbox, .utrecht-html input[type=checkbox i] {
|
|
200
|
+
margin-block-end: 0;
|
|
201
|
+
/* reset native margin for input[type="checkbox"] */
|
|
202
|
+
margin-block-start: 0;
|
|
203
|
+
margin-inline-end: 0;
|
|
204
|
+
margin-inline-start: 0;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
208
|
+
.utrecht-checkbox--disabled, .utrecht-checkbox--html-input:disabled, .utrecht-html input[type=checkbox i]:disabled {
|
|
209
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.utrecht-checkbox--focus-visible {
|
|
213
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
214
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
215
|
+
outline-offset: 0;
|
|
216
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
217
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.utrecht-checkbox--html-input:focus, .utrecht-html input[type=checkbox i]:focus {
|
|
221
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
222
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
223
|
+
outline-offset: 0;
|
|
224
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
225
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
226
|
+
}
|
|
227
|
+
.utrecht-checkbox--html-input:focus:not(:focus-visible), .utrecht-html input[type=checkbox i]:focus:not(:focus-visible) {
|
|
228
|
+
/* undo focus ring */
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
outline-style: none;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* @license EUPL-1.2
|
|
235
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
236
|
+
*/
|
|
237
|
+
/**
|
|
238
|
+
* @license EUPL-1.2
|
|
239
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
240
|
+
*/
|
|
241
|
+
.utrecht-document, .utrecht-html body {
|
|
242
|
+
/* reset `font-smoothing: antialiasing`, prefer automatic (`subpixel-antialiasing`) behavior for high-dpi screens */
|
|
81
243
|
color: var(--utrecht-document-color, inherit);
|
|
82
|
-
font-family: var(--utrecht-
|
|
83
|
-
font-size: var(--utrecht-
|
|
84
|
-
font-weight: var(--utrecht-
|
|
85
|
-
line-height: var(--utrecht-
|
|
244
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
245
|
+
font-size: var(--utrecht-document-font-size, inherit);
|
|
246
|
+
font-weight: var(--utrecht-document-font-weight, inherit);
|
|
247
|
+
line-height: var(--utrecht-document-line-height, inherit);
|
|
248
|
+
text-rendering: optimizeLegibility;
|
|
249
|
+
}
|
|
250
|
+
.utrecht-document :lang(ar), .utrecht-html body :lang(ar) {
|
|
251
|
+
/* `letter-spacing` design tokens break Arabic text rendering, avoid that */
|
|
252
|
+
letter-spacing: 0 !important;
|
|
86
253
|
}
|
|
87
254
|
|
|
88
|
-
.utrecht-
|
|
89
|
-
|
|
90
|
-
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
91
|
-
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
255
|
+
.utrecht-document--surface, .utrecht-html body {
|
|
256
|
+
background-color: var(--utrecht-document-background-color, inherit);
|
|
92
257
|
}
|
|
93
258
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
259
|
+
/**
|
|
260
|
+
* @license EUPL-1.2
|
|
261
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
262
|
+
*/
|
|
263
|
+
/**
|
|
264
|
+
* @license EUPL-1.2
|
|
265
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
266
|
+
*/
|
|
267
|
+
.utrecht-emphasis--stressed, .utrecht-html em {
|
|
268
|
+
font-style: var(--utrecht-emphasis-stressed-font-style, italic);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.utrecht-emphasis--strong, .utrecht-html strong {
|
|
272
|
+
font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
|
|
97
273
|
}
|
|
98
274
|
|
|
99
275
|
/**
|
|
@@ -104,37 +280,40 @@
|
|
|
104
280
|
* @license EUPL-1.2
|
|
105
281
|
* Copyright (c) 2021 Robbert Broersma
|
|
106
282
|
*/
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
border
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
padding-inline-
|
|
121
|
-
|
|
283
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
284
|
+
.utrecht-form-fieldset--reset-fieldset, .utrecht-html fieldset {
|
|
285
|
+
border: 0;
|
|
286
|
+
margin-inline-end: 0;
|
|
287
|
+
margin-inline-start: 0;
|
|
288
|
+
min-width: 0;
|
|
289
|
+
padding-block-end: 0;
|
|
290
|
+
padding-block-start: 0.01em;
|
|
291
|
+
padding-inline-end: 0;
|
|
292
|
+
padding-inline-start: 0;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.utrecht-form-fieldset__legend--reset-legend, .utrecht-html legend {
|
|
296
|
+
padding-inline-end: 0;
|
|
297
|
+
padding-inline-start: 0;
|
|
122
298
|
}
|
|
123
299
|
|
|
124
|
-
.utrecht-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
border-width: var(--utrecht-textarea-invalid-border-width);
|
|
300
|
+
.utrecht-form-fieldset--distanced, .utrecht-html fieldset {
|
|
301
|
+
margin-block-end: var(--utrecht-form-fieldset-margin-block-end, 0);
|
|
302
|
+
margin-block-start: var(--utrecht-form-fieldset-margin-block-start, 0);
|
|
128
303
|
}
|
|
129
304
|
|
|
130
|
-
.utrecht-
|
|
131
|
-
|
|
132
|
-
|
|
305
|
+
.utrecht-form-fieldset__legend, .utrecht-html legend {
|
|
306
|
+
color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
|
|
307
|
+
font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
|
|
308
|
+
font-size: var(--utrecht-form-fieldset-legend-font-size);
|
|
309
|
+
font-weight: var(--utrecht-form-fieldset-legend-font-weight);
|
|
310
|
+
line-height: var(--utrecht-form-fieldset-legend-line-height);
|
|
311
|
+
text-transform: var(--utrecht-form-fieldset-legend-text-transform);
|
|
133
312
|
}
|
|
134
313
|
|
|
135
|
-
.utrecht-
|
|
136
|
-
|
|
137
|
-
|
|
314
|
+
.utrecht-form-fieldset__legend--distanced, .utrecht-html legend {
|
|
315
|
+
margin-block-end: var(--utrecht-form-fieldset-legend-margin-block-end);
|
|
316
|
+
margin-block-start: var(--utrecht-form-fieldset-legend-margin-block-start);
|
|
138
317
|
}
|
|
139
318
|
|
|
140
319
|
/**
|
|
@@ -143,51 +322,31 @@
|
|
|
143
322
|
*/
|
|
144
323
|
/**
|
|
145
324
|
* @license EUPL-1.2
|
|
146
|
-
* Copyright (c) 2021
|
|
147
|
-
* Copyright (c) 2021 Gemeente Utrecht
|
|
325
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
148
326
|
*/
|
|
149
|
-
.utrecht-
|
|
150
|
-
color: var(--utrecht-
|
|
151
|
-
font-size: var(--utrecht-
|
|
152
|
-
font-
|
|
153
|
-
background-color: var(--utrecht-button-primary-action-background-color);
|
|
154
|
-
border-radius: var(--utrecht-button-border-radius);
|
|
155
|
-
border-width: var(--utrecht-button-border-width);
|
|
156
|
-
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
157
|
-
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
158
|
-
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
159
|
-
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
327
|
+
.utrecht-form-label, .utrecht-html label {
|
|
328
|
+
color: var(--utrecht-form-label-color);
|
|
329
|
+
font-size: var(--utrecht-form-label-font-size);
|
|
330
|
+
font-weight: var(--utrecht-form-label-font-weight);
|
|
160
331
|
}
|
|
161
332
|
|
|
162
|
-
.utrecht-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
166
|
-
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
333
|
+
.utrecht-form-label--checkbox, .utrecht-html input[type=checkbox i] ~ label {
|
|
334
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
335
|
+
font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
|
|
167
336
|
}
|
|
168
337
|
|
|
169
|
-
.utrecht-
|
|
170
|
-
|
|
171
|
-
color: var(--utrecht-button-disabled-color);
|
|
172
|
-
background-color: var(--utrecht-button-disabled-background-color);
|
|
338
|
+
.utrecht-form-label--checked {
|
|
339
|
+
font-weight: var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight));
|
|
173
340
|
}
|
|
174
341
|
|
|
175
|
-
.utrecht-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
179
|
-
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
180
|
-
color: var(--utrecht-focus-color, inherit);
|
|
181
|
-
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
182
|
-
outline-offset: 0;
|
|
183
|
-
background-color: var(--utrecht-focus-background-color);
|
|
342
|
+
.utrecht-form-label--disabled {
|
|
343
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
344
|
+
font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
|
|
184
345
|
}
|
|
185
346
|
|
|
186
|
-
.utrecht-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
background-color: var(--utrecht-button-primary-action-hover-background-color);
|
|
190
|
-
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
347
|
+
.utrecht-form-label--radio, .utrecht-html input[type=radio i] ~ label {
|
|
348
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
349
|
+
font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
|
|
191
350
|
}
|
|
192
351
|
|
|
193
352
|
/**
|
|
@@ -201,110 +360,1349 @@
|
|
|
201
360
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
202
361
|
*/
|
|
203
362
|
.utrecht-heading-1, .utrecht-html h1 {
|
|
363
|
+
color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
204
364
|
font-family: var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
205
365
|
font-size: var(--utrecht-heading-1-font-size);
|
|
206
366
|
font-weight: var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
207
367
|
letter-spacing: var(--utrecht-heading-1-letter-spacing);
|
|
208
368
|
line-height: var(--utrecht-heading-1-line-height);
|
|
369
|
+
margin-block-end: 0;
|
|
370
|
+
margin-block-start: 0;
|
|
209
371
|
text-transform: var(--utrecht-heading-1-text-transform, inherit);
|
|
210
|
-
color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
211
372
|
}
|
|
212
373
|
|
|
213
374
|
.utrecht-heading-1--distanced, .utrecht-html h1 {
|
|
214
|
-
margin-block-start: var(--utrecht-heading-1-margin-block-start);
|
|
215
375
|
margin-block-end: var(--utrecht-heading-1-margin-block-end);
|
|
376
|
+
margin-block-start: var(--utrecht-heading-1-margin-block-start);
|
|
216
377
|
}
|
|
217
378
|
|
|
379
|
+
/**
|
|
380
|
+
* @license EUPL-1.2
|
|
381
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
382
|
+
*/
|
|
383
|
+
/**
|
|
384
|
+
* @license EUPL-1.2
|
|
385
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
386
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
387
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
388
|
+
*/
|
|
218
389
|
.utrecht-heading-2, .utrecht-html h2 {
|
|
390
|
+
color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
219
391
|
font-family: var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
220
392
|
font-size: var(--utrecht-heading-2-font-size);
|
|
221
393
|
font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
222
394
|
letter-spacing: var(--utrecht-heading-2-letter-spacing);
|
|
223
395
|
line-height: var(--utrecht-heading-2-line-height);
|
|
396
|
+
margin-block-end: 0;
|
|
397
|
+
margin-block-start: 0;
|
|
224
398
|
text-transform: var(--utrecht-heading-2-text-transform, inherit);
|
|
225
|
-
color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
226
399
|
}
|
|
227
400
|
|
|
228
401
|
.utrecht-heading-2--distanced, .utrecht-html h2 {
|
|
229
|
-
margin-block-start: var(--utrecht-heading-2-margin-block-start);
|
|
230
402
|
margin-block-end: var(--utrecht-heading-2-margin-block-end);
|
|
403
|
+
margin-block-start: var(--utrecht-heading-2-margin-block-start);
|
|
231
404
|
}
|
|
232
405
|
|
|
406
|
+
/**
|
|
407
|
+
* @license EUPL-1.2
|
|
408
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
409
|
+
*/
|
|
410
|
+
/**
|
|
411
|
+
* @license EUPL-1.2
|
|
412
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
413
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
414
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
415
|
+
*/
|
|
233
416
|
.utrecht-heading-3, .utrecht-html h3 {
|
|
417
|
+
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
234
418
|
font-family: var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
235
419
|
font-size: var(--utrecht-heading-3-font-size);
|
|
236
420
|
font-weight: var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
237
421
|
letter-spacing: var(--utrecht-heading-3-letter-spacing);
|
|
238
422
|
line-height: var(--utrecht-heading-3-line-height);
|
|
423
|
+
margin-block-end: 0;
|
|
424
|
+
margin-block-start: 0;
|
|
239
425
|
text-transform: var(--utrecht-heading-3-text-transform, inherit);
|
|
240
|
-
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
241
426
|
}
|
|
242
427
|
|
|
243
428
|
.utrecht-heading-3--distanced, .utrecht-html h3 {
|
|
244
|
-
margin-block-start: var(--utrecht-heading-3-margin-block-start);
|
|
245
429
|
margin-block-end: var(--utrecht-heading-3-margin-block-end);
|
|
430
|
+
margin-block-start: var(--utrecht-heading-3-margin-block-start);
|
|
246
431
|
}
|
|
247
432
|
|
|
433
|
+
/**
|
|
434
|
+
* @license EUPL-1.2
|
|
435
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
436
|
+
*/
|
|
437
|
+
/**
|
|
438
|
+
* @license EUPL-1.2
|
|
439
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
440
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
441
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
442
|
+
*/
|
|
248
443
|
.utrecht-heading-4, .utrecht-html h4 {
|
|
444
|
+
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
249
445
|
font-family: var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
250
446
|
font-size: var(--utrecht-heading-4-font-size);
|
|
251
447
|
font-weight: var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
252
448
|
letter-spacing: var(--utrecht-heading-4-letter-spacing);
|
|
253
449
|
line-height: var(--utrecht-heading-4-line-height);
|
|
450
|
+
margin-block-end: 0;
|
|
451
|
+
margin-block-start: 0;
|
|
254
452
|
text-transform: var(--utrecht-heading-4-text-transform, inherit);
|
|
255
|
-
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
256
453
|
}
|
|
257
454
|
|
|
258
455
|
.utrecht-heading-4--distanced, .utrecht-html h4 {
|
|
259
|
-
margin-block-start: var(--utrecht-heading-4-margin-block-start);
|
|
260
456
|
margin-block-end: var(--utrecht-heading-4-margin-block-end);
|
|
457
|
+
margin-block-start: var(--utrecht-heading-4-margin-block-start);
|
|
261
458
|
}
|
|
262
459
|
|
|
460
|
+
/**
|
|
461
|
+
* @license EUPL-1.2
|
|
462
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
463
|
+
*/
|
|
464
|
+
/**
|
|
465
|
+
* @license EUPL-1.2
|
|
466
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
467
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
468
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
469
|
+
*/
|
|
263
470
|
.utrecht-heading-5, .utrecht-html h5 {
|
|
471
|
+
color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
264
472
|
font-family: var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
265
473
|
font-size: var(--utrecht-heading-5-font-size);
|
|
266
474
|
font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
267
475
|
letter-spacing: var(--utrecht-heading-5-letter-spacing);
|
|
268
476
|
line-height: var(--utrecht-heading-5-line-height);
|
|
477
|
+
margin-block-end: 0;
|
|
478
|
+
margin-block-start: 0;
|
|
269
479
|
text-transform: var(--utrecht-heading-5-text-transform, inherit);
|
|
270
|
-
color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
271
480
|
}
|
|
272
481
|
|
|
273
482
|
.utrecht-heading-5--distanced, .utrecht-html h5 {
|
|
274
|
-
margin-block-start: var(--utrecht-heading-5-margin-block-start);
|
|
275
483
|
margin-block-end: var(--utrecht-heading-5-margin-block-end);
|
|
484
|
+
margin-block-start: var(--utrecht-heading-5-margin-block-start);
|
|
276
485
|
}
|
|
277
486
|
|
|
487
|
+
/**
|
|
488
|
+
* @license EUPL-1.2
|
|
489
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
490
|
+
*/
|
|
491
|
+
/**
|
|
492
|
+
* @license EUPL-1.2
|
|
493
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
494
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
495
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
496
|
+
*/
|
|
278
497
|
.utrecht-heading-6, .utrecht-html h6 {
|
|
498
|
+
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
279
499
|
font-family: var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
280
500
|
font-size: var(--utrecht-heading-6-font-size);
|
|
281
501
|
font-weight: var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
282
502
|
letter-spacing: var(--utrecht-heading-6-letter-spacing);
|
|
283
503
|
line-height: var(--utrecht-heading-6-line-height);
|
|
504
|
+
margin-block-end: 0;
|
|
505
|
+
margin-block-start: 0;
|
|
284
506
|
text-transform: var(--utrecht-heading-6-text-transform, inherit);
|
|
285
|
-
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
286
507
|
}
|
|
287
508
|
|
|
288
509
|
.utrecht-heading-6--distanced, .utrecht-html h6 {
|
|
289
|
-
margin-block-start: var(--utrecht-heading-6-margin-block-start);
|
|
290
510
|
margin-block-end: var(--utrecht-heading-6-margin-block-end);
|
|
511
|
+
margin-block-start: var(--utrecht-heading-6-margin-block-start);
|
|
291
512
|
}
|
|
292
513
|
|
|
293
514
|
/**
|
|
294
515
|
* @license EUPL-1.2
|
|
295
|
-
* Copyright (c) 2021
|
|
516
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
296
517
|
*/
|
|
518
|
+
/* Collection of all semantic HTML styles in the component library */
|
|
297
519
|
/**
|
|
298
520
|
* @license EUPL-1.2
|
|
299
|
-
* Copyright (c) 2021
|
|
521
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
300
522
|
*/
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
523
|
+
/**
|
|
524
|
+
* @license EUPL-1.2
|
|
525
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
526
|
+
*/
|
|
527
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
528
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
529
|
+
/**
|
|
530
|
+
* @license EUPL-1.2
|
|
531
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
532
|
+
*/
|
|
533
|
+
/**
|
|
534
|
+
* @license EUPL-1.2
|
|
535
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
536
|
+
*/
|
|
537
|
+
.utrecht-article, .utrecht-html article {
|
|
538
|
+
max-inline-size: var(--utrecht-article-max-inline-size);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* @license EUPL-1.2
|
|
543
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
544
|
+
*/
|
|
545
|
+
/**
|
|
546
|
+
* @license EUPL-1.2
|
|
547
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
548
|
+
*/
|
|
549
|
+
.utrecht-blockquote, .utrecht-html blockquote {
|
|
550
|
+
font-family: var(--utrecht-document-font-family);
|
|
551
|
+
font-size: var(--utrecht-blockquote-font-size);
|
|
552
|
+
margin-inline-end: var(--utrecht-blockquote-margin-inline-end);
|
|
553
|
+
margin-inline-start: var(--utrecht-blockquote-margin-inline-start);
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.utrecht-blockquote__attribution {
|
|
557
|
+
color: var(--utrecht-blockquote-attribution-color, inherit);
|
|
558
|
+
font-size: var(--utrecht-blockquote-attribution-font-size, inherit);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.utrecht-blockquote__content, .utrecht-html blockquote {
|
|
562
|
+
--utrecht-document-color: var(--utrecht-blockquote-content-color, inherit);
|
|
563
|
+
--utrecht-paragraph-font-size: var(--utrecht-blockquote-content-font-size, inherit);
|
|
564
|
+
color: var(--utrecht-blockquote-content-color, inherit);
|
|
565
|
+
font-size: var(--utrecht-blockquote-content-font-size, inherit);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.utrecht-blockquote--distanced, .utrecht-html blockquote {
|
|
569
|
+
margin-block-end: var(--utrecht-blockquote-margin-block-end);
|
|
570
|
+
margin-block-start: var(--utrecht-blockquote-margin-block-start);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
/**
|
|
574
|
+
* @license EUPL-1.2
|
|
575
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
576
|
+
*/
|
|
577
|
+
/**
|
|
578
|
+
* @license EUPL-1.2
|
|
579
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
580
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
581
|
+
*/
|
|
582
|
+
/**
|
|
583
|
+
* @license EUPL-1.2
|
|
584
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
585
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
586
|
+
*/
|
|
587
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
588
|
+
.utrecht-button, .utrecht-html input[type=button i],
|
|
589
|
+
.utrecht-html input[type=reset i],
|
|
590
|
+
.utrecht-html input[type=submit i],
|
|
591
|
+
.utrecht-html button {
|
|
592
|
+
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
593
|
+
border-radius: var(--utrecht-button-border-radius);
|
|
594
|
+
border-style: solid;
|
|
595
|
+
border-width: var(--utrecht-button-border-width, 0);
|
|
596
|
+
color: var(--utrecht-button-primary-action-color, var(--utrecht-button-color));
|
|
597
|
+
font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
|
|
598
|
+
font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
|
|
599
|
+
font-weight: var(--utrecht-button-font-weight);
|
|
600
|
+
inline-size: var(--utrecht-button-inline-size, auto);
|
|
601
|
+
letter-spacing: var(--utrecht-button-letter-spacing);
|
|
602
|
+
min-block-size: var(--utrecht-button-min-block-size, auto);
|
|
603
|
+
min-inline-size: var(--utrecht-button-min-inline-size, 0);
|
|
604
|
+
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
605
|
+
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
606
|
+
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
607
|
+
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
608
|
+
text-transform: var(--utrecht-button-text-transform);
|
|
609
|
+
user-select: none;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.utrecht-button--distanced, .utrecht-html input[type=button i],
|
|
613
|
+
.utrecht-html input[type=reset i],
|
|
614
|
+
.utrecht-html input[type=submit i],
|
|
615
|
+
.utrecht-html button {
|
|
616
|
+
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
617
|
+
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
618
|
+
margin-inline-end: var(--utrecht-button-margin-inline-end);
|
|
619
|
+
margin-inline-start: var(--utrecht-button-margin-inline-start);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.utrecht-button--submit, .utrecht-html button[type=submit i],
|
|
623
|
+
.utrecht-html input[type=submit i] {
|
|
624
|
+
/* lower priority specificty than busy and disabled cursor */
|
|
625
|
+
cursor: var(--utrecht-action-submit-cursor);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.utrecht-button--busy, .utrecht-html button[aria-busy=true],
|
|
629
|
+
.utrecht-html button[aria-disabled=true][aria-busy=true],
|
|
630
|
+
.utrecht-html button:disabled[aria-busy=true] {
|
|
631
|
+
cursor: var(--utrecht-action-busy-cursor);
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.utrecht-button:disabled, .utrecht-html input[type=button i]:disabled,
|
|
635
|
+
.utrecht-html input[type=reset i]:disabled,
|
|
636
|
+
.utrecht-html input[type=submit i]:disabled,
|
|
637
|
+
.utrecht-html button:disabled,
|
|
638
|
+
.utrecht-button--disabled,
|
|
639
|
+
.utrecht-html button[aria-disabled=true] {
|
|
640
|
+
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
641
|
+
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
642
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
646
|
+
.utrecht-html input[type=reset i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
647
|
+
.utrecht-html input[type=submit i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
648
|
+
.utrecht-button--active,
|
|
649
|
+
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
650
|
+
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
651
|
+
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.utrecht-button--focus-visible, .utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
655
|
+
.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
656
|
+
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
657
|
+
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html button:focus-visible {
|
|
658
|
+
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
659
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
660
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
661
|
+
outline-offset: 0;
|
|
662
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
663
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.utrecht-button--focus, .utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
667
|
+
.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
668
|
+
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
669
|
+
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html button:focus:not([aria-disabled=true]):not(:disabled) {
|
|
670
|
+
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
671
|
+
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
/* override the `:focus` selector above */
|
|
675
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
676
|
+
.utrecht-button:focus:not(:focus-visible), .utrecht-html input[type=button i]:focus:not(:focus-visible),
|
|
677
|
+
.utrecht-html input[type=reset i]:focus:not(:focus-visible),
|
|
678
|
+
.utrecht-html input[type=submit i]:focus:not(:focus-visible),
|
|
679
|
+
.utrecht-html button:focus:not(:focus-visible) {
|
|
680
|
+
/* undo focus ring */
|
|
681
|
+
box-shadow: none;
|
|
682
|
+
outline-style: none;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.utrecht-button--hover:not(:disabled), .utrecht-html button:not(:disabled):hover:not([aria-disabled=true]),
|
|
686
|
+
.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
687
|
+
.utrecht-html input[type=button i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
688
|
+
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
689
|
+
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
690
|
+
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
691
|
+
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
692
|
+
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/* override the `:focus` selector above */
|
|
696
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
697
|
+
/**
|
|
698
|
+
* @license EUPL-1.2
|
|
699
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
700
|
+
*/
|
|
701
|
+
/**
|
|
702
|
+
* @license EUPL-1.2
|
|
703
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
704
|
+
*/
|
|
705
|
+
/**
|
|
706
|
+
* @license EUPL-1.2
|
|
707
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
708
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
709
|
+
*/
|
|
710
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
711
|
+
.utrecht-checkbox, .utrecht-html input[type=checkbox i] {
|
|
712
|
+
margin-block-end: 0;
|
|
713
|
+
/* reset native margin for input[type="checkbox"] */
|
|
714
|
+
margin-block-start: 0;
|
|
715
|
+
margin-inline-end: 0;
|
|
716
|
+
margin-inline-start: 0;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
720
|
+
.utrecht-checkbox--disabled, .utrecht-checkbox--html-input:disabled, .utrecht-html input[type=checkbox i]:disabled {
|
|
721
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.utrecht-checkbox--focus-visible {
|
|
725
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
726
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
727
|
+
outline-offset: 0;
|
|
728
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
729
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.utrecht-checkbox--html-input:focus, .utrecht-html input[type=checkbox i]:focus {
|
|
733
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
734
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
735
|
+
outline-offset: 0;
|
|
736
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
737
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
738
|
+
}
|
|
739
|
+
.utrecht-checkbox--html-input:focus:not(:focus-visible), .utrecht-html input[type=checkbox i]:focus:not(:focus-visible) {
|
|
740
|
+
/* undo focus ring */
|
|
741
|
+
box-shadow: none;
|
|
742
|
+
outline-style: none;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
/**
|
|
746
|
+
* @license EUPL-1.2
|
|
747
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
748
|
+
*/
|
|
749
|
+
/**
|
|
750
|
+
* @license EUPL-1.2
|
|
751
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
752
|
+
*/
|
|
753
|
+
.utrecht-emphasis--stressed, .utrecht-html em {
|
|
754
|
+
font-style: var(--utrecht-emphasis-stressed-font-style, italic);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.utrecht-emphasis--strong, .utrecht-html strong {
|
|
758
|
+
font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* @license EUPL-1.2
|
|
763
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
764
|
+
*/
|
|
765
|
+
/**
|
|
766
|
+
* @license EUPL-1.2
|
|
767
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
768
|
+
*/
|
|
769
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
770
|
+
.utrecht-form-fieldset--reset-fieldset, .utrecht-html fieldset {
|
|
771
|
+
border: 0;
|
|
772
|
+
margin-inline-end: 0;
|
|
773
|
+
margin-inline-start: 0;
|
|
774
|
+
min-width: 0;
|
|
775
|
+
padding-block-end: 0;
|
|
776
|
+
padding-block-start: 0.01em;
|
|
777
|
+
padding-inline-end: 0;
|
|
778
|
+
padding-inline-start: 0;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.utrecht-form-fieldset__legend--reset-legend, .utrecht-html legend {
|
|
782
|
+
padding-inline-end: 0;
|
|
783
|
+
padding-inline-start: 0;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.utrecht-form-fieldset--distanced, .utrecht-html fieldset {
|
|
787
|
+
margin-block-end: var(--utrecht-form-fieldset-margin-block-end, 0);
|
|
788
|
+
margin-block-start: var(--utrecht-form-fieldset-margin-block-start, 0);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.utrecht-form-fieldset__legend, .utrecht-html legend {
|
|
792
|
+
color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
|
|
793
|
+
font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
|
|
794
|
+
font-size: var(--utrecht-form-fieldset-legend-font-size);
|
|
795
|
+
font-weight: var(--utrecht-form-fieldset-legend-font-weight);
|
|
796
|
+
line-height: var(--utrecht-form-fieldset-legend-line-height);
|
|
797
|
+
text-transform: var(--utrecht-form-fieldset-legend-text-transform);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.utrecht-form-fieldset__legend--distanced, .utrecht-html legend {
|
|
801
|
+
margin-block-end: var(--utrecht-form-fieldset-legend-margin-block-end);
|
|
802
|
+
margin-block-start: var(--utrecht-form-fieldset-legend-margin-block-start);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/**
|
|
806
|
+
* @license EUPL-1.2
|
|
807
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
808
|
+
*/
|
|
809
|
+
/**
|
|
810
|
+
* @license EUPL-1.2
|
|
811
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
812
|
+
*/
|
|
813
|
+
.utrecht-form-label, .utrecht-html label {
|
|
814
|
+
color: var(--utrecht-form-label-color);
|
|
815
|
+
font-size: var(--utrecht-form-label-font-size);
|
|
816
|
+
font-weight: var(--utrecht-form-label-font-weight);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.utrecht-form-label--checkbox, .utrecht-html input[type=checkbox i] ~ label {
|
|
820
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
821
|
+
font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.utrecht-form-label--checked {
|
|
825
|
+
font-weight: var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight));
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.utrecht-form-label--disabled {
|
|
829
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
830
|
+
font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.utrecht-form-label--radio, .utrecht-html input[type=radio i] ~ label {
|
|
834
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
835
|
+
font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* @license EUPL-1.2
|
|
840
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
841
|
+
*/
|
|
842
|
+
/**
|
|
843
|
+
* @license EUPL-1.2
|
|
844
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
845
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
846
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
847
|
+
*/
|
|
848
|
+
.utrecht-heading-1, .utrecht-html h1 {
|
|
849
|
+
color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
850
|
+
font-family: var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
851
|
+
font-size: var(--utrecht-heading-1-font-size);
|
|
852
|
+
font-weight: var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
853
|
+
letter-spacing: var(--utrecht-heading-1-letter-spacing);
|
|
854
|
+
line-height: var(--utrecht-heading-1-line-height);
|
|
855
|
+
margin-block-end: 0;
|
|
856
|
+
margin-block-start: 0;
|
|
857
|
+
text-transform: var(--utrecht-heading-1-text-transform, inherit);
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.utrecht-heading-1--distanced, .utrecht-html h1 {
|
|
861
|
+
margin-block-end: var(--utrecht-heading-1-margin-block-end);
|
|
862
|
+
margin-block-start: var(--utrecht-heading-1-margin-block-start);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* @license EUPL-1.2
|
|
867
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
868
|
+
*/
|
|
869
|
+
/**
|
|
870
|
+
* @license EUPL-1.2
|
|
871
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
872
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
873
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
874
|
+
*/
|
|
875
|
+
.utrecht-heading-2, .utrecht-html h2 {
|
|
876
|
+
color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
877
|
+
font-family: var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
878
|
+
font-size: var(--utrecht-heading-2-font-size);
|
|
879
|
+
font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
880
|
+
letter-spacing: var(--utrecht-heading-2-letter-spacing);
|
|
881
|
+
line-height: var(--utrecht-heading-2-line-height);
|
|
882
|
+
margin-block-end: 0;
|
|
883
|
+
margin-block-start: 0;
|
|
884
|
+
text-transform: var(--utrecht-heading-2-text-transform, inherit);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.utrecht-heading-2--distanced, .utrecht-html h2 {
|
|
888
|
+
margin-block-end: var(--utrecht-heading-2-margin-block-end);
|
|
889
|
+
margin-block-start: var(--utrecht-heading-2-margin-block-start);
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* @license EUPL-1.2
|
|
894
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
895
|
+
*/
|
|
896
|
+
/**
|
|
897
|
+
* @license EUPL-1.2
|
|
898
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
899
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
900
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
901
|
+
*/
|
|
902
|
+
.utrecht-heading-3, .utrecht-html h3 {
|
|
903
|
+
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
904
|
+
font-family: var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
905
|
+
font-size: var(--utrecht-heading-3-font-size);
|
|
906
|
+
font-weight: var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
907
|
+
letter-spacing: var(--utrecht-heading-3-letter-spacing);
|
|
908
|
+
line-height: var(--utrecht-heading-3-line-height);
|
|
909
|
+
margin-block-end: 0;
|
|
910
|
+
margin-block-start: 0;
|
|
911
|
+
text-transform: var(--utrecht-heading-3-text-transform, inherit);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.utrecht-heading-3--distanced, .utrecht-html h3 {
|
|
915
|
+
margin-block-end: var(--utrecht-heading-3-margin-block-end);
|
|
916
|
+
margin-block-start: var(--utrecht-heading-3-margin-block-start);
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/**
|
|
920
|
+
* @license EUPL-1.2
|
|
921
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
922
|
+
*/
|
|
923
|
+
/**
|
|
924
|
+
* @license EUPL-1.2
|
|
925
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
926
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
927
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
928
|
+
*/
|
|
929
|
+
.utrecht-heading-4, .utrecht-html h4 {
|
|
930
|
+
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
931
|
+
font-family: var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
932
|
+
font-size: var(--utrecht-heading-4-font-size);
|
|
933
|
+
font-weight: var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
934
|
+
letter-spacing: var(--utrecht-heading-4-letter-spacing);
|
|
935
|
+
line-height: var(--utrecht-heading-4-line-height);
|
|
936
|
+
margin-block-end: 0;
|
|
937
|
+
margin-block-start: 0;
|
|
938
|
+
text-transform: var(--utrecht-heading-4-text-transform, inherit);
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.utrecht-heading-4--distanced, .utrecht-html h4 {
|
|
942
|
+
margin-block-end: var(--utrecht-heading-4-margin-block-end);
|
|
943
|
+
margin-block-start: var(--utrecht-heading-4-margin-block-start);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
/**
|
|
947
|
+
* @license EUPL-1.2
|
|
948
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
949
|
+
*/
|
|
950
|
+
/**
|
|
951
|
+
* @license EUPL-1.2
|
|
952
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
953
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
954
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
955
|
+
*/
|
|
956
|
+
.utrecht-heading-5, .utrecht-html h5 {
|
|
957
|
+
color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
958
|
+
font-family: var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
959
|
+
font-size: var(--utrecht-heading-5-font-size);
|
|
960
|
+
font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
961
|
+
letter-spacing: var(--utrecht-heading-5-letter-spacing);
|
|
962
|
+
line-height: var(--utrecht-heading-5-line-height);
|
|
963
|
+
margin-block-end: 0;
|
|
964
|
+
margin-block-start: 0;
|
|
965
|
+
text-transform: var(--utrecht-heading-5-text-transform, inherit);
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.utrecht-heading-5--distanced, .utrecht-html h5 {
|
|
969
|
+
margin-block-end: var(--utrecht-heading-5-margin-block-end);
|
|
970
|
+
margin-block-start: var(--utrecht-heading-5-margin-block-start);
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
/**
|
|
974
|
+
* @license EUPL-1.2
|
|
975
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
976
|
+
*/
|
|
977
|
+
/**
|
|
978
|
+
* @license EUPL-1.2
|
|
979
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
980
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
981
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
982
|
+
*/
|
|
983
|
+
.utrecht-heading-6, .utrecht-html h6 {
|
|
984
|
+
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
985
|
+
font-family: var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
986
|
+
font-size: var(--utrecht-heading-6-font-size);
|
|
987
|
+
font-weight: var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
988
|
+
letter-spacing: var(--utrecht-heading-6-letter-spacing);
|
|
989
|
+
line-height: var(--utrecht-heading-6-line-height);
|
|
990
|
+
margin-block-end: 0;
|
|
991
|
+
margin-block-start: 0;
|
|
992
|
+
text-transform: var(--utrecht-heading-6-text-transform, inherit);
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.utrecht-heading-6--distanced, .utrecht-html h6 {
|
|
996
|
+
margin-block-end: var(--utrecht-heading-6-margin-block-end);
|
|
997
|
+
margin-block-start: var(--utrecht-heading-6-margin-block-start);
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* @license EUPL-1.2
|
|
1002
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1003
|
+
*/
|
|
1004
|
+
/**
|
|
1005
|
+
* @license EUPL-1.2
|
|
1006
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1007
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1008
|
+
*/
|
|
1009
|
+
/**
|
|
1010
|
+
* @license EUPL-1.2
|
|
1011
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1012
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1013
|
+
*/
|
|
1014
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1015
|
+
.utrecht-link, .utrecht-html a:link {
|
|
1016
|
+
color: var(--utrecht-link-color, blue);
|
|
1017
|
+
text-decoration: var(--utrecht-link-text-decoration, underline);
|
|
1018
|
+
text-decoration-skip-ink: all;
|
|
1019
|
+
text-underline-offset: var(--utrecht-link-text-underline-offset);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.utrecht-link:visited,
|
|
1023
|
+
.utrecht-link--visited,
|
|
1024
|
+
.utrecht-html a:visited {
|
|
1025
|
+
color: var(--utrecht-link-visited-color, var(--utrecht-link-color));
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.utrecht-link:hover,
|
|
1029
|
+
.utrecht-link--hover,
|
|
1030
|
+
.utrecht-html a:hover {
|
|
1031
|
+
color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
|
|
1032
|
+
text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.utrecht-link:active,
|
|
1036
|
+
.utrecht-link--active,
|
|
1037
|
+
.utrecht-html a:active {
|
|
1038
|
+
color: var(--utrecht-link-active-color, var(--utrecht-link-color));
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.utrecht-link--focus, .utrecht-html a:focus, .utrecht-link:focus {
|
|
1042
|
+
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
1043
|
+
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.utrecht-link--focus-visible, .utrecht-html a:focus, .utrecht-link:focus {
|
|
1047
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1048
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1049
|
+
outline-offset: 0;
|
|
1050
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1051
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.utrecht-link:focus:not(:focus-visible), .utrecht-html a:focus:not(:focus-visible):link {
|
|
1055
|
+
/* undo focus ring */
|
|
1056
|
+
box-shadow: none;
|
|
1057
|
+
outline-style: none;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1061
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1062
|
+
.utrecht-link--telephone, .utrecht-html a[href^="tel:" i] {
|
|
1063
|
+
white-space: nowrap;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.utrecht-html a:focus:not(:focus-visible) {
|
|
1067
|
+
/* undo focus ring */
|
|
1068
|
+
box-shadow: none;
|
|
1069
|
+
outline-style: none;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
/**
|
|
1073
|
+
* @license EUPL-1.2
|
|
1074
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1075
|
+
*/
|
|
1076
|
+
/**
|
|
1077
|
+
* @license EUPL-1.2
|
|
1078
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1079
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1080
|
+
*/
|
|
1081
|
+
.utrecht-ordered-list, .utrecht-html ol {
|
|
1082
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1083
|
+
margin-block-end: 0;
|
|
1084
|
+
margin-block-start: 0;
|
|
1085
|
+
padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.utrecht-ordered-list--distanced, .utrecht-html ol {
|
|
1089
|
+
margin-block-end: var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));
|
|
1090
|
+
margin-block-start: var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start));
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.utrecht-ordered-list--arabic, .utrecht-html ol:lang(ar) {
|
|
1094
|
+
list-style: arabic-indic;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.utrecht-ordered-list__item, .utrecht-html ol > li {
|
|
1098
|
+
margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
|
|
1099
|
+
margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
|
|
1100
|
+
padding-inline-start: var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch));
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* @license EUPL-1.2
|
|
1105
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1106
|
+
*/
|
|
1107
|
+
/**
|
|
1108
|
+
* @license EUPL-1.2
|
|
1109
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1110
|
+
*/
|
|
1111
|
+
.utrecht-paragraph, .utrecht-html p {
|
|
1112
|
+
color: var(--utrecht-document-color, inherit);
|
|
1113
|
+
font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
|
|
1114
|
+
font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
|
|
1115
|
+
font-weight: var(--utrecht-paragraph-font-weight, inherit);
|
|
1116
|
+
line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
|
|
1117
|
+
margin-block-end: 0;
|
|
1118
|
+
margin-block-start: 0;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.utrecht-paragraph--lead, .utrecht-html p.lead {
|
|
1122
|
+
color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
|
|
1123
|
+
font-size: var(--utrecht-paragraph-lead-font-size, inherit);
|
|
1124
|
+
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
1125
|
+
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.utrecht-paragraph--distanced, .utrecht-html * ~ p {
|
|
1129
|
+
margin-block-end: var(--utrecht-paragraph-margin-block-end);
|
|
1130
|
+
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
/* stylelint-disable selector-class-pattern */
|
|
1134
|
+
/**
|
|
1135
|
+
* @license EUPL-1.2
|
|
1136
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1137
|
+
*/
|
|
1138
|
+
/**
|
|
1139
|
+
* @license EUPL-1.2
|
|
1140
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1141
|
+
*/
|
|
1142
|
+
/**
|
|
1143
|
+
* @license EUPL-1.2
|
|
1144
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1145
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1146
|
+
*/
|
|
1147
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1148
|
+
.utrecht-radio-button, .utrecht-html input[type=radio i] {
|
|
1149
|
+
margin-block-end: 0;
|
|
1150
|
+
/* reset native margin for input[type="radio" i] */
|
|
1151
|
+
margin-block-start: 0;
|
|
1152
|
+
margin-inline-end: 0;
|
|
1153
|
+
margin-inline-start: 0;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1157
|
+
.utrecht-radio-button--disabled, .utrecht-radio-button--html-input:disabled, .utrecht-html input[type=radio i]:disabled {
|
|
1158
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.utrecht-radio-button--focus-visible, .utrecht-radio-button--html-input:focus, .utrecht-html input[type=radio i]:focus {
|
|
1162
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1163
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1164
|
+
outline-offset: 0;
|
|
1165
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1166
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.utrecht-radio-button--html-input:focus:not(:focus-visible), .utrecht-html input[type=radio i]:focus:not(:focus-visible) {
|
|
1170
|
+
/* undo focus ring */
|
|
1171
|
+
box-shadow: none;
|
|
1172
|
+
outline-style: none;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
/**
|
|
1176
|
+
* @license EUPL-1.2
|
|
1177
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1178
|
+
*/
|
|
1179
|
+
/**
|
|
1180
|
+
* @license EUPL-1.2
|
|
1181
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1182
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1183
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1184
|
+
*/
|
|
1185
|
+
.utrecht-separator, .utrecht-html hr {
|
|
1186
|
+
border-color: var(--utrecht-separator-color);
|
|
1187
|
+
border-style: solid;
|
|
1188
|
+
border-width: 0 0 var(--utrecht-separator-block-size) 0;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.utrecht-separator--distanced, .utrecht-html hr {
|
|
1192
|
+
margin-block-end: var(--utrecht-separator-margin-block-end);
|
|
1193
|
+
margin-block-start: var(--utrecht-separator-margin-block-start);
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
/**
|
|
1197
|
+
* @license EUPL-1.2
|
|
1198
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1199
|
+
*/
|
|
1200
|
+
/**
|
|
1201
|
+
* @license EUPL-1.2
|
|
1202
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1203
|
+
*/
|
|
1204
|
+
.utrecht-table, .utrecht-html table {
|
|
1205
|
+
border-collapse: collapse;
|
|
1206
|
+
border-color: var(--utrecht-table-border-color, 0);
|
|
1207
|
+
border-style: solid;
|
|
1208
|
+
border-width: var(--utrecht-table-border-width, 0);
|
|
1209
|
+
font-family: var(--utrecht-table-font-family, var(--utrecht-document-font-family));
|
|
1210
|
+
font-size: var(--utrecht-table-font-size, inherit);
|
|
1211
|
+
width: 100%;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.utrecht-table--distanced, .utrecht-html table {
|
|
1215
|
+
margin-block-end: var(--utrecht-table-margin-block-end);
|
|
1216
|
+
margin-block-start: var(--utrecht-table-margin-block-start);
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.utrecht-table__caption, .utrecht-html caption {
|
|
1220
|
+
color: var(--utrecht-table-caption-color);
|
|
1221
|
+
font-family: var(--utrecht-table-caption-font-family);
|
|
1222
|
+
font-size: var(--utrecht-table-caption-font-size);
|
|
1223
|
+
font-weight: var(--utrecht-table-caption-font-weight);
|
|
1224
|
+
line-height: var(--utrecht-table-caption-line-height);
|
|
1225
|
+
margin-block-end: var(--utrecht-table-caption-margin-block-end);
|
|
1226
|
+
text-align: var(--utrecht-table-caption-text-align, center);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.utrecht-table__header, .utrecht-html thead {
|
|
1230
|
+
background-color: var(--utrecht-table-header-background-color);
|
|
1231
|
+
color: var(--utrecht-table-header-color);
|
|
1232
|
+
font-weight: var(--utrecht-table-header-font-weight);
|
|
1233
|
+
text-transform: var(--utrecht-table-header-text-transform);
|
|
1234
|
+
vertical-align: bottom;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.utrecht-table__cell--last-header-row, .utrecht-html thead tr:last-child th {
|
|
1238
|
+
border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
|
|
1239
|
+
border-block-end-style: solid;
|
|
1240
|
+
border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
.utrecht-table__body, .utrecht-html tbody {
|
|
1244
|
+
vertical-align: baseline;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.utrecht-table__heading, .utrecht-html th {
|
|
1248
|
+
color: var(--utrecht-table-heading-color);
|
|
1249
|
+
font-size: var(--utrecht-table-heading-font-size);
|
|
1250
|
+
font-weight: var(--utrecht-table-heading-font-weight);
|
|
1251
|
+
text-transform: var(--utrecht-table-heading-text-transform);
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.utrecht-table__cell, .utrecht-html th,
|
|
1255
|
+
.utrecht-html td {
|
|
1256
|
+
border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
|
|
1257
|
+
border-block-end-style: solid;
|
|
1258
|
+
border-block-end-width: var(--utrecht-table-row-border-block-end-width, 0);
|
|
1259
|
+
line-height: var(--utrecht-table-cell-line-height, inherit);
|
|
1260
|
+
padding-block-end: var(--utrecht-table-cell-padding-block-end, 0);
|
|
1261
|
+
padding-block-start: var(--utrecht-table-cell-padding-block-start, 0);
|
|
1262
|
+
padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
|
|
1263
|
+
padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
|
|
1264
|
+
text-align: start;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.utrecht-table__cell--first, .utrecht-html td:first-child,
|
|
1268
|
+
.utrecht-html th:first-child {
|
|
1269
|
+
padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.utrecht-table__cell--last, .utrecht-html td:last-child,
|
|
1273
|
+
.utrecht-html th:last-child {
|
|
1274
|
+
padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
.utrecht-table__cell--numeric-column, .utrecht-html td.numeric, .utrecht-html thead > tr > th.numeric,
|
|
1278
|
+
.utrecht-html tfoot > tr > th.numeric,
|
|
1279
|
+
.utrecht-html th[scope=column].numeric {
|
|
1280
|
+
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
|
|
1281
|
+
text-align: right;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
.utrecht-table__cell--numeric-data, .utrecht-html td.numeric {
|
|
1285
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
.utrecht-table__row--alternate-odd, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(odd) > td, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(odd) > th, .utrecht-html table.alternate-row-color > tr:nth-child(odd) > td, .utrecht-html table.alternate-row-color > tr:nth-child(odd) > th {
|
|
1289
|
+
background-color: var(--utrecht-table-row-alternate-odd-background-color);
|
|
1290
|
+
color: var(--utrecht-table-row-alternate-odd-color);
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.utrecht-table__row--alternate-even, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(even) > td, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(even) > th, .utrecht-html table.alternate-row-color > tr:nth-child(even) > td, .utrecht-html table.alternate-row-color > tr:nth-child(even) > th {
|
|
1294
|
+
background-color: var(--utrecht-table-row-alternate-even-background-color);
|
|
1295
|
+
color: var(--utrecht-table-row-alternate-even-color);
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
/* stylelint-disable selector-class-pattern */
|
|
1299
|
+
/**
|
|
1300
|
+
* @license EUPL-1.2
|
|
1301
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1302
|
+
*/
|
|
1303
|
+
/**
|
|
1304
|
+
* @license EUPL-1.2
|
|
1305
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1306
|
+
*/
|
|
1307
|
+
/**
|
|
1308
|
+
* @license EUPL-1.2
|
|
1309
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1310
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1311
|
+
*/
|
|
1312
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1313
|
+
.utrecht-textarea, .utrecht-html textarea {
|
|
1314
|
+
background-color: var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));
|
|
1315
|
+
border-width: var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));
|
|
1316
|
+
border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));
|
|
1317
|
+
border-color: var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));
|
|
1318
|
+
border-radius: var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
1319
|
+
border-style: solid;
|
|
1320
|
+
box-sizing: border-box;
|
|
1321
|
+
color: var(--utrecht-textarea-color, var(--utrecht-form-input-color));
|
|
1322
|
+
font-family: var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));
|
|
1323
|
+
font-size: var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
1324
|
+
max-inline-size: var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
1325
|
+
min-block-size: var(--utrecht-textarea-min-block-size);
|
|
1326
|
+
padding-block-end: var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
1327
|
+
padding-block-start: var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
1328
|
+
padding-inline-end: var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
1329
|
+
padding-inline-start: var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
1330
|
+
resize: vertical;
|
|
1331
|
+
width: 100%;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.utrecht-textarea--invalid, .utrecht-textarea--html-textarea:invalid, .utrecht-html textarea:invalid, .utrecht-textarea--html-textarea[aria-invalid=true], .utrecht-html textarea[aria-invalid=true] {
|
|
1335
|
+
background-color: var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
1336
|
+
border-color: var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
1337
|
+
border-width: var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width))));
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.utrecht-textarea--disabled, .utrecht-textarea--html-textarea:disabled, .utrecht-html textarea:disabled {
|
|
1341
|
+
background-color: var(--utrecht-textarea-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
1342
|
+
border-color: var(--utrecht-textarea-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
1343
|
+
color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1344
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.utrecht-textarea--focus, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
|
|
1348
|
+
background-color: var(--utrecht-textarea-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
1349
|
+
border-color: var(--utrecht-textarea-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
1350
|
+
color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.utrecht-textarea--focus-visible, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
|
|
1354
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1355
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1356
|
+
outline-offset: 0;
|
|
1357
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1358
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.utrecht-textarea--read-only, .utrecht-textarea--html-textarea:read-only, .utrecht-html textarea:read-only {
|
|
1362
|
+
border-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-input-border-color))));
|
|
1363
|
+
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.utrecht-textarea__placeholder, .utrecht-textarea--html-textarea::placeholder, .utrecht-html textarea::placeholder {
|
|
1367
|
+
color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1368
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
1369
|
+
opacity: 100%;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.utrecht-textarea--html-textarea:focus:not(:focus-visible), .utrecht-html textarea:focus:not(:focus-visible) {
|
|
1373
|
+
/* undo focus ring */
|
|
1374
|
+
box-shadow: none;
|
|
1375
|
+
outline-style: none;
|
|
1376
|
+
}
|
|
1377
|
+
/**
|
|
1378
|
+
* @license EUPL-1.2
|
|
1379
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1380
|
+
*/
|
|
1381
|
+
/**
|
|
1382
|
+
* @license EUPL-1.2
|
|
1383
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1384
|
+
*/
|
|
1385
|
+
/**
|
|
1386
|
+
* @license EUPL-1.2
|
|
1387
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1388
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1389
|
+
*/
|
|
1390
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1391
|
+
.utrecht-textbox, .utrecht-html input:not([type]),
|
|
1392
|
+
.utrecht-html input[type=date i],
|
|
1393
|
+
.utrecht-html input[type=datetime-local i],
|
|
1394
|
+
.utrecht-html input[type=email i],
|
|
1395
|
+
.utrecht-html input[type=month i],
|
|
1396
|
+
.utrecht-html input[type=number i],
|
|
1397
|
+
.utrecht-html input[type=password i],
|
|
1398
|
+
.utrecht-html input[type=search i],
|
|
1399
|
+
.utrecht-html input[type=tel i],
|
|
1400
|
+
.utrecht-html input[type=text i],
|
|
1401
|
+
.utrecht-html input[type=time i],
|
|
1402
|
+
.utrecht-html input[type=url i],
|
|
1403
|
+
.utrecht-html input[type=week i] {
|
|
1404
|
+
background-color: var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));
|
|
1405
|
+
border-width: var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));
|
|
1406
|
+
border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));
|
|
1407
|
+
border-color: var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));
|
|
1408
|
+
border-radius: var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
1409
|
+
border-style: solid;
|
|
1410
|
+
box-sizing: border-box;
|
|
1411
|
+
color: var(--utrecht-textbox-color, var(--utrecht-form-input-color));
|
|
1412
|
+
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));
|
|
1413
|
+
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
1414
|
+
max-inline-size: var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
1415
|
+
padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
1416
|
+
padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
1417
|
+
padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
1418
|
+
padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
1419
|
+
width: 100%;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.utrecht-textbox--invalid, .utrecht-textbox--html-input:invalid, .utrecht-html input:invalid:not([type]),
|
|
1423
|
+
.utrecht-html input[type=date i]:invalid,
|
|
1424
|
+
.utrecht-html input[type=datetime-local i]:invalid,
|
|
1425
|
+
.utrecht-html input[type=email i]:invalid,
|
|
1426
|
+
.utrecht-html input[type=month i]:invalid,
|
|
1427
|
+
.utrecht-html input[type=number i]:invalid,
|
|
1428
|
+
.utrecht-html input[type=password i]:invalid,
|
|
1429
|
+
.utrecht-html input[type=search i]:invalid,
|
|
1430
|
+
.utrecht-html input[type=tel i]:invalid,
|
|
1431
|
+
.utrecht-html input[type=text i]:invalid,
|
|
1432
|
+
.utrecht-html input[type=time i]:invalid,
|
|
1433
|
+
.utrecht-html input[type=url i]:invalid,
|
|
1434
|
+
.utrecht-html input[type=week i]:invalid, .utrecht-textbox--html-input[aria-invalid=true], .utrecht-html input[aria-invalid=true]:not([type]),
|
|
1435
|
+
.utrecht-html input[aria-invalid=true][type=date i],
|
|
1436
|
+
.utrecht-html input[aria-invalid=true][type=datetime-local i],
|
|
1437
|
+
.utrecht-html input[aria-invalid=true][type=email i],
|
|
1438
|
+
.utrecht-html input[aria-invalid=true][type=month i],
|
|
1439
|
+
.utrecht-html input[aria-invalid=true][type=number i],
|
|
1440
|
+
.utrecht-html input[aria-invalid=true][type=password i],
|
|
1441
|
+
.utrecht-html input[aria-invalid=true][type=search i],
|
|
1442
|
+
.utrecht-html input[aria-invalid=true][type=tel i],
|
|
1443
|
+
.utrecht-html input[aria-invalid=true][type=text i],
|
|
1444
|
+
.utrecht-html input[aria-invalid=true][type=time i],
|
|
1445
|
+
.utrecht-html input[aria-invalid=true][type=url i],
|
|
1446
|
+
.utrecht-html input[aria-invalid=true][type=week i] {
|
|
1447
|
+
background-color: var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));
|
|
1448
|
+
border-color: var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));
|
|
1449
|
+
border-width: var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))));
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.utrecht-textbox--disabled, .utrecht-textbox--html-input:disabled, .utrecht-html input:disabled:not([type]),
|
|
1453
|
+
.utrecht-html input[type=date i]:disabled,
|
|
1454
|
+
.utrecht-html input[type=datetime-local i]:disabled,
|
|
1455
|
+
.utrecht-html input[type=email i]:disabled,
|
|
1456
|
+
.utrecht-html input[type=month i]:disabled,
|
|
1457
|
+
.utrecht-html input[type=number i]:disabled,
|
|
1458
|
+
.utrecht-html input[type=password i]:disabled,
|
|
1459
|
+
.utrecht-html input[type=search i]:disabled,
|
|
1460
|
+
.utrecht-html input[type=tel i]:disabled,
|
|
1461
|
+
.utrecht-html input[type=text i]:disabled,
|
|
1462
|
+
.utrecht-html input[type=time i]:disabled,
|
|
1463
|
+
.utrecht-html input[type=url i]:disabled,
|
|
1464
|
+
.utrecht-html input[type=week i]:disabled {
|
|
1465
|
+
background-color: var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
1466
|
+
border-color: var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
1467
|
+
color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1468
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.utrecht-textbox--focus, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
|
|
1472
|
+
.utrecht-html input[type=date i]:focus,
|
|
1473
|
+
.utrecht-html input[type=datetime-local i]:focus,
|
|
1474
|
+
.utrecht-html input[type=email i]:focus,
|
|
1475
|
+
.utrecht-html input[type=month i]:focus,
|
|
1476
|
+
.utrecht-html input[type=number i]:focus,
|
|
1477
|
+
.utrecht-html input[type=password i]:focus,
|
|
1478
|
+
.utrecht-html input[type=search i]:focus,
|
|
1479
|
+
.utrecht-html input[type=tel i]:focus,
|
|
1480
|
+
.utrecht-html input[type=text i]:focus,
|
|
1481
|
+
.utrecht-html input[type=time i]:focus,
|
|
1482
|
+
.utrecht-html input[type=url i]:focus,
|
|
1483
|
+
.utrecht-html input[type=week i]:focus {
|
|
1484
|
+
background-color: var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
1485
|
+
border-color: var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
1486
|
+
color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.utrecht-textbox--focus-visible, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
|
|
1490
|
+
.utrecht-html input[type=date i]:focus,
|
|
1491
|
+
.utrecht-html input[type=datetime-local i]:focus,
|
|
1492
|
+
.utrecht-html input[type=email i]:focus,
|
|
1493
|
+
.utrecht-html input[type=month i]:focus,
|
|
1494
|
+
.utrecht-html input[type=number i]:focus,
|
|
1495
|
+
.utrecht-html input[type=password i]:focus,
|
|
1496
|
+
.utrecht-html input[type=search i]:focus,
|
|
1497
|
+
.utrecht-html input[type=tel i]:focus,
|
|
1498
|
+
.utrecht-html input[type=text i]:focus,
|
|
1499
|
+
.utrecht-html input[type=time i]:focus,
|
|
1500
|
+
.utrecht-html input[type=url i]:focus,
|
|
1501
|
+
.utrecht-html input[type=week i]:focus {
|
|
1502
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1503
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1504
|
+
outline-offset: 0;
|
|
1505
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1506
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.utrecht-textbox--read-only, .utrecht-textbox--html-input:read-only, .utrecht-html input:read-only:not([type]),
|
|
1510
|
+
.utrecht-html input[type=date i]:read-only,
|
|
1511
|
+
.utrecht-html input[type=datetime-local i]:read-only,
|
|
1512
|
+
.utrecht-html input[type=email i]:read-only,
|
|
1513
|
+
.utrecht-html input[type=month i]:read-only,
|
|
1514
|
+
.utrecht-html input[type=number i]:read-only,
|
|
1515
|
+
.utrecht-html input[type=password i]:read-only,
|
|
1516
|
+
.utrecht-html input[type=search i]:read-only,
|
|
1517
|
+
.utrecht-html input[type=tel i]:read-only,
|
|
1518
|
+
.utrecht-html input[type=text i]:read-only,
|
|
1519
|
+
.utrecht-html input[type=time i]:read-only,
|
|
1520
|
+
.utrecht-html input[type=url i]:read-only,
|
|
1521
|
+
.utrecht-html input[type=week i]:read-only {
|
|
1522
|
+
border-color: var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));
|
|
1523
|
+
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
.utrecht-textbox__placeholder, .utrecht-textbox--html-input::placeholder, .utrecht-html input:not([type])::placeholder,
|
|
1527
|
+
.utrecht-html input[type=date i]::placeholder,
|
|
1528
|
+
.utrecht-html input[type=datetime-local i]::placeholder,
|
|
1529
|
+
.utrecht-html input[type=email i]::placeholder,
|
|
1530
|
+
.utrecht-html input[type=month i]::placeholder,
|
|
1531
|
+
.utrecht-html input[type=number i]::placeholder,
|
|
1532
|
+
.utrecht-html input[type=password i]::placeholder,
|
|
1533
|
+
.utrecht-html input[type=search i]::placeholder,
|
|
1534
|
+
.utrecht-html input[type=tel i]::placeholder,
|
|
1535
|
+
.utrecht-html input[type=text i]::placeholder,
|
|
1536
|
+
.utrecht-html input[type=time i]::placeholder,
|
|
1537
|
+
.utrecht-html input[type=url i]::placeholder,
|
|
1538
|
+
.utrecht-html input[type=week i]::placeholder {
|
|
1539
|
+
color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
1540
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
1541
|
+
opacity: 100%;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.utrecht-textbox--numeric, .utrecht-html input[autocomplete~=bday i],
|
|
1545
|
+
.utrecht-html input[autocomplete~=bday-day i],
|
|
1546
|
+
.utrecht-html input[autocomplete~=bday-month i],
|
|
1547
|
+
.utrecht-html input[autocomplete~=bday-year i],
|
|
1548
|
+
.utrecht-html input[autocomplete~=cc-csc i],
|
|
1549
|
+
.utrecht-html input[autocomplete~=cc-exp i],
|
|
1550
|
+
.utrecht-html input[autocomplete~=cc-exp-month i],
|
|
1551
|
+
.utrecht-html input[autocomplete~=cc-exp-year i],
|
|
1552
|
+
.utrecht-html input[autocomplete~=cc-number i],
|
|
1553
|
+
.utrecht-html input[autocomplete~=one-time-code i],
|
|
1554
|
+
.utrecht-html input[autocomplete~=postal-code i],
|
|
1555
|
+
.utrecht-html input[autocomplete~=tel i],
|
|
1556
|
+
.utrecht-html input[autocomplete~=tel-area-code i],
|
|
1557
|
+
.utrecht-html input[autocomplete~=tel-country-code i],
|
|
1558
|
+
.utrecht-html input[autocomplete~=tel-extension i],
|
|
1559
|
+
.utrecht-html input[autocomplete~=tel-local i],
|
|
1560
|
+
.utrecht-html input[autocomplete~=tel-national i],
|
|
1561
|
+
.utrecht-html input[autocomplete~=transaction-amount i],
|
|
1562
|
+
.utrecht-html input[inputmode=decimal i],
|
|
1563
|
+
.utrecht-html input[inputmode=numeric i],
|
|
1564
|
+
.utrecht-html input[type=number i] {
|
|
1565
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.utrecht-textbox--password, .utrecht-html input[autocomplete~=current-password i],
|
|
1569
|
+
.utrecht-html input[autocomplete~=new-password i] {
|
|
1570
|
+
font-variant-ligatures: none;
|
|
1571
|
+
font-variant-numeric: slashed-zero;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.utrecht-textbox--url, .utrecht-html input[type=url i] {
|
|
1575
|
+
font-variant-ligatures: none;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.utrecht-textbox--html-input:focus:not(:focus-visible), .utrecht-html input:focus:not(:focus-visible):not([type]),
|
|
1579
|
+
.utrecht-html input[type=date i]:focus:not(:focus-visible),
|
|
1580
|
+
.utrecht-html input[type=datetime-local i]:focus:not(:focus-visible),
|
|
1581
|
+
.utrecht-html input[type=email i]:focus:not(:focus-visible),
|
|
1582
|
+
.utrecht-html input[type=month i]:focus:not(:focus-visible),
|
|
1583
|
+
.utrecht-html input[type=number i]:focus:not(:focus-visible),
|
|
1584
|
+
.utrecht-html input[type=password i]:focus:not(:focus-visible),
|
|
1585
|
+
.utrecht-html input[type=search i]:focus:not(:focus-visible),
|
|
1586
|
+
.utrecht-html input[type=tel i]:focus:not(:focus-visible),
|
|
1587
|
+
.utrecht-html input[type=text i]:focus:not(:focus-visible),
|
|
1588
|
+
.utrecht-html input[type=time i]:focus:not(:focus-visible),
|
|
1589
|
+
.utrecht-html input[type=url i]:focus:not(:focus-visible),
|
|
1590
|
+
.utrecht-html input[type=week i]:focus:not(:focus-visible) {
|
|
1591
|
+
/* undo focus ring */
|
|
1592
|
+
box-shadow: none;
|
|
1593
|
+
outline-style: none;
|
|
1594
|
+
}
|
|
1595
|
+
/**
|
|
1596
|
+
* @license EUPL-1.2
|
|
1597
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1598
|
+
*/
|
|
1599
|
+
/**
|
|
1600
|
+
* @license EUPL-1.2
|
|
1601
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1602
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1603
|
+
*/
|
|
1604
|
+
.utrecht-unordered-list, .utrecht-html ul {
|
|
1605
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1606
|
+
font-size: var(--utrecht-document-font-size, inherit);
|
|
1607
|
+
line-height: var(--utrecht-document-line-height, inherit);
|
|
1608
|
+
margin-block-end: 0;
|
|
1609
|
+
margin-block-start: 0;
|
|
1610
|
+
padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.utrecht-unordered-list--distanced, .utrecht-html ul {
|
|
1614
|
+
margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1615
|
+
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.utrecht-unordered-list--nested {
|
|
1619
|
+
margin-block-end: 0;
|
|
1620
|
+
margin-inline-start: 2ch;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.utrecht-unordered-list__item, .utrecht-html ul > li {
|
|
1624
|
+
margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
|
|
1625
|
+
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
1626
|
+
padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.utrecht-unordered-list__item::marker, .utrecht-html ul > li::marker,
|
|
1630
|
+
.utrecht-unordered-list__marker {
|
|
1631
|
+
color: var(--utrecht-unordered-list-marker-color);
|
|
1632
|
+
content: "●";
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* @license EUPL-1.2
|
|
1637
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1638
|
+
*/
|
|
1639
|
+
/**
|
|
1640
|
+
* @license EUPL-1.2
|
|
1641
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1642
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1643
|
+
*/
|
|
1644
|
+
/**
|
|
1645
|
+
* @license EUPL-1.2
|
|
1646
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1647
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1648
|
+
*/
|
|
1649
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1650
|
+
.utrecht-link, .utrecht-html a:link {
|
|
1651
|
+
color: var(--utrecht-link-color, blue);
|
|
1652
|
+
text-decoration: var(--utrecht-link-text-decoration, underline);
|
|
1653
|
+
text-decoration-skip-ink: all;
|
|
1654
|
+
text-underline-offset: var(--utrecht-link-text-underline-offset);
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.utrecht-link:visited,
|
|
1658
|
+
.utrecht-link--visited,
|
|
1659
|
+
.utrecht-html a:visited {
|
|
1660
|
+
color: var(--utrecht-link-visited-color, var(--utrecht-link-color));
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
.utrecht-link:hover,
|
|
1664
|
+
.utrecht-link--hover,
|
|
1665
|
+
.utrecht-html a:hover {
|
|
1666
|
+
color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
|
|
1667
|
+
text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
.utrecht-link:active,
|
|
1671
|
+
.utrecht-link--active,
|
|
1672
|
+
.utrecht-html a:active {
|
|
1673
|
+
color: var(--utrecht-link-active-color, var(--utrecht-link-color));
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.utrecht-link--focus, .utrecht-link:focus, .utrecht-html a:focus {
|
|
1677
|
+
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
1678
|
+
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.utrecht-link--focus-visible, .utrecht-link:focus, .utrecht-html a:focus {
|
|
1682
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1683
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1684
|
+
outline-offset: 0;
|
|
1685
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1686
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.utrecht-link:focus:not(:focus-visible), .utrecht-html a:focus:not(:focus-visible):link {
|
|
1690
|
+
/* undo focus ring */
|
|
1691
|
+
box-shadow: none;
|
|
1692
|
+
outline-style: none;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1696
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1697
|
+
.utrecht-link--telephone, .utrecht-html a[href^="tel:" i] {
|
|
1698
|
+
white-space: nowrap;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.utrecht-html a:focus:not(:focus-visible) {
|
|
1702
|
+
/* undo focus ring */
|
|
1703
|
+
box-shadow: none;
|
|
1704
|
+
outline-style: none;
|
|
1705
|
+
}
|
|
308
1706
|
|
|
309
1707
|
/**
|
|
310
1708
|
* @license EUPL-1.2
|
|
@@ -313,58 +1711,28 @@
|
|
|
313
1711
|
/**
|
|
314
1712
|
* @license EUPL-1.2
|
|
315
1713
|
* Copyright (c) 2021 Robbert Broersma
|
|
1714
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
316
1715
|
*/
|
|
317
|
-
.utrecht-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
border-width: var(--utrecht-textbox-border-width);
|
|
323
|
-
border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width));
|
|
324
|
-
border-color: var(--utrecht-textbox-border-color);
|
|
325
|
-
border-radius: var(--utrecht-textbox-border-radius, 0);
|
|
326
|
-
border-style: solid;
|
|
327
|
-
color: var(--utrecht-textbox-color);
|
|
328
|
-
font-family: var(--utrecht-textbox-font-family);
|
|
329
|
-
font-size: var(--utrecht-textbox-font-size, 1em);
|
|
330
|
-
max-width: var(--utrecht-textbox-max-width);
|
|
331
|
-
padding-block-end: var(--utrecht-textbox-padding-block-end);
|
|
332
|
-
padding-block-start: var(--utrecht-textbox-padding-block-start);
|
|
333
|
-
padding-inline-end: var(--utrecht-textbox-padding-inline-end);
|
|
334
|
-
padding-inline-start: var(--utrecht-textbox-padding-inline-start);
|
|
335
|
-
box-sizing: border-box;
|
|
336
|
-
width: 100%;
|
|
1716
|
+
.utrecht-ordered-list, .utrecht-html ol {
|
|
1717
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1718
|
+
margin-block-end: 0;
|
|
1719
|
+
margin-block-start: 0;
|
|
1720
|
+
padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
|
|
337
1721
|
}
|
|
338
1722
|
|
|
339
|
-
.utrecht-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
.utrecht-html input[type=search]:invalid,
|
|
343
|
-
.utrecht-html input[type=search][aria-invalid=true],
|
|
344
|
-
.utrecht-html input[type=tel]:invalid,
|
|
345
|
-
.utrecht-html input[type=tel][aria-invalid=true],
|
|
346
|
-
.utrecht-html input[type=url]:invalid,
|
|
347
|
-
.utrecht-html input[type=url][aria-invalid=true] {
|
|
348
|
-
border-color: var(--utrecht-textbox-invalid-border-color);
|
|
349
|
-
border-width: var(--utrecht-textbox-invalid-border-width);
|
|
1723
|
+
.utrecht-ordered-list--distanced, .utrecht-html ol {
|
|
1724
|
+
margin-block-end: var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));
|
|
1725
|
+
margin-block-start: var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start));
|
|
350
1726
|
}
|
|
351
1727
|
|
|
352
|
-
.utrecht-
|
|
353
|
-
|
|
354
|
-
.utrecht-html input[type=search]:disabled,
|
|
355
|
-
.utrecht-html input[type=tel]:disabled,
|
|
356
|
-
.utrecht-html input[type=url]:disabled {
|
|
357
|
-
border-color: var(--utrecht-textbox-disabled-border-color);
|
|
358
|
-
color: var(--utrecht-textbox-disabled-color);
|
|
1728
|
+
.utrecht-ordered-list--arabic, .utrecht-html ol:lang(ar) {
|
|
1729
|
+
list-style: arabic-indic;
|
|
359
1730
|
}
|
|
360
1731
|
|
|
361
|
-
.utrecht-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
.utrecht-html input[type=url]:read-only {
|
|
366
|
-
border-color: var(--utrecht-textbox-read-only-border-color);
|
|
367
|
-
color: var(--utrecht-textbox-read-only-color);
|
|
1732
|
+
.utrecht-ordered-list__item, .utrecht-html ol > li {
|
|
1733
|
+
margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
|
|
1734
|
+
margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
|
|
1735
|
+
padding-inline-start: var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch));
|
|
368
1736
|
}
|
|
369
1737
|
|
|
370
1738
|
/**
|
|
@@ -373,14 +1741,70 @@
|
|
|
373
1741
|
*/
|
|
374
1742
|
/**
|
|
375
1743
|
* @license EUPL-1.2
|
|
376
|
-
* Copyright (c) 2021
|
|
1744
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
377
1745
|
*/
|
|
378
|
-
.utrecht-
|
|
379
|
-
|
|
1746
|
+
.utrecht-paragraph, .utrecht-html p {
|
|
1747
|
+
color: var(--utrecht-document-color, inherit);
|
|
1748
|
+
font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
|
|
1749
|
+
font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
|
|
1750
|
+
font-weight: var(--utrecht-paragraph-font-weight, inherit);
|
|
1751
|
+
line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
|
|
1752
|
+
margin-block-end: 0;
|
|
380
1753
|
margin-block-start: 0;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.utrecht-paragraph--lead, .utrecht-html p.lead {
|
|
1757
|
+
color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
|
|
1758
|
+
font-size: var(--utrecht-paragraph-lead-font-size, inherit);
|
|
1759
|
+
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
1760
|
+
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.utrecht-paragraph--distanced, .utrecht-html * ~ p {
|
|
1764
|
+
margin-block-end: var(--utrecht-paragraph-margin-block-end);
|
|
1765
|
+
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
/* stylelint-disable selector-class-pattern */
|
|
1769
|
+
/**
|
|
1770
|
+
* @license EUPL-1.2
|
|
1771
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1772
|
+
*/
|
|
1773
|
+
/**
|
|
1774
|
+
* @license EUPL-1.2
|
|
1775
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1776
|
+
*/
|
|
1777
|
+
/**
|
|
1778
|
+
* @license EUPL-1.2
|
|
1779
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1780
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1781
|
+
*/
|
|
1782
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1783
|
+
.utrecht-radio-button, .utrecht-html input[type=radio i] {
|
|
381
1784
|
margin-block-end: 0;
|
|
382
|
-
margin
|
|
1785
|
+
/* reset native margin for input[type="radio" i] */
|
|
1786
|
+
margin-block-start: 0;
|
|
383
1787
|
margin-inline-end: 0;
|
|
1788
|
+
margin-inline-start: 0;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1792
|
+
.utrecht-radio-button--disabled, .utrecht-radio-button--html-input:disabled, .utrecht-html input[type=radio i]:disabled {
|
|
1793
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.utrecht-radio-button--focus-visible, .utrecht-radio-button--html-input:focus, .utrecht-html input[type=radio i]:focus {
|
|
1797
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1798
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1799
|
+
outline-offset: 0;
|
|
1800
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1801
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.utrecht-radio-button--html-input:focus:not(:focus-visible), .utrecht-html input[type=radio i]:focus:not(:focus-visible) {
|
|
1805
|
+
/* undo focus ring */
|
|
1806
|
+
box-shadow: none;
|
|
1807
|
+
outline-style: none;
|
|
384
1808
|
}
|
|
385
1809
|
|
|
386
1810
|
/**
|
|
@@ -389,52 +1813,77 @@
|
|
|
389
1813
|
*/
|
|
390
1814
|
/**
|
|
391
1815
|
* @license EUPL-1.2
|
|
392
|
-
* Copyright (c) 2021
|
|
1816
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1817
|
+
*/
|
|
1818
|
+
/**
|
|
1819
|
+
* @license EUPL-1.2
|
|
393
1820
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
1821
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
394
1822
|
*/
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
1823
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1824
|
+
.utrecht-select, .utrecht-html select {
|
|
1825
|
+
-moz-appearance: none;
|
|
1826
|
+
-webkit-appearance: none;
|
|
1827
|
+
appearance: none;
|
|
1828
|
+
background-color: var(--utrecht-select-background-color, var(--utrecht-form-input-background-color));
|
|
1829
|
+
background-image: var(--utrecht-select-background-image);
|
|
1830
|
+
background-position: 100%;
|
|
1831
|
+
background-repeat: no-repeat;
|
|
1832
|
+
background-size: 1.4em;
|
|
1833
|
+
border-block-end-width: var(--utrecht-select-border-block-end-width, var(--utrecht-select-border-width, var(--utrecht-form-input-border-width)));
|
|
1834
|
+
border-block-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
1835
|
+
border-color: var(--utrecht-select-border-color, var(--utrecht-form-input-border-color));
|
|
1836
|
+
border-inline-end-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
1837
|
+
border-inline-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
1838
|
+
border-radius: var(--utrecht-select-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
1839
|
+
border-style: solid;
|
|
1840
|
+
color: var(--utrecht-select-color, var(--utrecht-form-input-color));
|
|
1841
|
+
font-family: var(--utrecht-select-font-family, var(--utrecht-form-input-font-family));
|
|
1842
|
+
font-size: var(--utrecht-select-font-size, var(--utrecht-form-input-font-size));
|
|
1843
|
+
max-inline-size: var(--utrecht-select-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
1844
|
+
padding-block-end: var(--utrecht-select-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
1845
|
+
padding-block-start: var(--utrecht-select-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
1846
|
+
padding-inline-end: var(--utrecht-select-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
1847
|
+
padding-inline-start: var(--utrecht-select-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
1848
|
+
width: 100%;
|
|
404
1849
|
}
|
|
405
1850
|
|
|
406
|
-
.utrecht-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
color: var(--utrecht-
|
|
410
|
-
|
|
1851
|
+
.utrecht-select--disabled, .utrecht-select--html-select:disabled, .utrecht-html select:disabled {
|
|
1852
|
+
background-color: var(--utrecht-select-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-select-background-color, var(--utrecht-form-input-background-color))));
|
|
1853
|
+
border-color: var(--utrecht-select-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-select-border-color, var(--utrecht-form-input-border-color))));
|
|
1854
|
+
color: var(--utrecht-select-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
1855
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
411
1856
|
}
|
|
412
1857
|
|
|
413
|
-
.utrecht-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
color: var(--utrecht-
|
|
1858
|
+
.utrecht-select--focus, .utrecht-select--html-select:focus, .utrecht-html select:focus {
|
|
1859
|
+
background-color: var(--utrecht-select-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-select-background-color, var(--utrecht-form-input-background-color))));
|
|
1860
|
+
border-color: var(--utrecht-select-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-select-border-color, var(--utrecht-form-input-border-color))));
|
|
1861
|
+
color: var(--utrecht-select-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
417
1862
|
}
|
|
418
1863
|
|
|
419
|
-
.utrecht-
|
|
420
|
-
.utrecht-link--focus,
|
|
421
|
-
.utrecht-html a:focus {
|
|
422
|
-
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
423
|
-
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
424
|
-
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
425
|
-
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
426
|
-
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
427
|
-
color: var(--utrecht-focus-color, inherit);
|
|
1864
|
+
.utrecht-select--focus-visible, .utrecht-select--html-select:focus, .utrecht-html select:focus {
|
|
428
1865
|
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1866
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
429
1867
|
outline-offset: 0;
|
|
430
|
-
|
|
1868
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1869
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
431
1870
|
}
|
|
432
1871
|
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
1872
|
+
.utrecht-select--invalid, .utrecht-select--html-select:invalid, .utrecht-html select:invalid, .utrecht-select--html-select[aria-invalid=true], .utrecht-html select[aria-invalid=true] {
|
|
1873
|
+
background-color: var(--utrecht-select-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-select-background-color, var(--utrecht-form-input-background-color))));
|
|
1874
|
+
border-color: var(--utrecht-select-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-select-border-color, var(--utrecht-form-input-border-color))));
|
|
1875
|
+
border-width: var(--utrecht-select-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-select-border-width, var(--utrecht-form-input-border-width))));
|
|
436
1876
|
}
|
|
437
1877
|
|
|
1878
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1879
|
+
.utrecht-select--html-select, .utrecht-html select {
|
|
1880
|
+
/* <select> does not support :read-only */
|
|
1881
|
+
}
|
|
1882
|
+
.utrecht-select--html-select:focus:not(:focus-visible), .utrecht-html select:focus:not(:focus-visible) {
|
|
1883
|
+
/* undo focus ring */
|
|
1884
|
+
box-shadow: none;
|
|
1885
|
+
outline-style: none;
|
|
1886
|
+
}
|
|
438
1887
|
/**
|
|
439
1888
|
* @license EUPL-1.2
|
|
440
1889
|
* Copyright (c) 2021 Robbert Broersma
|
|
@@ -446,13 +1895,415 @@
|
|
|
446
1895
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
447
1896
|
*/
|
|
448
1897
|
.utrecht-separator, .utrecht-html hr {
|
|
449
|
-
border-style: solid;
|
|
450
1898
|
border-color: var(--utrecht-separator-color);
|
|
451
|
-
border-
|
|
452
|
-
|
|
1899
|
+
border-style: solid;
|
|
1900
|
+
border-width: 0 0 var(--utrecht-separator-block-size) 0;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.utrecht-separator--distanced, .utrecht-html hr {
|
|
453
1904
|
margin-block-end: var(--utrecht-separator-margin-block-end);
|
|
1905
|
+
margin-block-start: var(--utrecht-separator-margin-block-start);
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
/**
|
|
1909
|
+
* @license EUPL-1.2
|
|
1910
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1911
|
+
*/
|
|
1912
|
+
/**
|
|
1913
|
+
* @license EUPL-1.2
|
|
1914
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1915
|
+
*/
|
|
1916
|
+
.utrecht-table, .utrecht-html table {
|
|
1917
|
+
border-collapse: collapse;
|
|
1918
|
+
border-color: var(--utrecht-table-border-color, 0);
|
|
1919
|
+
border-style: solid;
|
|
1920
|
+
border-width: var(--utrecht-table-border-width, 0);
|
|
1921
|
+
font-family: var(--utrecht-table-font-family, var(--utrecht-document-font-family));
|
|
1922
|
+
font-size: var(--utrecht-table-font-size, inherit);
|
|
1923
|
+
width: 100%;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
.utrecht-table--distanced, .utrecht-html table {
|
|
1927
|
+
margin-block-end: var(--utrecht-table-margin-block-end);
|
|
1928
|
+
margin-block-start: var(--utrecht-table-margin-block-start);
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.utrecht-table__caption, .utrecht-html caption {
|
|
1932
|
+
color: var(--utrecht-table-caption-color);
|
|
1933
|
+
font-family: var(--utrecht-table-caption-font-family);
|
|
1934
|
+
font-size: var(--utrecht-table-caption-font-size);
|
|
1935
|
+
font-weight: var(--utrecht-table-caption-font-weight);
|
|
1936
|
+
line-height: var(--utrecht-table-caption-line-height);
|
|
1937
|
+
margin-block-end: var(--utrecht-table-caption-margin-block-end);
|
|
1938
|
+
text-align: var(--utrecht-table-caption-text-align, center);
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.utrecht-table__header, .utrecht-html thead {
|
|
1942
|
+
background-color: var(--utrecht-table-header-background-color);
|
|
1943
|
+
color: var(--utrecht-table-header-color);
|
|
1944
|
+
font-weight: var(--utrecht-table-header-font-weight);
|
|
1945
|
+
text-transform: var(--utrecht-table-header-text-transform);
|
|
1946
|
+
vertical-align: bottom;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
.utrecht-table__cell--last-header-row, .utrecht-html thead tr:last-child th {
|
|
1950
|
+
border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
|
|
1951
|
+
border-block-end-style: solid;
|
|
1952
|
+
border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
.utrecht-table__body, .utrecht-html tbody {
|
|
1956
|
+
vertical-align: baseline;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
.utrecht-table__heading, .utrecht-html th {
|
|
1960
|
+
color: var(--utrecht-table-heading-color);
|
|
1961
|
+
font-size: var(--utrecht-table-heading-font-size);
|
|
1962
|
+
font-weight: var(--utrecht-table-heading-font-weight);
|
|
1963
|
+
text-transform: var(--utrecht-table-heading-text-transform);
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.utrecht-table__cell, .utrecht-html th,
|
|
1967
|
+
.utrecht-html td {
|
|
1968
|
+
border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
|
|
1969
|
+
border-block-end-style: solid;
|
|
1970
|
+
border-block-end-width: var(--utrecht-table-row-border-block-end-width, 0);
|
|
1971
|
+
line-height: var(--utrecht-table-cell-line-height, inherit);
|
|
1972
|
+
padding-block-end: var(--utrecht-table-cell-padding-block-end, 0);
|
|
1973
|
+
padding-block-start: var(--utrecht-table-cell-padding-block-start, 0);
|
|
1974
|
+
padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
|
|
1975
|
+
padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
|
|
1976
|
+
text-align: start;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.utrecht-table__cell--first, .utrecht-html td:first-child,
|
|
1980
|
+
.utrecht-html th:first-child {
|
|
1981
|
+
padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.utrecht-table__cell--last, .utrecht-html td:last-child,
|
|
1985
|
+
.utrecht-html th:last-child {
|
|
1986
|
+
padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
.utrecht-table__cell--numeric-column, .utrecht-html thead > tr > th.numeric,
|
|
1990
|
+
.utrecht-html tfoot > tr > th.numeric,
|
|
1991
|
+
.utrecht-html th[scope=column].numeric, .utrecht-html td.numeric {
|
|
1992
|
+
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
|
|
1993
|
+
text-align: right;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.utrecht-table__cell--numeric-data, .utrecht-html td.numeric {
|
|
1997
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.utrecht-table__row--alternate-odd, .utrecht-html table.alternate-row-color > tr:nth-child(odd) > td, .utrecht-html table.alternate-row-color > tr:nth-child(odd) > th, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(odd) > td, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(odd) > th {
|
|
2001
|
+
background-color: var(--utrecht-table-row-alternate-odd-background-color);
|
|
2002
|
+
color: var(--utrecht-table-row-alternate-odd-color);
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.utrecht-table__row--alternate-even, .utrecht-html table.alternate-row-color > tr:nth-child(even) > td, .utrecht-html table.alternate-row-color > tr:nth-child(even) > th, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(even) > td, .utrecht-html table.alternate-row-color > tbody > tr:nth-child(even) > th {
|
|
2006
|
+
background-color: var(--utrecht-table-row-alternate-even-background-color);
|
|
2007
|
+
color: var(--utrecht-table-row-alternate-even-color);
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
/* stylelint-disable selector-class-pattern */
|
|
2011
|
+
/**
|
|
2012
|
+
* @license EUPL-1.2
|
|
2013
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2014
|
+
*/
|
|
2015
|
+
/**
|
|
2016
|
+
* @license EUPL-1.2
|
|
2017
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2018
|
+
*/
|
|
2019
|
+
/**
|
|
2020
|
+
* @license EUPL-1.2
|
|
2021
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2022
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2023
|
+
*/
|
|
2024
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2025
|
+
.utrecht-textarea, .utrecht-html textarea {
|
|
2026
|
+
background-color: var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));
|
|
2027
|
+
border-width: var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));
|
|
2028
|
+
border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));
|
|
2029
|
+
border-color: var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));
|
|
2030
|
+
border-radius: var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
2031
|
+
border-style: solid;
|
|
2032
|
+
box-sizing: border-box;
|
|
2033
|
+
color: var(--utrecht-textarea-color, var(--utrecht-form-input-color));
|
|
2034
|
+
font-family: var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));
|
|
2035
|
+
font-size: var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
2036
|
+
max-inline-size: var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
2037
|
+
min-block-size: var(--utrecht-textarea-min-block-size);
|
|
2038
|
+
padding-block-end: var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
2039
|
+
padding-block-start: var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
2040
|
+
padding-inline-end: var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
2041
|
+
padding-inline-start: var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
2042
|
+
resize: vertical;
|
|
2043
|
+
width: 100%;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
.utrecht-textarea--invalid, .utrecht-textarea--html-textarea:invalid, .utrecht-textarea--html-textarea[aria-invalid=true], .utrecht-html textarea:invalid, .utrecht-html textarea[aria-invalid=true] {
|
|
2047
|
+
background-color: var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
2048
|
+
border-color: var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
2049
|
+
border-width: var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width))));
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.utrecht-textarea--disabled, .utrecht-textarea--html-textarea:disabled, .utrecht-html textarea:disabled {
|
|
2053
|
+
background-color: var(--utrecht-textarea-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
2054
|
+
border-color: var(--utrecht-textarea-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
2055
|
+
color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2056
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.utrecht-textarea--focus, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
|
|
2060
|
+
background-color: var(--utrecht-textarea-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
2061
|
+
border-color: var(--utrecht-textarea-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
2062
|
+
color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.utrecht-textarea--focus-visible, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
|
|
2066
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2067
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2068
|
+
outline-offset: 0;
|
|
2069
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2070
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.utrecht-textarea--read-only, .utrecht-textarea--html-textarea:read-only, .utrecht-html textarea:read-only {
|
|
2074
|
+
border-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-input-border-color))));
|
|
2075
|
+
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
.utrecht-textarea__placeholder, .utrecht-textarea--html-textarea::placeholder, .utrecht-html textarea::placeholder {
|
|
2079
|
+
color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2080
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
2081
|
+
opacity: 100%;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.utrecht-textarea--html-textarea:focus:not(:focus-visible), .utrecht-html textarea:focus:not(:focus-visible) {
|
|
2085
|
+
/* undo focus ring */
|
|
2086
|
+
box-shadow: none;
|
|
2087
|
+
outline-style: none;
|
|
2088
|
+
}
|
|
2089
|
+
/**
|
|
2090
|
+
* @license EUPL-1.2
|
|
2091
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2092
|
+
*/
|
|
2093
|
+
/**
|
|
2094
|
+
* @license EUPL-1.2
|
|
2095
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2096
|
+
*/
|
|
2097
|
+
/**
|
|
2098
|
+
* @license EUPL-1.2
|
|
2099
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2100
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2101
|
+
*/
|
|
2102
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2103
|
+
.utrecht-textbox, .utrecht-html input:not([type]),
|
|
2104
|
+
.utrecht-html input[type=date i],
|
|
2105
|
+
.utrecht-html input[type=datetime-local i],
|
|
2106
|
+
.utrecht-html input[type=email i],
|
|
2107
|
+
.utrecht-html input[type=month i],
|
|
2108
|
+
.utrecht-html input[type=number i],
|
|
2109
|
+
.utrecht-html input[type=password i],
|
|
2110
|
+
.utrecht-html input[type=search i],
|
|
2111
|
+
.utrecht-html input[type=tel i],
|
|
2112
|
+
.utrecht-html input[type=text i],
|
|
2113
|
+
.utrecht-html input[type=time i],
|
|
2114
|
+
.utrecht-html input[type=url i],
|
|
2115
|
+
.utrecht-html input[type=week i] {
|
|
2116
|
+
background-color: var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));
|
|
2117
|
+
border-width: var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));
|
|
2118
|
+
border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));
|
|
2119
|
+
border-color: var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));
|
|
2120
|
+
border-radius: var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
2121
|
+
border-style: solid;
|
|
2122
|
+
box-sizing: border-box;
|
|
2123
|
+
color: var(--utrecht-textbox-color, var(--utrecht-form-input-color));
|
|
2124
|
+
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));
|
|
2125
|
+
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
2126
|
+
max-inline-size: var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
2127
|
+
padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
2128
|
+
padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
2129
|
+
padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
2130
|
+
padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
2131
|
+
width: 100%;
|
|
454
2132
|
}
|
|
455
2133
|
|
|
2134
|
+
.utrecht-textbox--invalid, .utrecht-textbox--html-input:invalid, .utrecht-textbox--html-input[aria-invalid=true], .utrecht-html input:invalid:not([type]),
|
|
2135
|
+
.utrecht-html input[type=date i]:invalid,
|
|
2136
|
+
.utrecht-html input[type=datetime-local i]:invalid,
|
|
2137
|
+
.utrecht-html input[type=email i]:invalid,
|
|
2138
|
+
.utrecht-html input[type=month i]:invalid,
|
|
2139
|
+
.utrecht-html input[type=number i]:invalid,
|
|
2140
|
+
.utrecht-html input[type=password i]:invalid,
|
|
2141
|
+
.utrecht-html input[type=search i]:invalid,
|
|
2142
|
+
.utrecht-html input[type=tel i]:invalid,
|
|
2143
|
+
.utrecht-html input[type=text i]:invalid,
|
|
2144
|
+
.utrecht-html input[type=time i]:invalid,
|
|
2145
|
+
.utrecht-html input[type=url i]:invalid,
|
|
2146
|
+
.utrecht-html input[type=week i]:invalid, .utrecht-html input[aria-invalid=true]:not([type]),
|
|
2147
|
+
.utrecht-html input[aria-invalid=true][type=date i],
|
|
2148
|
+
.utrecht-html input[aria-invalid=true][type=datetime-local i],
|
|
2149
|
+
.utrecht-html input[aria-invalid=true][type=email i],
|
|
2150
|
+
.utrecht-html input[aria-invalid=true][type=month i],
|
|
2151
|
+
.utrecht-html input[aria-invalid=true][type=number i],
|
|
2152
|
+
.utrecht-html input[aria-invalid=true][type=password i],
|
|
2153
|
+
.utrecht-html input[aria-invalid=true][type=search i],
|
|
2154
|
+
.utrecht-html input[aria-invalid=true][type=tel i],
|
|
2155
|
+
.utrecht-html input[aria-invalid=true][type=text i],
|
|
2156
|
+
.utrecht-html input[aria-invalid=true][type=time i],
|
|
2157
|
+
.utrecht-html input[aria-invalid=true][type=url i],
|
|
2158
|
+
.utrecht-html input[aria-invalid=true][type=week i] {
|
|
2159
|
+
background-color: var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));
|
|
2160
|
+
border-color: var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));
|
|
2161
|
+
border-width: var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))));
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.utrecht-textbox--disabled, .utrecht-textbox--html-input:disabled, .utrecht-html input:disabled:not([type]),
|
|
2165
|
+
.utrecht-html input[type=date i]:disabled,
|
|
2166
|
+
.utrecht-html input[type=datetime-local i]:disabled,
|
|
2167
|
+
.utrecht-html input[type=email i]:disabled,
|
|
2168
|
+
.utrecht-html input[type=month i]:disabled,
|
|
2169
|
+
.utrecht-html input[type=number i]:disabled,
|
|
2170
|
+
.utrecht-html input[type=password i]:disabled,
|
|
2171
|
+
.utrecht-html input[type=search i]:disabled,
|
|
2172
|
+
.utrecht-html input[type=tel i]:disabled,
|
|
2173
|
+
.utrecht-html input[type=text i]:disabled,
|
|
2174
|
+
.utrecht-html input[type=time i]:disabled,
|
|
2175
|
+
.utrecht-html input[type=url i]:disabled,
|
|
2176
|
+
.utrecht-html input[type=week i]:disabled {
|
|
2177
|
+
background-color: var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
2178
|
+
border-color: var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
2179
|
+
color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2180
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2183
|
+
.utrecht-textbox--focus, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
|
|
2184
|
+
.utrecht-html input[type=date i]:focus,
|
|
2185
|
+
.utrecht-html input[type=datetime-local i]:focus,
|
|
2186
|
+
.utrecht-html input[type=email i]:focus,
|
|
2187
|
+
.utrecht-html input[type=month i]:focus,
|
|
2188
|
+
.utrecht-html input[type=number i]:focus,
|
|
2189
|
+
.utrecht-html input[type=password i]:focus,
|
|
2190
|
+
.utrecht-html input[type=search i]:focus,
|
|
2191
|
+
.utrecht-html input[type=tel i]:focus,
|
|
2192
|
+
.utrecht-html input[type=text i]:focus,
|
|
2193
|
+
.utrecht-html input[type=time i]:focus,
|
|
2194
|
+
.utrecht-html input[type=url i]:focus,
|
|
2195
|
+
.utrecht-html input[type=week i]:focus {
|
|
2196
|
+
background-color: var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));
|
|
2197
|
+
border-color: var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));
|
|
2198
|
+
color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.utrecht-textbox--focus-visible, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
|
|
2202
|
+
.utrecht-html input[type=date i]:focus,
|
|
2203
|
+
.utrecht-html input[type=datetime-local i]:focus,
|
|
2204
|
+
.utrecht-html input[type=email i]:focus,
|
|
2205
|
+
.utrecht-html input[type=month i]:focus,
|
|
2206
|
+
.utrecht-html input[type=number i]:focus,
|
|
2207
|
+
.utrecht-html input[type=password i]:focus,
|
|
2208
|
+
.utrecht-html input[type=search i]:focus,
|
|
2209
|
+
.utrecht-html input[type=tel i]:focus,
|
|
2210
|
+
.utrecht-html input[type=text i]:focus,
|
|
2211
|
+
.utrecht-html input[type=time i]:focus,
|
|
2212
|
+
.utrecht-html input[type=url i]:focus,
|
|
2213
|
+
.utrecht-html input[type=week i]:focus {
|
|
2214
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2215
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2216
|
+
outline-offset: 0;
|
|
2217
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2218
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.utrecht-textbox--read-only, .utrecht-textbox--html-input:read-only, .utrecht-html input:read-only:not([type]),
|
|
2222
|
+
.utrecht-html input[type=date i]:read-only,
|
|
2223
|
+
.utrecht-html input[type=datetime-local i]:read-only,
|
|
2224
|
+
.utrecht-html input[type=email i]:read-only,
|
|
2225
|
+
.utrecht-html input[type=month i]:read-only,
|
|
2226
|
+
.utrecht-html input[type=number i]:read-only,
|
|
2227
|
+
.utrecht-html input[type=password i]:read-only,
|
|
2228
|
+
.utrecht-html input[type=search i]:read-only,
|
|
2229
|
+
.utrecht-html input[type=tel i]:read-only,
|
|
2230
|
+
.utrecht-html input[type=text i]:read-only,
|
|
2231
|
+
.utrecht-html input[type=time i]:read-only,
|
|
2232
|
+
.utrecht-html input[type=url i]:read-only,
|
|
2233
|
+
.utrecht-html input[type=week i]:read-only {
|
|
2234
|
+
border-color: var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));
|
|
2235
|
+
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.utrecht-textbox__placeholder, .utrecht-textbox--html-input::placeholder, .utrecht-html input:not([type])::placeholder,
|
|
2239
|
+
.utrecht-html input[type=date i]::placeholder,
|
|
2240
|
+
.utrecht-html input[type=datetime-local i]::placeholder,
|
|
2241
|
+
.utrecht-html input[type=email i]::placeholder,
|
|
2242
|
+
.utrecht-html input[type=month i]::placeholder,
|
|
2243
|
+
.utrecht-html input[type=number i]::placeholder,
|
|
2244
|
+
.utrecht-html input[type=password i]::placeholder,
|
|
2245
|
+
.utrecht-html input[type=search i]::placeholder,
|
|
2246
|
+
.utrecht-html input[type=tel i]::placeholder,
|
|
2247
|
+
.utrecht-html input[type=text i]::placeholder,
|
|
2248
|
+
.utrecht-html input[type=time i]::placeholder,
|
|
2249
|
+
.utrecht-html input[type=url i]::placeholder,
|
|
2250
|
+
.utrecht-html input[type=week i]::placeholder {
|
|
2251
|
+
color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
2252
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
2253
|
+
opacity: 100%;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.utrecht-textbox--numeric, .utrecht-html input[autocomplete~=bday i],
|
|
2257
|
+
.utrecht-html input[autocomplete~=bday-day i],
|
|
2258
|
+
.utrecht-html input[autocomplete~=bday-month i],
|
|
2259
|
+
.utrecht-html input[autocomplete~=bday-year i],
|
|
2260
|
+
.utrecht-html input[autocomplete~=cc-csc i],
|
|
2261
|
+
.utrecht-html input[autocomplete~=cc-exp i],
|
|
2262
|
+
.utrecht-html input[autocomplete~=cc-exp-month i],
|
|
2263
|
+
.utrecht-html input[autocomplete~=cc-exp-year i],
|
|
2264
|
+
.utrecht-html input[autocomplete~=cc-number i],
|
|
2265
|
+
.utrecht-html input[autocomplete~=one-time-code i],
|
|
2266
|
+
.utrecht-html input[autocomplete~=postal-code i],
|
|
2267
|
+
.utrecht-html input[autocomplete~=tel i],
|
|
2268
|
+
.utrecht-html input[autocomplete~=tel-area-code i],
|
|
2269
|
+
.utrecht-html input[autocomplete~=tel-country-code i],
|
|
2270
|
+
.utrecht-html input[autocomplete~=tel-extension i],
|
|
2271
|
+
.utrecht-html input[autocomplete~=tel-local i],
|
|
2272
|
+
.utrecht-html input[autocomplete~=tel-national i],
|
|
2273
|
+
.utrecht-html input[autocomplete~=transaction-amount i],
|
|
2274
|
+
.utrecht-html input[inputmode=decimal i],
|
|
2275
|
+
.utrecht-html input[inputmode=numeric i],
|
|
2276
|
+
.utrecht-html input[type=number i] {
|
|
2277
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
.utrecht-textbox--password, .utrecht-html input[autocomplete~=current-password i],
|
|
2281
|
+
.utrecht-html input[autocomplete~=new-password i] {
|
|
2282
|
+
font-variant-ligatures: none;
|
|
2283
|
+
font-variant-numeric: slashed-zero;
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.utrecht-textbox--url, .utrecht-html input[type=url i] {
|
|
2287
|
+
font-variant-ligatures: none;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
.utrecht-textbox--html-input:focus:not(:focus-visible), .utrecht-html input:focus:not(:focus-visible):not([type]),
|
|
2291
|
+
.utrecht-html input[type=date i]:focus:not(:focus-visible),
|
|
2292
|
+
.utrecht-html input[type=datetime-local i]:focus:not(:focus-visible),
|
|
2293
|
+
.utrecht-html input[type=email i]:focus:not(:focus-visible),
|
|
2294
|
+
.utrecht-html input[type=month i]:focus:not(:focus-visible),
|
|
2295
|
+
.utrecht-html input[type=number i]:focus:not(:focus-visible),
|
|
2296
|
+
.utrecht-html input[type=password i]:focus:not(:focus-visible),
|
|
2297
|
+
.utrecht-html input[type=search i]:focus:not(:focus-visible),
|
|
2298
|
+
.utrecht-html input[type=tel i]:focus:not(:focus-visible),
|
|
2299
|
+
.utrecht-html input[type=text i]:focus:not(:focus-visible),
|
|
2300
|
+
.utrecht-html input[type=time i]:focus:not(:focus-visible),
|
|
2301
|
+
.utrecht-html input[type=url i]:focus:not(:focus-visible),
|
|
2302
|
+
.utrecht-html input[type=week i]:focus:not(:focus-visible) {
|
|
2303
|
+
/* undo focus ring */
|
|
2304
|
+
box-shadow: none;
|
|
2305
|
+
outline-style: none;
|
|
2306
|
+
}
|
|
456
2307
|
/**
|
|
457
2308
|
* @license EUPL-1.2
|
|
458
2309
|
* Copyright (c) 2021 Robbert Broersma
|
|
@@ -466,23 +2317,25 @@
|
|
|
466
2317
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
467
2318
|
font-size: var(--utrecht-document-font-size, inherit);
|
|
468
2319
|
line-height: var(--utrecht-document-line-height, inherit);
|
|
469
|
-
|
|
2320
|
+
margin-block-end: 0;
|
|
2321
|
+
margin-block-start: 0;
|
|
2322
|
+
padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
|
|
470
2323
|
}
|
|
471
2324
|
|
|
472
2325
|
.utrecht-unordered-list--distanced, .utrecht-html ul {
|
|
473
|
-
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
474
2326
|
margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
2327
|
+
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
475
2328
|
}
|
|
476
2329
|
|
|
477
2330
|
.utrecht-unordered-list--nested {
|
|
478
|
-
margin-inline-start: 2ch;
|
|
479
2331
|
margin-block-end: 0;
|
|
2332
|
+
margin-inline-start: 2ch;
|
|
480
2333
|
}
|
|
481
2334
|
|
|
482
2335
|
.utrecht-unordered-list__item, .utrecht-html ul > li {
|
|
483
|
-
padding-inline-start: 1ch;
|
|
484
|
-
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
485
2336
|
margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
|
|
2337
|
+
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
2338
|
+
padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
|
|
486
2339
|
}
|
|
487
2340
|
|
|
488
2341
|
.utrecht-unordered-list__item::marker, .utrecht-html ul > li::marker,
|