@utrecht/component-library-css 1.0.0-alpha.10 → 1.0.0-alpha.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/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,19 +64,76 @@
54
64
  */
55
65
  /**
56
66
  * @license EUPL-1.2
57
- * Copyright (c) 2021 Robbert Broersma
67
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
68
+ * Copyright (c) 2021 Gemeente Utrecht
58
69
  */
59
- .utrecht-form-label, .utrecht-html label {
60
- font-weight: var(--utrecht-form-label-font-weight);
61
- font-size: var(--utrecht-form-label-font-size);
70
+ .utrecht-button, .utrecht-html button {
71
+ background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
72
+ block-size: var(--utrecht-button-block-size, auto);
73
+ border-radius: var(--utrecht-button-border-radius);
74
+ border-width: var(--utrecht-button-border-width);
75
+ color: var(--utrecht-button-primary-action-color, var(--utrecht-button-color));
76
+ font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
77
+ font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
78
+ font-weight: var(--utrecht-button-font-weight);
79
+ inline-size: var(--utrecht-button-inline-size, auto);
80
+ letter-spacing: var(--utrecht-button-letter-spacing);
81
+ min-inline-size: var(--utrecht-button-min-inline-size, 0);
82
+ padding-block-end: var(--utrecht-button-padding-block-end);
83
+ padding-block-start: var(--utrecht-button-padding-block-start);
84
+ padding-inline-end: var(--utrecht-button-padding-inline-end);
85
+ padding-inline-start: var(--utrecht-button-padding-inline-start);
86
+ text-transform: var(--utrecht-button-text-transform);
87
+ user-select: none;
62
88
  }
63
89
 
64
- .utrecht-form-label--checkbox, .utrecht-html input[type=checkbox] ~ label {
65
- font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
90
+ .utrecht-button--distanced, .utrecht-html button {
91
+ margin-block-end: var(--utrecht-button-margin-block-end);
92
+ margin-block-start: var(--utrecht-button-margin-block-start);
93
+ margin-inline-end: var(--utrecht-button-margin-inline-end);
94
+ margin-inline-start: var(--utrecht-button-margin-inline-start);
66
95
  }
67
96
 
68
- .utrecht-form-label--radio, .utrecht-html input[type=radio] ~ label {
69
- font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
97
+ .utrecht-button--submit, .utrecht-html button[type=submit] {
98
+ /* lower priority specificty than busy and disabled cursor */
99
+ cursor: var(--utrecht-action-submit-cursor);
100
+ }
101
+
102
+ .utrecht-button--busy, .utrecht-html button[aria-busy=true] {
103
+ cursor: var(--utrecht-action-busy-cursor);
104
+ }
105
+
106
+ .utrecht-button:disabled, .utrecht-html button:disabled,
107
+ .utrecht-button--disabled {
108
+ background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
109
+ color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
110
+ cursor: var(--utrecht-action-disabled-cursor);
111
+ }
112
+
113
+ .utrecht-button:active, .utrecht-html button:active,
114
+ .utrecht-button--active {
115
+ background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
116
+ color: var(--utrecht-button-active-color, var(--utrecht-button-color));
117
+ }
118
+
119
+ .utrecht-button--focus, .utrecht-html button:focus,
120
+ .utrecht-button:not(.utrecht-button--disabled):focus {
121
+ background-color: var(--utrecht-focus-background-color);
122
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
123
+ color: var(--utrecht-focus-color, inherit);
124
+ outline-color: var(--utrecht-focus-outline-color, transparent);
125
+ outline-offset: 0;
126
+ outline-style: var(--utrecht-focus-outline-style, solid);
127
+ outline-width: var(--utrecht-focus-outline-width, 0);
128
+ background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
129
+ color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
130
+ }
131
+
132
+ .utrecht-button--hover:not(:disabled), .utrecht-html button:not(:disabled):hover,
133
+ .utrecht-button:hover:not(:disabled):not(.utrecht-button--disabled) {
134
+ background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
135
+ color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
136
+ transform: scale(var(--utrecht-button-focus-transform-scale, 1));
70
137
  }
71
138
 
72
139
  /**
@@ -75,25 +142,34 @@
75
142
  */
76
143
  /**
77
144
  * @license EUPL-1.2
78
- * Copyright (c) 2021 The Knights Who Say NIH! B.V.
145
+ * Copyright (c) 2021 Robbert Broersma
79
146
  */
80
- .utrecht-paragraph, .utrecht-html p {
81
- color: var(--utrecht-document-color, inherit);
82
- font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
83
- font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
84
- font-weight: var(--utrecht-paragraph-font-weight, inherit);
85
- line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
147
+ .utrecht-checkbox, .utrecht-html input[type=checkbox] {
148
+ margin-block-end: 0;
149
+ /* reset native margin for input[type="checkbox"] */
150
+ margin-block-start: 0;
151
+ margin-inline-end: 0;
152
+ margin-inline-start: 0;
86
153
  }
87
154
 
88
- .utrecht-paragraph--lead, .utrecht-html p.lead {
89
- font-size: var(--utrecht-paragraph-lead-font-size, inherit);
90
- font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
91
- line-height: var(--utrecht-paragraph-lead-line-height, inherit);
155
+ .utrecht-checkbox--disabled {
156
+ cursor: var(--utrecht-action-disabled-cursor);
92
157
  }
93
158
 
94
- .utrecht-paragraph--distanced, .utrecht-html * ~ p {
95
- margin-block-start: var(--utrecht-paragraph-margin-block-start);
96
- margin-block-end: var(--utrecht-paragraph-margin-block-end);
159
+ /**
160
+ * @license EUPL-1.2
161
+ * Copyright (c) 2021 Robbert Broersma
162
+ */
163
+ /**
164
+ * @license EUPL-1.2
165
+ * Copyright (c) 2021 Robbert Broersma
166
+ */
167
+ .utrecht-emphasis--stressed, .utrecht-html em {
168
+ font-style: var(--utrecht-emphasis-stressed-font-style, italic);
169
+ }
170
+
171
+ .utrecht-emphasis--strong, .utrecht-html strong {
172
+ font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
97
173
  }
98
174
 
99
175
  /**
@@ -104,37 +180,40 @@
104
180
  * @license EUPL-1.2
105
181
  * Copyright (c) 2021 Robbert Broersma
106
182
  */
107
- .utrecht-textarea, .utrecht-html textarea {
108
- border-width: var(--utrecht-textarea-border-width);
109
- border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width));
110
- border-color: var(--utrecht-textarea-border-color);
111
- border-radius: var(--utrecht-textarea-border-radius, 0);
112
- border-style: solid;
113
- color: var(--utrecht-textarea-color);
114
- font-family: var(--utrecht-textarea-font-family);
115
- font-size: var(--utrecht-textarea-font-size, 1em);
116
- max-width: var(--utrecht-textarea-max-width);
117
- padding-block-end: var(--utrecht-textarea-padding-block-end);
118
- padding-block-start: var(--utrecht-textarea-padding-block-start);
119
- padding-inline-end: var(--utrecht-textarea-padding-inline-end);
120
- padding-inline-start: var(--utrecht-textarea-padding-inline-start);
121
- width: 100%;
183
+ /* stylelint-disable-next-line block-no-empty */
184
+ .utrecht-form-fieldset--reset-fieldset, .utrecht-html fieldset {
185
+ border: 0;
186
+ margin-inline-end: 0;
187
+ margin-inline-start: 0;
188
+ min-width: 0;
189
+ padding-block-end: 0;
190
+ padding-block-start: 0.01em;
191
+ padding-inline-end: 0;
192
+ padding-inline-start: 0;
193
+ }
194
+
195
+ .utrecht-form-fieldset__legend--reset-legend, .utrecht-html legend {
196
+ padding-inline-end: 0;
197
+ padding-inline-start: 0;
122
198
  }
123
199
 
124
- .utrecht-textarea--invalid, .utrecht-html textarea:invalid,
125
- .utrecht-html textarea[aria-invalid=true] {
126
- border-color: var(--utrecht-textarea-invalid-border-color);
127
- border-width: var(--utrecht-textarea-invalid-border-width);
200
+ .utrecht-form-fieldset--distanced, .utrecht-html fieldset {
201
+ margin-block-end: var(--utrecht-form-fieldset-margin-block-end, 0);
202
+ margin-block-start: var(--utrecht-form-fieldset-margin-block-start, 0);
128
203
  }
129
204
 
130
- .utrecht-textarea--disabled, .utrecht-html textarea:disabled {
131
- border-color: var(--utrecht-textarea-disabled-border-color);
132
- color: var(--utrecht-textarea-disabled-color);
205
+ .utrecht-form-fieldset__legend, .utrecht-html legend {
206
+ color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
207
+ font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
208
+ font-size: var(--utrecht-form-fieldset-legend-font-size);
209
+ font-weight: var(--utrecht-form-fieldset-legend-font-weight);
210
+ line-height: var(--utrecht-form-fieldset-legend-line-height);
211
+ text-transform: var(--utrecht-form-fieldset-legend-text-transform);
133
212
  }
134
213
 
135
- .utrecht-textarea--read-only, .utrecht-html textarea:read-only {
136
- border-color: var(--utrecht-textarea-read-only-border-color);
137
- color: var(--utrecht-textarea-read-only-color);
214
+ .utrecht-form-fieldset__legend--distanced, .utrecht-html legend {
215
+ margin-block-end: var(--utrecht-form-fieldset-legend-margin-block-end);
216
+ margin-block-start: var(--utrecht-form-fieldset-legend-margin-block-start);
138
217
  }
139
218
 
140
219
  /**
@@ -143,51 +222,31 @@
143
222
  */
144
223
  /**
145
224
  * @license EUPL-1.2
146
- * Copyright (c) 2021 The Knights Who Say NIH! B.V.
147
- * Copyright (c) 2021 Gemeente Utrecht
225
+ * Copyright (c) 2021 Robbert Broersma
148
226
  */
149
- .utrecht-button, .utrecht-html button {
150
- color: var(--utrecht-button-primary-action-color);
151
- font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
152
- font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
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);
227
+ .utrecht-form-label, .utrecht-html label {
228
+ color: var(--utrecht-form-label-color);
229
+ font-size: var(--utrecht-form-label-font-size);
230
+ font-weight: var(--utrecht-form-label-font-weight);
160
231
  }
161
232
 
162
- .utrecht-button--distanced, .utrecht-html button {
163
- margin-inline-start: var(--utrecht-button-margin-inline-start);
164
- margin-inline-end: var(--utrecht-button-margin-inline-end);
165
- margin-block-start: var(--utrecht-button-margin-block-start);
166
- margin-block-end: var(--utrecht-button-margin-block-end);
233
+ .utrecht-form-label--checkbox, .utrecht-html input[type=checkbox] ~ label {
234
+ color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
235
+ font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
167
236
  }
168
237
 
169
- .utrecht-button:disabled, .utrecht-html button:disabled,
170
- .utrecht-button--disabled {
171
- color: var(--utrecht-button-disabled-color);
172
- background-color: var(--utrecht-button-disabled-background-color);
238
+ .utrecht-form-label--checked {
239
+ font-weight: var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight));
173
240
  }
174
241
 
175
- .utrecht-button--focus, .utrecht-html button:focus,
176
- .utrecht-button:not(.utrecht-button--disabled):focus {
177
- outline-width: var(--utrecht-focus-outline-width, 0);
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);
242
+ .utrecht-form-label--disabled {
243
+ cursor: var(--utrecht-action-disabled-cursor);
244
+ font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
184
245
  }
185
246
 
186
- .utrecht-button--hover:not(:disabled), .utrecht-html button:not(:disabled):hover,
187
- .utrecht-button:hover:not(:disabled):not(.utrecht-button--disabled) {
188
- color: var(--utrecht-button-primary-action-color);
189
- background-color: var(--utrecht-button-primary-action-hover-background-color);
190
- transform: scale(var(--utrecht-button-focus-transform-scale, 1));
247
+ .utrecht-form-label--radio, .utrecht-html input[type=radio] ~ label {
248
+ color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
249
+ font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
191
250
  }
192
251
 
193
252
  /**
@@ -201,170 +260,992 @@
201
260
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
202
261
  */
203
262
  .utrecht-heading-1, .utrecht-html h1 {
263
+ color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
204
264
  font-family: var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
205
265
  font-size: var(--utrecht-heading-1-font-size);
206
266
  font-weight: var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));
207
267
  letter-spacing: var(--utrecht-heading-1-letter-spacing);
208
268
  line-height: var(--utrecht-heading-1-line-height);
269
+ margin-block-end: 0;
270
+ margin-block-start: 0;
209
271
  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
272
  }
212
273
 
213
274
  .utrecht-heading-1--distanced, .utrecht-html h1 {
214
- margin-block-start: var(--utrecht-heading-1-margin-block-start);
215
275
  margin-block-end: var(--utrecht-heading-1-margin-block-end);
276
+ margin-block-start: var(--utrecht-heading-1-margin-block-start);
216
277
  }
217
278
 
279
+ /**
280
+ * @license EUPL-1.2
281
+ * Copyright (c) 2021 Robbert Broersma
282
+ */
283
+ /**
284
+ * @license EUPL-1.2
285
+ * Copyright (c) 2021 Gemeente Utrecht
286
+ * Copyright (c) 2021 Robbert Broersma
287
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
288
+ */
218
289
  .utrecht-heading-2, .utrecht-html h2 {
290
+ color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
219
291
  font-family: var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
220
292
  font-size: var(--utrecht-heading-2-font-size);
221
293
  font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
222
294
  letter-spacing: var(--utrecht-heading-2-letter-spacing);
223
295
  line-height: var(--utrecht-heading-2-line-height);
296
+ margin-block-end: 0;
297
+ margin-block-start: 0;
224
298
  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
299
  }
227
300
 
228
301
  .utrecht-heading-2--distanced, .utrecht-html h2 {
229
- margin-block-start: var(--utrecht-heading-2-margin-block-start);
230
302
  margin-block-end: var(--utrecht-heading-2-margin-block-end);
303
+ margin-block-start: var(--utrecht-heading-2-margin-block-start);
231
304
  }
232
305
 
306
+ /**
307
+ * @license EUPL-1.2
308
+ * Copyright (c) 2021 Robbert Broersma
309
+ */
310
+ /**
311
+ * @license EUPL-1.2
312
+ * Copyright (c) 2021 Gemeente Utrecht
313
+ * Copyright (c) 2021 Robbert Broersma
314
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
315
+ */
233
316
  .utrecht-heading-3, .utrecht-html h3 {
317
+ color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
234
318
  font-family: var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
235
319
  font-size: var(--utrecht-heading-3-font-size);
236
320
  font-weight: var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));
237
321
  letter-spacing: var(--utrecht-heading-3-letter-spacing);
238
322
  line-height: var(--utrecht-heading-3-line-height);
323
+ margin-block-end: 0;
324
+ margin-block-start: 0;
239
325
  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
326
  }
242
327
 
243
328
  .utrecht-heading-3--distanced, .utrecht-html h3 {
244
- margin-block-start: var(--utrecht-heading-3-margin-block-start);
245
329
  margin-block-end: var(--utrecht-heading-3-margin-block-end);
330
+ margin-block-start: var(--utrecht-heading-3-margin-block-start);
246
331
  }
247
332
 
333
+ /**
334
+ * @license EUPL-1.2
335
+ * Copyright (c) 2021 Robbert Broersma
336
+ */
337
+ /**
338
+ * @license EUPL-1.2
339
+ * Copyright (c) 2021 Gemeente Utrecht
340
+ * Copyright (c) 2021 Robbert Broersma
341
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
342
+ */
248
343
  .utrecht-heading-4, .utrecht-html h4 {
344
+ color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
249
345
  font-family: var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
250
346
  font-size: var(--utrecht-heading-4-font-size);
251
347
  font-weight: var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));
252
348
  letter-spacing: var(--utrecht-heading-4-letter-spacing);
253
349
  line-height: var(--utrecht-heading-4-line-height);
350
+ margin-block-end: 0;
351
+ margin-block-start: 0;
254
352
  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
353
  }
257
354
 
258
355
  .utrecht-heading-4--distanced, .utrecht-html h4 {
259
- margin-block-start: var(--utrecht-heading-4-margin-block-start);
260
356
  margin-block-end: var(--utrecht-heading-4-margin-block-end);
357
+ margin-block-start: var(--utrecht-heading-4-margin-block-start);
261
358
  }
262
359
 
360
+ /**
361
+ * @license EUPL-1.2
362
+ * Copyright (c) 2021 Robbert Broersma
363
+ */
364
+ /**
365
+ * @license EUPL-1.2
366
+ * Copyright (c) 2021 Gemeente Utrecht
367
+ * Copyright (c) 2021 Robbert Broersma
368
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
369
+ */
263
370
  .utrecht-heading-5, .utrecht-html h5 {
371
+ color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
264
372
  font-family: var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
265
373
  font-size: var(--utrecht-heading-5-font-size);
266
374
  font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
267
375
  letter-spacing: var(--utrecht-heading-5-letter-spacing);
268
376
  line-height: var(--utrecht-heading-5-line-height);
377
+ margin-block-end: 0;
378
+ margin-block-start: 0;
269
379
  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
380
  }
272
381
 
273
382
  .utrecht-heading-5--distanced, .utrecht-html h5 {
274
- margin-block-start: var(--utrecht-heading-5-margin-block-start);
275
383
  margin-block-end: var(--utrecht-heading-5-margin-block-end);
384
+ margin-block-start: var(--utrecht-heading-5-margin-block-start);
276
385
  }
277
386
 
387
+ /**
388
+ * @license EUPL-1.2
389
+ * Copyright (c) 2021 Robbert Broersma
390
+ */
391
+ /**
392
+ * @license EUPL-1.2
393
+ * Copyright (c) 2021 Gemeente Utrecht
394
+ * Copyright (c) 2021 Robbert Broersma
395
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
396
+ */
278
397
  .utrecht-heading-6, .utrecht-html h6 {
398
+ color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
279
399
  font-family: var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
280
400
  font-size: var(--utrecht-heading-6-font-size);
281
401
  font-weight: var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));
282
402
  letter-spacing: var(--utrecht-heading-6-letter-spacing);
283
403
  line-height: var(--utrecht-heading-6-line-height);
404
+ margin-block-end: 0;
405
+ margin-block-start: 0;
284
406
  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
407
  }
287
408
 
288
409
  .utrecht-heading-6--distanced, .utrecht-html h6 {
289
- margin-block-start: var(--utrecht-heading-6-margin-block-start);
290
410
  margin-block-end: var(--utrecht-heading-6-margin-block-end);
411
+ margin-block-start: var(--utrecht-heading-6-margin-block-start);
291
412
  }
292
413
 
293
414
  /**
294
415
  * @license EUPL-1.2
295
- * Copyright (c) 2021 Gemeente Utrecht
416
+ * Copyright (c) 2021 Robbert Broersma
296
417
  */
418
+ /* Collection of all semantic HTML styles in the component library */
297
419
  /**
298
420
  * @license EUPL-1.2
299
- * Copyright (c) 2021 Gemeente Utrecht
421
+ * Copyright (c) 2021 Robbert Broersma
300
422
  */
301
- .utrecht-radio-button, .utrecht-html input[type=radio] {
302
- /* reset native margin for input[type="radio"] */
303
- margin-block-start: 0;
304
- margin-block-end: 0;
305
- margin-inline-start: 0;
306
- margin-inline-end: 0;
307
- }
308
-
309
423
  /**
310
424
  * @license EUPL-1.2
311
425
  * Copyright (c) 2021 Robbert Broersma
312
426
  */
427
+ /* stylelint-disable-next-line block-no-empty */
428
+ /* stylelint-disable-next-line block-no-empty */
313
429
  /**
314
430
  * @license EUPL-1.2
315
431
  * Copyright (c) 2021 Robbert Broersma
316
432
  */
317
- .utrecht-textbox, .utrecht-html input[type=text],
318
- .utrecht-html input[type=email],
319
- .utrecht-html input[type=search],
320
- .utrecht-html input[type=tel],
321
- .utrecht-html input[type=url] {
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%;
337
- }
338
-
339
- .utrecht-textbox--invalid, .utrecht-html input[type=text]:invalid, .utrecht-html input[type=text][aria-invalid=true],
340
- .utrecht-html input[type=email]:invalid,
341
- .utrecht-html input[type=email][aria-invalid=true],
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);
433
+ /**
434
+ * @license EUPL-1.2
435
+ * Copyright (c) 2021 Robbert Broersma
436
+ */
437
+ .utrecht-article, .utrecht-html article {
438
+ max-inline-size: var(--utrecht-article-max-inline-size);
350
439
  }
351
440
 
352
- .utrecht-textbox--disabled, .utrecht-html input[type=text]:disabled,
353
- .utrecht-html input[type=email]:disabled,
441
+ /**
442
+ * @license EUPL-1.2
443
+ * Copyright (c) 2021 Robbert Broersma
444
+ */
445
+ /**
446
+ * @license EUPL-1.2
447
+ * Copyright (c) 2021 Robbert Broersma
448
+ */
449
+ .utrecht-blockquote, .utrecht-html blockquote {
450
+ font-family: var(--utrecht-document-font-family);
451
+ font-size: var(--utrecht-blockquote-font-size);
452
+ margin-inline-end: var(--utrecht-blockquote-margin-inline-end);
453
+ margin-inline-start: var(--utrecht-blockquote-margin-inline-start);
454
+ }
455
+
456
+ .utrecht-blockquote__attribution {
457
+ color: var(--utrecht-blockquote-attribution-color, inherit);
458
+ font-size: var(--utrecht-blockquote-attribution-font-size, inherit);
459
+ }
460
+
461
+ .utrecht-blockquote__content, .utrecht-html blockquote {
462
+ --utrecht-document-color: var(--utrecht-blockquote-content-color, inherit);
463
+ --utrecht-paragraph-font-size: var(--utrecht-blockquote-content-font-size, inherit);
464
+ color: var(--utrecht-blockquote-content-color, inherit);
465
+ font-size: var(--utrecht-blockquote-content-font-size, inherit);
466
+ }
467
+
468
+ .utrecht-blockquote--distanced, .utrecht-html blockquote {
469
+ margin-block-end: var(--utrecht-blockquote-margin-block-end);
470
+ margin-block-start: var(--utrecht-blockquote-margin-block-start);
471
+ }
472
+
473
+ /**
474
+ * @license EUPL-1.2
475
+ * Copyright (c) 2021 Robbert Broersma
476
+ */
477
+ /**
478
+ * @license EUPL-1.2
479
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
480
+ * Copyright (c) 2021 Gemeente Utrecht
481
+ */
482
+ .utrecht-button, .utrecht-html button {
483
+ background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
484
+ block-size: var(--utrecht-button-block-size, auto);
485
+ border-radius: var(--utrecht-button-border-radius);
486
+ border-width: var(--utrecht-button-border-width);
487
+ color: var(--utrecht-button-primary-action-color, var(--utrecht-button-color));
488
+ font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
489
+ font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
490
+ font-weight: var(--utrecht-button-font-weight);
491
+ inline-size: var(--utrecht-button-inline-size, auto);
492
+ letter-spacing: var(--utrecht-button-letter-spacing);
493
+ min-inline-size: var(--utrecht-button-min-inline-size, 0);
494
+ padding-block-end: var(--utrecht-button-padding-block-end);
495
+ padding-block-start: var(--utrecht-button-padding-block-start);
496
+ padding-inline-end: var(--utrecht-button-padding-inline-end);
497
+ padding-inline-start: var(--utrecht-button-padding-inline-start);
498
+ text-transform: var(--utrecht-button-text-transform);
499
+ user-select: none;
500
+ }
501
+
502
+ .utrecht-button--distanced, .utrecht-html button {
503
+ margin-block-end: var(--utrecht-button-margin-block-end);
504
+ margin-block-start: var(--utrecht-button-margin-block-start);
505
+ margin-inline-end: var(--utrecht-button-margin-inline-end);
506
+ margin-inline-start: var(--utrecht-button-margin-inline-start);
507
+ }
508
+
509
+ .utrecht-button--submit, .utrecht-html button[type=submit] {
510
+ /* lower priority specificty than busy and disabled cursor */
511
+ cursor: var(--utrecht-action-submit-cursor);
512
+ }
513
+
514
+ .utrecht-button--busy, .utrecht-html button[aria-busy=true] {
515
+ cursor: var(--utrecht-action-busy-cursor);
516
+ }
517
+
518
+ .utrecht-button:disabled, .utrecht-html button:disabled,
519
+ .utrecht-button--disabled {
520
+ background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
521
+ color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
522
+ cursor: var(--utrecht-action-disabled-cursor);
523
+ }
524
+
525
+ .utrecht-button:active, .utrecht-html button:active,
526
+ .utrecht-button--active {
527
+ background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
528
+ color: var(--utrecht-button-active-color, var(--utrecht-button-color));
529
+ }
530
+
531
+ .utrecht-button--focus, .utrecht-html button:focus,
532
+ .utrecht-button:not(.utrecht-button--disabled):focus {
533
+ background-color: var(--utrecht-focus-background-color);
534
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
535
+ color: var(--utrecht-focus-color, inherit);
536
+ outline-color: var(--utrecht-focus-outline-color, transparent);
537
+ outline-offset: 0;
538
+ outline-style: var(--utrecht-focus-outline-style, solid);
539
+ outline-width: var(--utrecht-focus-outline-width, 0);
540
+ background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
541
+ color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
542
+ }
543
+
544
+ .utrecht-button--hover:not(:disabled), .utrecht-html button:not(:disabled):hover,
545
+ .utrecht-button:hover:not(:disabled):not(.utrecht-button--disabled) {
546
+ background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
547
+ color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
548
+ transform: scale(var(--utrecht-button-focus-transform-scale, 1));
549
+ }
550
+
551
+ /**
552
+ * @license EUPL-1.2
553
+ * Copyright (c) 2021 Robbert Broersma
554
+ */
555
+ /**
556
+ * @license EUPL-1.2
557
+ * Copyright (c) 2021 Robbert Broersma
558
+ */
559
+ .utrecht-checkbox, .utrecht-html input[type=checkbox] {
560
+ margin-block-end: 0;
561
+ /* reset native margin for input[type="checkbox"] */
562
+ margin-block-start: 0;
563
+ margin-inline-end: 0;
564
+ margin-inline-start: 0;
565
+ }
566
+
567
+ .utrecht-checkbox--disabled {
568
+ cursor: var(--utrecht-action-disabled-cursor);
569
+ }
570
+
571
+ /**
572
+ * @license EUPL-1.2
573
+ * Copyright (c) 2021 Robbert Broersma
574
+ */
575
+ /**
576
+ * @license EUPL-1.2
577
+ * Copyright (c) 2021 Robbert Broersma
578
+ */
579
+ .utrecht-emphasis--stressed, .utrecht-html em {
580
+ font-style: var(--utrecht-emphasis-stressed-font-style, italic);
581
+ }
582
+
583
+ .utrecht-emphasis--strong, .utrecht-html strong {
584
+ font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
585
+ }
586
+
587
+ /**
588
+ * @license EUPL-1.2
589
+ * Copyright (c) 2021 Robbert Broersma
590
+ */
591
+ /**
592
+ * @license EUPL-1.2
593
+ * Copyright (c) 2021 Robbert Broersma
594
+ */
595
+ /* stylelint-disable-next-line block-no-empty */
596
+ .utrecht-form-fieldset--reset-fieldset, .utrecht-html fieldset {
597
+ border: 0;
598
+ margin-inline-end: 0;
599
+ margin-inline-start: 0;
600
+ min-width: 0;
601
+ padding-block-end: 0;
602
+ padding-block-start: 0.01em;
603
+ padding-inline-end: 0;
604
+ padding-inline-start: 0;
605
+ }
606
+
607
+ .utrecht-form-fieldset__legend--reset-legend, .utrecht-html legend {
608
+ padding-inline-end: 0;
609
+ padding-inline-start: 0;
610
+ }
611
+
612
+ .utrecht-form-fieldset--distanced, .utrecht-html fieldset {
613
+ margin-block-end: var(--utrecht-form-fieldset-margin-block-end, 0);
614
+ margin-block-start: var(--utrecht-form-fieldset-margin-block-start, 0);
615
+ }
616
+
617
+ .utrecht-form-fieldset__legend, .utrecht-html legend {
618
+ color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
619
+ font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
620
+ font-size: var(--utrecht-form-fieldset-legend-font-size);
621
+ font-weight: var(--utrecht-form-fieldset-legend-font-weight);
622
+ line-height: var(--utrecht-form-fieldset-legend-line-height);
623
+ text-transform: var(--utrecht-form-fieldset-legend-text-transform);
624
+ }
625
+
626
+ .utrecht-form-fieldset__legend--distanced, .utrecht-html legend {
627
+ margin-block-end: var(--utrecht-form-fieldset-legend-margin-block-end);
628
+ margin-block-start: var(--utrecht-form-fieldset-legend-margin-block-start);
629
+ }
630
+
631
+ /**
632
+ * @license EUPL-1.2
633
+ * Copyright (c) 2021 Robbert Broersma
634
+ */
635
+ /**
636
+ * @license EUPL-1.2
637
+ * Copyright (c) 2021 Robbert Broersma
638
+ */
639
+ .utrecht-form-label, .utrecht-html label {
640
+ color: var(--utrecht-form-label-color);
641
+ font-size: var(--utrecht-form-label-font-size);
642
+ font-weight: var(--utrecht-form-label-font-weight);
643
+ }
644
+
645
+ .utrecht-form-label--checkbox, .utrecht-html input[type=checkbox] ~ label {
646
+ color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
647
+ font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
648
+ }
649
+
650
+ .utrecht-form-label--checked {
651
+ font-weight: var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight));
652
+ }
653
+
654
+ .utrecht-form-label--disabled {
655
+ cursor: var(--utrecht-action-disabled-cursor);
656
+ font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
657
+ }
658
+
659
+ .utrecht-form-label--radio, .utrecht-html input[type=radio] ~ label {
660
+ color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
661
+ font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
662
+ }
663
+
664
+ /**
665
+ * @license EUPL-1.2
666
+ * Copyright (c) 2021 Robbert Broersma
667
+ */
668
+ /**
669
+ * @license EUPL-1.2
670
+ * Copyright (c) 2021 Gemeente Utrecht
671
+ * Copyright (c) 2021 Robbert Broersma
672
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
673
+ */
674
+ .utrecht-heading-1, .utrecht-html h1 {
675
+ color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
676
+ font-family: var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
677
+ font-size: var(--utrecht-heading-1-font-size);
678
+ font-weight: var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));
679
+ letter-spacing: var(--utrecht-heading-1-letter-spacing);
680
+ line-height: var(--utrecht-heading-1-line-height);
681
+ margin-block-end: 0;
682
+ margin-block-start: 0;
683
+ text-transform: var(--utrecht-heading-1-text-transform, inherit);
684
+ }
685
+
686
+ .utrecht-heading-1--distanced, .utrecht-html h1 {
687
+ margin-block-end: var(--utrecht-heading-1-margin-block-end);
688
+ margin-block-start: var(--utrecht-heading-1-margin-block-start);
689
+ }
690
+
691
+ /**
692
+ * @license EUPL-1.2
693
+ * Copyright (c) 2021 Robbert Broersma
694
+ */
695
+ /**
696
+ * @license EUPL-1.2
697
+ * Copyright (c) 2021 Gemeente Utrecht
698
+ * Copyright (c) 2021 Robbert Broersma
699
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
700
+ */
701
+ .utrecht-heading-2, .utrecht-html h2 {
702
+ color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
703
+ font-family: var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
704
+ font-size: var(--utrecht-heading-2-font-size);
705
+ font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
706
+ letter-spacing: var(--utrecht-heading-2-letter-spacing);
707
+ line-height: var(--utrecht-heading-2-line-height);
708
+ margin-block-end: 0;
709
+ margin-block-start: 0;
710
+ text-transform: var(--utrecht-heading-2-text-transform, inherit);
711
+ }
712
+
713
+ .utrecht-heading-2--distanced, .utrecht-html h2 {
714
+ margin-block-end: var(--utrecht-heading-2-margin-block-end);
715
+ margin-block-start: var(--utrecht-heading-2-margin-block-start);
716
+ }
717
+
718
+ /**
719
+ * @license EUPL-1.2
720
+ * Copyright (c) 2021 Robbert Broersma
721
+ */
722
+ /**
723
+ * @license EUPL-1.2
724
+ * Copyright (c) 2021 Gemeente Utrecht
725
+ * Copyright (c) 2021 Robbert Broersma
726
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
727
+ */
728
+ .utrecht-heading-3, .utrecht-html h3 {
729
+ color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
730
+ font-family: var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
731
+ font-size: var(--utrecht-heading-3-font-size);
732
+ font-weight: var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));
733
+ letter-spacing: var(--utrecht-heading-3-letter-spacing);
734
+ line-height: var(--utrecht-heading-3-line-height);
735
+ margin-block-end: 0;
736
+ margin-block-start: 0;
737
+ text-transform: var(--utrecht-heading-3-text-transform, inherit);
738
+ }
739
+
740
+ .utrecht-heading-3--distanced, .utrecht-html h3 {
741
+ margin-block-end: var(--utrecht-heading-3-margin-block-end);
742
+ margin-block-start: var(--utrecht-heading-3-margin-block-start);
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 Gemeente Utrecht
752
+ * Copyright (c) 2021 Robbert Broersma
753
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
754
+ */
755
+ .utrecht-heading-4, .utrecht-html h4 {
756
+ color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
757
+ font-family: var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
758
+ font-size: var(--utrecht-heading-4-font-size);
759
+ font-weight: var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));
760
+ letter-spacing: var(--utrecht-heading-4-letter-spacing);
761
+ line-height: var(--utrecht-heading-4-line-height);
762
+ margin-block-end: 0;
763
+ margin-block-start: 0;
764
+ text-transform: var(--utrecht-heading-4-text-transform, inherit);
765
+ }
766
+
767
+ .utrecht-heading-4--distanced, .utrecht-html h4 {
768
+ margin-block-end: var(--utrecht-heading-4-margin-block-end);
769
+ margin-block-start: var(--utrecht-heading-4-margin-block-start);
770
+ }
771
+
772
+ /**
773
+ * @license EUPL-1.2
774
+ * Copyright (c) 2021 Robbert Broersma
775
+ */
776
+ /**
777
+ * @license EUPL-1.2
778
+ * Copyright (c) 2021 Gemeente Utrecht
779
+ * Copyright (c) 2021 Robbert Broersma
780
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
781
+ */
782
+ .utrecht-heading-5, .utrecht-html h5 {
783
+ color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
784
+ font-family: var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
785
+ font-size: var(--utrecht-heading-5-font-size);
786
+ font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
787
+ letter-spacing: var(--utrecht-heading-5-letter-spacing);
788
+ line-height: var(--utrecht-heading-5-line-height);
789
+ margin-block-end: 0;
790
+ margin-block-start: 0;
791
+ text-transform: var(--utrecht-heading-5-text-transform, inherit);
792
+ }
793
+
794
+ .utrecht-heading-5--distanced, .utrecht-html h5 {
795
+ margin-block-end: var(--utrecht-heading-5-margin-block-end);
796
+ margin-block-start: var(--utrecht-heading-5-margin-block-start);
797
+ }
798
+
799
+ /**
800
+ * @license EUPL-1.2
801
+ * Copyright (c) 2021 Robbert Broersma
802
+ */
803
+ /**
804
+ * @license EUPL-1.2
805
+ * Copyright (c) 2021 Gemeente Utrecht
806
+ * Copyright (c) 2021 Robbert Broersma
807
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
808
+ */
809
+ .utrecht-heading-6, .utrecht-html h6 {
810
+ color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
811
+ font-family: var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
812
+ font-size: var(--utrecht-heading-6-font-size);
813
+ font-weight: var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));
814
+ letter-spacing: var(--utrecht-heading-6-letter-spacing);
815
+ line-height: var(--utrecht-heading-6-line-height);
816
+ margin-block-end: 0;
817
+ margin-block-start: 0;
818
+ text-transform: var(--utrecht-heading-6-text-transform, inherit);
819
+ }
820
+
821
+ .utrecht-heading-6--distanced, .utrecht-html h6 {
822
+ margin-block-end: var(--utrecht-heading-6-margin-block-end);
823
+ margin-block-start: var(--utrecht-heading-6-margin-block-start);
824
+ }
825
+
826
+ /**
827
+ * @license EUPL-1.2
828
+ * Copyright (c) 2021 Robbert Broersma
829
+ */
830
+ /**
831
+ * @license EUPL-1.2
832
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
833
+ * Copyright (c) 2021 Gemeente Utrecht
834
+ */
835
+ .utrecht-link, .utrecht-html a:link {
836
+ color: var(--utrecht-link-color, blue);
837
+ text-decoration: var(--utrecht-link-text-decoration, underline);
838
+ }
839
+
840
+ .utrecht-link:visited,
841
+ .utrecht-link--visited,
842
+ .utrecht-html a:visited {
843
+ color: var(--utrecht-link-visited-color, var(--utrecht-link-color));
844
+ }
845
+
846
+ .utrecht-link:hover,
847
+ .utrecht-link--hover,
848
+ .utrecht-html a:hover {
849
+ color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
850
+ text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
851
+ }
852
+
853
+ .utrecht-link:active,
854
+ .utrecht-link--active,
855
+ .utrecht-html a:active {
856
+ color: var(--utrecht-link-active-color, var(--utrecht-link-color));
857
+ }
858
+
859
+ .utrecht-link:focus,
860
+ .utrecht-link--focus,
861
+ .utrecht-html a:focus {
862
+ background-color: var(--utrecht-focus-background-color);
863
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
864
+ color: var(--utrecht-focus-color, inherit);
865
+ outline-color: var(--utrecht-focus-outline-color, transparent);
866
+ outline-offset: 0;
867
+ outline-style: var(--utrecht-focus-outline-style, solid);
868
+ outline-width: var(--utrecht-focus-outline-width, 0);
869
+ color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
870
+ text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
871
+ }
872
+
873
+ /* stylelint-disable-next-line block-no-empty */
874
+ .utrecht-link--telephone, .utrecht-html a[href^="tel:" i] {
875
+ white-space: nowrap;
876
+ }
877
+
878
+ /**
879
+ * @license EUPL-1.2
880
+ * Copyright (c) 2021 Robbert Broersma
881
+ */
882
+ /**
883
+ * @license EUPL-1.2
884
+ * Copyright (c) 2021 Robbert Broersma
885
+ * Copyright (c) 2021 Gemeente Utrecht
886
+ */
887
+ .utrecht-ordered-list, .utrecht-html ol {
888
+ font-family: var(--utrecht-document-font-family, inherit);
889
+ margin-block-end: 0;
890
+ margin-block-start: 0;
891
+ padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
892
+ }
893
+
894
+ .utrecht-ordered-list--distanced, .utrecht-html ol {
895
+ margin-block-end: var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));
896
+ margin-block-start: var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start));
897
+ }
898
+
899
+ .utrecht-ordered-list__item, .utrecht-html ol > li {
900
+ margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
901
+ margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
902
+ padding-inline-start: var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch));
903
+ }
904
+
905
+ /**
906
+ * @license EUPL-1.2
907
+ * Copyright (c) 2021 Robbert Broersma
908
+ */
909
+ /**
910
+ * @license EUPL-1.2
911
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
912
+ */
913
+ .utrecht-paragraph, .utrecht-html p {
914
+ color: var(--utrecht-document-color, inherit);
915
+ font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
916
+ font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
917
+ font-weight: var(--utrecht-paragraph-font-weight, inherit);
918
+ line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
919
+ margin-block-end: 0;
920
+ margin-block-start: 0;
921
+ }
922
+
923
+ .utrecht-paragraph--lead, .utrecht-html p.lead {
924
+ color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
925
+ font-size: var(--utrecht-paragraph-lead-font-size, inherit);
926
+ font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
927
+ line-height: var(--utrecht-paragraph-lead-line-height, inherit);
928
+ }
929
+
930
+ .utrecht-paragraph--distanced, .utrecht-html * ~ p {
931
+ margin-block-end: var(--utrecht-paragraph-margin-block-end);
932
+ margin-block-start: var(--utrecht-paragraph-margin-block-start);
933
+ }
934
+
935
+ /* stylelint-disable selector-class-pattern */
936
+ /**
937
+ * @license EUPL-1.2
938
+ * Copyright (c) 2021 Gemeente Utrecht
939
+ */
940
+ /**
941
+ * @license EUPL-1.2
942
+ * Copyright (c) 2021 Gemeente Utrecht
943
+ */
944
+ .utrecht-radio-button, .utrecht-html input[type=radio] {
945
+ margin-block-end: 0;
946
+ /* reset native margin for input[type="radio"] */
947
+ margin-block-start: 0;
948
+ margin-inline-end: 0;
949
+ margin-inline-start: 0;
950
+ }
951
+
952
+ /* stylelint-disable-next-line block-no-empty */
953
+ .utrecht-radio-button--disabled {
954
+ cursor: var(--utrecht-action-disabled-cursor);
955
+ }
956
+
957
+ /**
958
+ * @license EUPL-1.2
959
+ * Copyright (c) 2021 Robbert Broersma
960
+ */
961
+ /**
962
+ * @license EUPL-1.2
963
+ * Copyright (c) 2021 Gemeente Utrecht
964
+ * Copyright (c) 2021 Robbert Broersma
965
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
966
+ */
967
+ .utrecht-separator, .utrecht-html hr {
968
+ border-color: var(--utrecht-separator-color);
969
+ border-style: solid;
970
+ border-width: 0 0 var(--utrecht-separator-block-size) 0;
971
+ }
972
+
973
+ .utrecht-separator--distanced, .utrecht-html hr {
974
+ margin-block-end: var(--utrecht-separator-margin-block-end);
975
+ margin-block-start: var(--utrecht-separator-margin-block-start);
976
+ }
977
+
978
+ /**
979
+ * @license EUPL-1.2
980
+ * Copyright (c) 2021 Robbert Broersma
981
+ */
982
+ /**
983
+ * @license EUPL-1.2
984
+ * Copyright (c) 2021 Robbert Broersma
985
+ */
986
+ .utrecht-table, .utrecht-html table {
987
+ border-collapse: collapse;
988
+ border-color: var(--utrecht-table-border-color, 0);
989
+ border-style: solid;
990
+ border-width: var(--utrecht-table-border-width, 0);
991
+ font-family: var(--utrecht-table-font-family, var(--utrecht-document-font-family));
992
+ font-size: var(--utrecht-table-font-size, inherit);
993
+ width: 100%;
994
+ }
995
+
996
+ .utrecht-table--distanced, .utrecht-html table {
997
+ margin-block-end: var(--utrecht-table-margin-block-end);
998
+ margin-block-start: var(--utrecht-table-margin-block-start);
999
+ }
1000
+
1001
+ .utrecht-table__caption, .utrecht-html caption {
1002
+ color: var(--utrecht-table-caption-color);
1003
+ font-family: var(--utrecht-table-caption-font-family);
1004
+ font-size: var(--utrecht-table-caption-font-size);
1005
+ font-weight: var(--utrecht-table-caption-font-weight);
1006
+ line-height: var(--utrecht-table-caption-line-height);
1007
+ margin-block-end: var(--utrecht-table-caption-margin-block-end);
1008
+ text-align: var(--utrecht-table-caption-text-align, center);
1009
+ }
1010
+
1011
+ .utrecht-table__header, .utrecht-html thead {
1012
+ color: var(--utrecht-table-header-color);
1013
+ font-weight: var(--utrecht-table-header-font-weight);
1014
+ text-transform: var(--utrecht-table-header-text-transform);
1015
+ vertical-align: bottom;
1016
+ }
1017
+
1018
+ .utrecht-table__cell--last-header-row, .utrecht-html thead tr:last-child th {
1019
+ border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
1020
+ border-block-end-style: solid;
1021
+ border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
1022
+ }
1023
+
1024
+ .utrecht-table__body, .utrecht-html tbody {
1025
+ vertical-align: baseline;
1026
+ }
1027
+
1028
+ .utrecht-table__heading, .utrecht-html th {
1029
+ color: var(--utrecht-table-heading-color);
1030
+ font-size: var(--utrecht-table-heading-font-size);
1031
+ font-weight: var(--utrecht-table-heading-font-weight);
1032
+ text-transform: var(--utrecht-table-heading-text-transform);
1033
+ }
1034
+
1035
+ .utrecht-table__cell, .utrecht-html th,
1036
+ .utrecht-html td {
1037
+ border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
1038
+ border-block-end-style: solid;
1039
+ border-block-end-width: var(--utrecht-table-row-border-block-end-width, 0);
1040
+ line-height: var(--utrecht-table-cell-line-height, inherit);
1041
+ padding-block-end: var(--utrecht-table-cell-padding-block-end, 0);
1042
+ padding-block-start: var(--utrecht-table-cell-padding-block-start, 0);
1043
+ padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
1044
+ padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
1045
+ text-align: start;
1046
+ }
1047
+
1048
+ .utrecht-table__cell--first, .utrecht-html td:first-child,
1049
+ .utrecht-html th:first-child {
1050
+ padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
1051
+ }
1052
+
1053
+ .utrecht-table__cell--last, .utrecht-html td:last-child,
1054
+ .utrecht-html th:last-child {
1055
+ padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
1056
+ }
1057
+
1058
+ .utrecht-table__cell--numeric, .utrecht-html th.numeric,
1059
+ .utrecht-html td.numeric {
1060
+ /* stylelint-disable-next-line declaration-property-value-disallowed-list */
1061
+ text-align: right;
1062
+ }
1063
+
1064
+ .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 {
1065
+ background-color: var(--utrecht-table-row-alternate-odd-background-color);
1066
+ color: var(--utrecht-table-row-alternate-odd-color);
1067
+ }
1068
+
1069
+ .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 {
1070
+ background-color: var(--utrecht-table-row-alternate-even-background-color);
1071
+ color: var(--utrecht-table-row-alternate-even-color);
1072
+ }
1073
+
1074
+ /* stylelint-disable selector-class-pattern */
1075
+ /**
1076
+ * @license EUPL-1.2
1077
+ * Copyright (c) 2021 Robbert Broersma
1078
+ */
1079
+ /**
1080
+ * @license EUPL-1.2
1081
+ * Copyright (c) 2021 Robbert Broersma
1082
+ */
1083
+ .utrecht-textarea, .utrecht-html textarea {
1084
+ background-color: var(--utrecht-textarea-background-color, var(--form-input-textarea-background-color));
1085
+ border-width: var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));
1086
+ border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));
1087
+ border-color: var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));
1088
+ border-radius: var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));
1089
+ border-style: solid;
1090
+ color: var(--utrecht-textarea-color, var(--form-input-textarea-color));
1091
+ font-family: var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));
1092
+ font-size: var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));
1093
+ max-inline-size: var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));
1094
+ min-block-size: var(--utrecht-textarea-min-block-size);
1095
+ padding-block-end: var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));
1096
+ padding-block-start: var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));
1097
+ padding-inline-end: var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
1098
+ padding-inline-start: var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
1099
+ resize: vertical;
1100
+ width: 100%;
1101
+ }
1102
+
1103
+ .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] {
1104
+ 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))));
1105
+ 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))));
1106
+ 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))));
1107
+ }
1108
+
1109
+ .utrecht-textarea--disabled, .utrecht-textarea--html-textarea:disabled, .utrecht-html textarea:disabled {
1110
+ 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))));
1111
+ 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))));
1112
+ color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1113
+ cursor: var(--utrecht-action-disabled-cursor);
1114
+ }
1115
+
1116
+ .utrecht-textarea--focus, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
1117
+ background-color: var(--utrecht-focus-background-color);
1118
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1119
+ color: var(--utrecht-focus-color, inherit);
1120
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1121
+ outline-offset: 0;
1122
+ outline-style: var(--utrecht-focus-outline-style, solid);
1123
+ outline-width: var(--utrecht-focus-outline-width, 0);
1124
+ 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))));
1125
+ 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))));
1126
+ color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1127
+ }
1128
+
1129
+ .utrecht-textarea--read-only, .utrecht-textarea--html-textarea:read-only, .utrecht-html textarea:read-only {
1130
+ 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))));
1131
+ color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1132
+ }
1133
+
1134
+ .utrecht-textarea__placeholder, .utrecht-textarea--html-textarea::placeholder, .utrecht-html textarea::placeholder {
1135
+ color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1136
+ opacity: 100%;
1137
+ }
1138
+
1139
+ /**
1140
+ * @license EUPL-1.2
1141
+ * Copyright (c) 2021 Robbert Broersma
1142
+ */
1143
+ /**
1144
+ * @license EUPL-1.2
1145
+ * Copyright (c) 2021 Robbert Broersma
1146
+ */
1147
+ .utrecht-textbox, .utrecht-html input:not([type]),
1148
+ .utrecht-html input[type=email],
1149
+ .utrecht-html input[type=number],
1150
+ .utrecht-html input[type=password],
1151
+ .utrecht-html input[type=search],
1152
+ .utrecht-html input[type=tel],
1153
+ .utrecht-html input[type=text],
1154
+ .utrecht-html input[type=url] {
1155
+ background-color: var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));
1156
+ border-width: var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));
1157
+ border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));
1158
+ border-color: var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));
1159
+ border-radius: var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));
1160
+ border-style: solid;
1161
+ box-sizing: border-box;
1162
+ color: var(--utrecht-textbox-color, var(--utrecht-form-input-color));
1163
+ font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));
1164
+ font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));
1165
+ max-inline-size: var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));
1166
+ padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));
1167
+ padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));
1168
+ padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
1169
+ padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
1170
+ width: 100%;
1171
+ }
1172
+
1173
+ .utrecht-textbox--invalid, .utrecht-textbox--html-input:invalid, .utrecht-html input:invalid:not([type]),
1174
+ .utrecht-html input[type=email]:invalid,
1175
+ .utrecht-html input[type=number]:invalid,
1176
+ .utrecht-html input[type=password]:invalid,
1177
+ .utrecht-html input[type=search]:invalid,
1178
+ .utrecht-html input[type=tel]:invalid,
1179
+ .utrecht-html input[type=text]:invalid,
1180
+ .utrecht-html input[type=url]:invalid, .utrecht-textbox--html-input[aria-invalid=true], .utrecht-html input[aria-invalid=true]:not([type]),
1181
+ .utrecht-html input[aria-invalid=true][type=email],
1182
+ .utrecht-html input[aria-invalid=true][type=number],
1183
+ .utrecht-html input[aria-invalid=true][type=password],
1184
+ .utrecht-html input[aria-invalid=true][type=search],
1185
+ .utrecht-html input[aria-invalid=true][type=tel],
1186
+ .utrecht-html input[aria-invalid=true][type=text],
1187
+ .utrecht-html input[aria-invalid=true][type=url] {
1188
+ 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))));
1189
+ 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))));
1190
+ 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))));
1191
+ }
1192
+
1193
+ .utrecht-textbox--disabled, .utrecht-textbox--html-input:disabled, .utrecht-html input:disabled:not([type]),
1194
+ .utrecht-html input[type=email]:disabled,
1195
+ .utrecht-html input[type=number]:disabled,
1196
+ .utrecht-html input[type=password]:disabled,
354
1197
  .utrecht-html input[type=search]:disabled,
355
1198
  .utrecht-html input[type=tel]:disabled,
1199
+ .utrecht-html input[type=text]:disabled,
356
1200
  .utrecht-html input[type=url]:disabled {
357
- border-color: var(--utrecht-textbox-disabled-border-color);
358
- color: var(--utrecht-textbox-disabled-color);
1201
+ 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))));
1202
+ 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))));
1203
+ color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1204
+ cursor: var(--utrecht-action-disabled-cursor);
1205
+ }
1206
+
1207
+ .utrecht-textbox--focus, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
1208
+ .utrecht-html input[type=email]:focus,
1209
+ .utrecht-html input[type=number]:focus,
1210
+ .utrecht-html input[type=password]:focus,
1211
+ .utrecht-html input[type=search]:focus,
1212
+ .utrecht-html input[type=tel]:focus,
1213
+ .utrecht-html input[type=text]:focus,
1214
+ .utrecht-html input[type=url]:focus {
1215
+ background-color: var(--utrecht-focus-background-color);
1216
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1217
+ color: var(--utrecht-focus-color, inherit);
1218
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1219
+ outline-offset: 0;
1220
+ outline-style: var(--utrecht-focus-outline-style, solid);
1221
+ outline-width: var(--utrecht-focus-outline-width, 0);
1222
+ 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))));
1223
+ 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))));
1224
+ color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
359
1225
  }
360
1226
 
361
- .utrecht-textbox--read-only, .utrecht-html input[type=text]:read-only,
1227
+ .utrecht-textbox--read-only, .utrecht-textbox--html-input:read-only, .utrecht-html input:read-only:not([type]),
362
1228
  .utrecht-html input[type=email]:read-only,
1229
+ .utrecht-html input[type=number]:read-only,
1230
+ .utrecht-html input[type=password]:read-only,
363
1231
  .utrecht-html input[type=search]:read-only,
364
1232
  .utrecht-html input[type=tel]:read-only,
1233
+ .utrecht-html input[type=text]:read-only,
365
1234
  .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);
1235
+ 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))));
1236
+ color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
1237
+ }
1238
+
1239
+ .utrecht-textbox__placeholder, .utrecht-textbox--html-input::placeholder, .utrecht-html input:not([type])::placeholder,
1240
+ .utrecht-html input[type=email]::placeholder,
1241
+ .utrecht-html input[type=number]::placeholder,
1242
+ .utrecht-html input[type=password]::placeholder,
1243
+ .utrecht-html input[type=search]::placeholder,
1244
+ .utrecht-html input[type=tel]::placeholder,
1245
+ .utrecht-html input[type=text]::placeholder,
1246
+ .utrecht-html input[type=url]::placeholder {
1247
+ color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
1248
+ opacity: 100%;
368
1249
  }
369
1250
 
370
1251
  /**
@@ -374,13 +1255,37 @@
374
1255
  /**
375
1256
  * @license EUPL-1.2
376
1257
  * Copyright (c) 2021 Robbert Broersma
1258
+ * Copyright (c) 2021 Gemeente Utrecht
377
1259
  */
378
- .utrecht-checkbox, .utrecht-html input[type=checkbox] {
379
- /* reset native margin for input[type="checkbox"] */
1260
+ .utrecht-unordered-list, .utrecht-html ul {
1261
+ font-family: var(--utrecht-document-font-family, inherit);
1262
+ font-size: var(--utrecht-document-font-size, inherit);
1263
+ line-height: var(--utrecht-document-line-height, inherit);
1264
+ margin-block-end: 0;
380
1265
  margin-block-start: 0;
1266
+ padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
1267
+ }
1268
+
1269
+ .utrecht-unordered-list--distanced, .utrecht-html ul {
1270
+ margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
1271
+ margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
1272
+ }
1273
+
1274
+ .utrecht-unordered-list--nested {
381
1275
  margin-block-end: 0;
382
- margin-inline-start: 0;
383
- margin-inline-end: 0;
1276
+ margin-inline-start: 2ch;
1277
+ }
1278
+
1279
+ .utrecht-unordered-list__item, .utrecht-html ul > li {
1280
+ margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
1281
+ margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
1282
+ padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
1283
+ }
1284
+
1285
+ .utrecht-unordered-list__item::marker, .utrecht-html ul > li::marker,
1286
+ .utrecht-unordered-list__marker {
1287
+ color: var(--utrecht-unordered-list-marker-color);
1288
+ content: "●";
384
1289
  }
385
1290
 
386
1291
  /**
@@ -393,8 +1298,8 @@
393
1298
  * Copyright (c) 2021 Gemeente Utrecht
394
1299
  */
395
1300
  .utrecht-link, .utrecht-html a:link {
396
- text-decoration: var(--utrecht-link-text-decoration, underline);
397
1301
  color: var(--utrecht-link-color, blue);
1302
+ text-decoration: var(--utrecht-link-text-decoration, underline);
398
1303
  }
399
1304
 
400
1305
  .utrecht-link:visited,
@@ -419,17 +1324,18 @@
419
1324
  .utrecht-link:focus,
420
1325
  .utrecht-link--focus,
421
1326
  .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);
1327
+ background-color: var(--utrecht-focus-background-color);
428
1328
  box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1329
+ color: var(--utrecht-focus-color, inherit);
1330
+ outline-color: var(--utrecht-focus-outline-color, transparent);
429
1331
  outline-offset: 0;
430
- background-color: var(--utrecht-focus-background-color);
1332
+ outline-style: var(--utrecht-focus-outline-style, solid);
1333
+ outline-width: var(--utrecht-focus-outline-width, 0);
1334
+ color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
1335
+ text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
431
1336
  }
432
1337
 
1338
+ /* stylelint-disable-next-line block-no-empty */
433
1339
  .utrecht-link--telephone, .utrecht-html a[href^="tel:" i] {
434
1340
  white-space: nowrap;
435
1341
  }
@@ -440,16 +1346,436 @@
440
1346
  */
441
1347
  /**
442
1348
  * @license EUPL-1.2
1349
+ * Copyright (c) 2021 Robbert Broersma
443
1350
  * Copyright (c) 2021 Gemeente Utrecht
1351
+ */
1352
+ .utrecht-ordered-list, .utrecht-html ol {
1353
+ font-family: var(--utrecht-document-font-family, inherit);
1354
+ margin-block-end: 0;
1355
+ margin-block-start: 0;
1356
+ padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
1357
+ }
1358
+
1359
+ .utrecht-ordered-list--distanced, .utrecht-html ol {
1360
+ margin-block-end: var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));
1361
+ margin-block-start: var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start));
1362
+ }
1363
+
1364
+ .utrecht-ordered-list__item, .utrecht-html ol > li {
1365
+ margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
1366
+ margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
1367
+ padding-inline-start: var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch));
1368
+ }
1369
+
1370
+ /**
1371
+ * @license EUPL-1.2
444
1372
  * Copyright (c) 2021 Robbert Broersma
1373
+ */
1374
+ /**
1375
+ * @license EUPL-1.2
445
1376
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
446
1377
  */
447
- .utrecht-separator, .utrecht-html hr {
1378
+ .utrecht-paragraph, .utrecht-html p {
1379
+ color: var(--utrecht-document-color, inherit);
1380
+ font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
1381
+ font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
1382
+ font-weight: var(--utrecht-paragraph-font-weight, inherit);
1383
+ line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
1384
+ margin-block-end: 0;
1385
+ margin-block-start: 0;
1386
+ }
1387
+
1388
+ .utrecht-paragraph--lead, .utrecht-html p.lead {
1389
+ color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
1390
+ font-size: var(--utrecht-paragraph-lead-font-size, inherit);
1391
+ font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
1392
+ line-height: var(--utrecht-paragraph-lead-line-height, inherit);
1393
+ }
1394
+
1395
+ .utrecht-paragraph--distanced, .utrecht-html * ~ p {
1396
+ margin-block-end: var(--utrecht-paragraph-margin-block-end);
1397
+ margin-block-start: var(--utrecht-paragraph-margin-block-start);
1398
+ }
1399
+
1400
+ /* stylelint-disable selector-class-pattern */
1401
+ /**
1402
+ * @license EUPL-1.2
1403
+ * Copyright (c) 2021 Gemeente Utrecht
1404
+ */
1405
+ /**
1406
+ * @license EUPL-1.2
1407
+ * Copyright (c) 2021 Gemeente Utrecht
1408
+ */
1409
+ .utrecht-radio-button, .utrecht-html input[type=radio] {
1410
+ margin-block-end: 0;
1411
+ /* reset native margin for input[type="radio"] */
1412
+ margin-block-start: 0;
1413
+ margin-inline-end: 0;
1414
+ margin-inline-start: 0;
1415
+ }
1416
+
1417
+ /* stylelint-disable-next-line block-no-empty */
1418
+ .utrecht-radio-button--disabled {
1419
+ cursor: var(--utrecht-action-disabled-cursor);
1420
+ }
1421
+
1422
+ /**
1423
+ * @license EUPL-1.2
1424
+ * Copyright (c) 2021 Robbert Broersma
1425
+ */
1426
+ /**
1427
+ * @license EUPL-1.2
1428
+ * Copyright (c) 2021 Robbert Broersma
1429
+ */
1430
+ .utrecht-select, .utrecht-html select {
1431
+ -moz-appearance: none;
1432
+ -webkit-appearance: none;
1433
+ appearance: none;
1434
+ background-color: var(--utrecht-select-background-color, var(--utrecht-form-input-background-color));
1435
+ background-image: var(--utrecht-select-background-image);
1436
+ background-position: 100%;
1437
+ background-repeat: no-repeat;
1438
+ background-size: 1.4em;
1439
+ border-block-end-width: var(--utrecht-select-border-block-end-width, var(--utrecht-select-border-width, var(--utrecht-form-input-border-width)));
1440
+ border-block-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
1441
+ border-color: var(--utrecht-select-border-color, var(--utrecht-form-input-border-color));
1442
+ border-inline-end-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
1443
+ border-inline-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
1444
+ border-radius: var(--utrecht-select-border-radius, var(--utrecht-form-input-border-radius, 0));
448
1445
  border-style: solid;
1446
+ color: var(--utrecht-select-color, var(--utrecht-form-input-color));
1447
+ font-family: var(--utrecht-select-font-family, var(--utrecht-form-input-font-family));
1448
+ font-size: var(--utrecht-select-font-size, var(--utrecht-form-input-font-size));
1449
+ max-inline-size: var(--utrecht-select-max-inline-size, var(--utrecht-form-input-max-inline-size));
1450
+ padding-block-end: var(--utrecht-select-padding-block-end, var(--utrecht-form-input-padding-block-end));
1451
+ padding-block-start: var(--utrecht-select-padding-block-start, var(--utrecht-form-input-padding-block-start));
1452
+ padding-inline-end: var(--utrecht-select-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
1453
+ padding-inline-start: var(--utrecht-select-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
1454
+ width: 100%;
1455
+ }
1456
+
1457
+ .utrecht-select--disabled, .utrecht-select--html-select:disabled, .utrecht-html select:disabled {
1458
+ 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))));
1459
+ 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))));
1460
+ color: var(--utrecht-select-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
1461
+ cursor: var(--utrecht-action-disabled-cursor);
1462
+ }
1463
+
1464
+ .utrecht-select--focus, .utrecht-select--html-select:focus, .utrecht-html select:focus {
1465
+ background-color: var(--utrecht-focus-background-color);
1466
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1467
+ color: var(--utrecht-focus-color, inherit);
1468
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1469
+ outline-offset: 0;
1470
+ outline-style: var(--utrecht-focus-outline-style, solid);
1471
+ outline-width: var(--utrecht-focus-outline-width, 0);
1472
+ 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))));
1473
+ 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))));
1474
+ color: var(--utrecht-select-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
1475
+ }
1476
+
1477
+ .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] {
1478
+ 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))));
1479
+ 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))));
1480
+ 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))));
1481
+ }
1482
+
1483
+ /* stylelint-disable-next-line block-no-empty */
1484
+ .utrecht-select--html-select, .utrecht-html select {
1485
+ /* <select> does not support :read-only */
1486
+ }
1487
+ /**
1488
+ * @license EUPL-1.2
1489
+ * Copyright (c) 2021 Robbert Broersma
1490
+ */
1491
+ /**
1492
+ * @license EUPL-1.2
1493
+ * Copyright (c) 2021 Gemeente Utrecht
1494
+ * Copyright (c) 2021 Robbert Broersma
1495
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
1496
+ */
1497
+ .utrecht-separator, .utrecht-html hr {
449
1498
  border-color: var(--utrecht-separator-color);
450
- border-width: 0 0 var(--utrecht-separator-width) 0;
451
- margin-block-start: var(--utrecht-separator-margin-block-start);
1499
+ border-style: solid;
1500
+ border-width: 0 0 var(--utrecht-separator-block-size) 0;
1501
+ }
1502
+
1503
+ .utrecht-separator--distanced, .utrecht-html hr {
452
1504
  margin-block-end: var(--utrecht-separator-margin-block-end);
1505
+ margin-block-start: var(--utrecht-separator-margin-block-start);
1506
+ }
1507
+
1508
+ /**
1509
+ * @license EUPL-1.2
1510
+ * Copyright (c) 2021 Robbert Broersma
1511
+ */
1512
+ /**
1513
+ * @license EUPL-1.2
1514
+ * Copyright (c) 2021 Robbert Broersma
1515
+ */
1516
+ .utrecht-table, .utrecht-html table {
1517
+ border-collapse: collapse;
1518
+ border-color: var(--utrecht-table-border-color, 0);
1519
+ border-style: solid;
1520
+ border-width: var(--utrecht-table-border-width, 0);
1521
+ font-family: var(--utrecht-table-font-family, var(--utrecht-document-font-family));
1522
+ font-size: var(--utrecht-table-font-size, inherit);
1523
+ width: 100%;
1524
+ }
1525
+
1526
+ .utrecht-table--distanced, .utrecht-html table {
1527
+ margin-block-end: var(--utrecht-table-margin-block-end);
1528
+ margin-block-start: var(--utrecht-table-margin-block-start);
1529
+ }
1530
+
1531
+ .utrecht-table__caption, .utrecht-html caption {
1532
+ color: var(--utrecht-table-caption-color);
1533
+ font-family: var(--utrecht-table-caption-font-family);
1534
+ font-size: var(--utrecht-table-caption-font-size);
1535
+ font-weight: var(--utrecht-table-caption-font-weight);
1536
+ line-height: var(--utrecht-table-caption-line-height);
1537
+ margin-block-end: var(--utrecht-table-caption-margin-block-end);
1538
+ text-align: var(--utrecht-table-caption-text-align, center);
1539
+ }
1540
+
1541
+ .utrecht-table__header, .utrecht-html thead {
1542
+ color: var(--utrecht-table-header-color);
1543
+ font-weight: var(--utrecht-table-header-font-weight);
1544
+ text-transform: var(--utrecht-table-header-text-transform);
1545
+ vertical-align: bottom;
1546
+ }
1547
+
1548
+ .utrecht-table__cell--last-header-row, .utrecht-html thead tr:last-child th {
1549
+ border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
1550
+ border-block-end-style: solid;
1551
+ border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
1552
+ }
1553
+
1554
+ .utrecht-table__body, .utrecht-html tbody {
1555
+ vertical-align: baseline;
1556
+ }
1557
+
1558
+ .utrecht-table__heading, .utrecht-html th {
1559
+ color: var(--utrecht-table-heading-color);
1560
+ font-size: var(--utrecht-table-heading-font-size);
1561
+ font-weight: var(--utrecht-table-heading-font-weight);
1562
+ text-transform: var(--utrecht-table-heading-text-transform);
1563
+ }
1564
+
1565
+ .utrecht-table__cell, .utrecht-html th,
1566
+ .utrecht-html td {
1567
+ border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
1568
+ border-block-end-style: solid;
1569
+ border-block-end-width: var(--utrecht-table-row-border-block-end-width, 0);
1570
+ line-height: var(--utrecht-table-cell-line-height, inherit);
1571
+ padding-block-end: var(--utrecht-table-cell-padding-block-end, 0);
1572
+ padding-block-start: var(--utrecht-table-cell-padding-block-start, 0);
1573
+ padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
1574
+ padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
1575
+ text-align: start;
1576
+ }
1577
+
1578
+ .utrecht-table__cell--first, .utrecht-html td:first-child,
1579
+ .utrecht-html th:first-child {
1580
+ padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
1581
+ }
1582
+
1583
+ .utrecht-table__cell--last, .utrecht-html td:last-child,
1584
+ .utrecht-html th:last-child {
1585
+ padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
1586
+ }
1587
+
1588
+ .utrecht-table__cell--numeric, .utrecht-html th.numeric,
1589
+ .utrecht-html td.numeric {
1590
+ /* stylelint-disable-next-line declaration-property-value-disallowed-list */
1591
+ text-align: right;
1592
+ }
1593
+
1594
+ .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 {
1595
+ background-color: var(--utrecht-table-row-alternate-odd-background-color);
1596
+ color: var(--utrecht-table-row-alternate-odd-color);
1597
+ }
1598
+
1599
+ .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 {
1600
+ background-color: var(--utrecht-table-row-alternate-even-background-color);
1601
+ color: var(--utrecht-table-row-alternate-even-color);
1602
+ }
1603
+
1604
+ /* stylelint-disable selector-class-pattern */
1605
+ /**
1606
+ * @license EUPL-1.2
1607
+ * Copyright (c) 2021 Robbert Broersma
1608
+ */
1609
+ /**
1610
+ * @license EUPL-1.2
1611
+ * Copyright (c) 2021 Robbert Broersma
1612
+ */
1613
+ .utrecht-textarea, .utrecht-html textarea {
1614
+ background-color: var(--utrecht-textarea-background-color, var(--form-input-textarea-background-color));
1615
+ border-width: var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));
1616
+ border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));
1617
+ border-color: var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));
1618
+ border-radius: var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));
1619
+ border-style: solid;
1620
+ color: var(--utrecht-textarea-color, var(--form-input-textarea-color));
1621
+ font-family: var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));
1622
+ font-size: var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));
1623
+ max-inline-size: var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));
1624
+ min-block-size: var(--utrecht-textarea-min-block-size);
1625
+ padding-block-end: var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));
1626
+ padding-block-start: var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));
1627
+ padding-inline-end: var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
1628
+ padding-inline-start: var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
1629
+ resize: vertical;
1630
+ width: 100%;
1631
+ }
1632
+
1633
+ .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] {
1634
+ 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))));
1635
+ 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))));
1636
+ 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))));
1637
+ }
1638
+
1639
+ .utrecht-textarea--disabled, .utrecht-textarea--html-textarea:disabled, .utrecht-html textarea:disabled {
1640
+ 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))));
1641
+ 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))));
1642
+ color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1643
+ cursor: var(--utrecht-action-disabled-cursor);
1644
+ }
1645
+
1646
+ .utrecht-textarea--focus, .utrecht-textarea--html-textarea:focus, .utrecht-html textarea:focus {
1647
+ background-color: var(--utrecht-focus-background-color);
1648
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1649
+ color: var(--utrecht-focus-color, inherit);
1650
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1651
+ outline-offset: 0;
1652
+ outline-style: var(--utrecht-focus-outline-style, solid);
1653
+ outline-width: var(--utrecht-focus-outline-width, 0);
1654
+ 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))));
1655
+ 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))));
1656
+ color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1657
+ }
1658
+
1659
+ .utrecht-textarea--read-only, .utrecht-textarea--html-textarea:read-only, .utrecht-html textarea:read-only {
1660
+ 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))));
1661
+ color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1662
+ }
1663
+
1664
+ .utrecht-textarea__placeholder, .utrecht-textarea--html-textarea::placeholder, .utrecht-html textarea::placeholder {
1665
+ color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1666
+ opacity: 100%;
1667
+ }
1668
+
1669
+ /**
1670
+ * @license EUPL-1.2
1671
+ * Copyright (c) 2021 Robbert Broersma
1672
+ */
1673
+ /**
1674
+ * @license EUPL-1.2
1675
+ * Copyright (c) 2021 Robbert Broersma
1676
+ */
1677
+ .utrecht-textbox, .utrecht-html input:not([type]),
1678
+ .utrecht-html input[type=email],
1679
+ .utrecht-html input[type=number],
1680
+ .utrecht-html input[type=password],
1681
+ .utrecht-html input[type=search],
1682
+ .utrecht-html input[type=tel],
1683
+ .utrecht-html input[type=text],
1684
+ .utrecht-html input[type=url] {
1685
+ background-color: var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));
1686
+ border-width: var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));
1687
+ border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));
1688
+ border-color: var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));
1689
+ border-radius: var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));
1690
+ border-style: solid;
1691
+ box-sizing: border-box;
1692
+ color: var(--utrecht-textbox-color, var(--utrecht-form-input-color));
1693
+ font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));
1694
+ font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));
1695
+ max-inline-size: var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));
1696
+ padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));
1697
+ padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));
1698
+ padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
1699
+ padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
1700
+ width: 100%;
1701
+ }
1702
+
1703
+ .utrecht-textbox--invalid, .utrecht-textbox--html-input:invalid, .utrecht-textbox--html-input[aria-invalid=true], .utrecht-html input:invalid:not([type]),
1704
+ .utrecht-html input[type=email]:invalid,
1705
+ .utrecht-html input[type=number]:invalid,
1706
+ .utrecht-html input[type=password]:invalid,
1707
+ .utrecht-html input[type=search]:invalid,
1708
+ .utrecht-html input[type=tel]:invalid,
1709
+ .utrecht-html input[type=text]:invalid,
1710
+ .utrecht-html input[type=url]:invalid, .utrecht-html input[aria-invalid=true]:not([type]),
1711
+ .utrecht-html input[aria-invalid=true][type=email],
1712
+ .utrecht-html input[aria-invalid=true][type=number],
1713
+ .utrecht-html input[aria-invalid=true][type=password],
1714
+ .utrecht-html input[aria-invalid=true][type=search],
1715
+ .utrecht-html input[aria-invalid=true][type=tel],
1716
+ .utrecht-html input[aria-invalid=true][type=text],
1717
+ .utrecht-html input[aria-invalid=true][type=url] {
1718
+ 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))));
1719
+ 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))));
1720
+ 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))));
1721
+ }
1722
+
1723
+ .utrecht-textbox--disabled, .utrecht-textbox--html-input:disabled, .utrecht-html input:disabled:not([type]),
1724
+ .utrecht-html input[type=email]:disabled,
1725
+ .utrecht-html input[type=number]:disabled,
1726
+ .utrecht-html input[type=password]:disabled,
1727
+ .utrecht-html input[type=search]:disabled,
1728
+ .utrecht-html input[type=tel]:disabled,
1729
+ .utrecht-html input[type=text]:disabled,
1730
+ .utrecht-html input[type=url]:disabled {
1731
+ 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))));
1732
+ 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))));
1733
+ color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1734
+ cursor: var(--utrecht-action-disabled-cursor);
1735
+ }
1736
+
1737
+ .utrecht-textbox--focus, .utrecht-textbox--html-input:focus, .utrecht-html input:focus:not([type]),
1738
+ .utrecht-html input[type=email]:focus,
1739
+ .utrecht-html input[type=number]:focus,
1740
+ .utrecht-html input[type=password]:focus,
1741
+ .utrecht-html input[type=search]:focus,
1742
+ .utrecht-html input[type=tel]:focus,
1743
+ .utrecht-html input[type=text]:focus,
1744
+ .utrecht-html input[type=url]:focus {
1745
+ background-color: var(--utrecht-focus-background-color);
1746
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1747
+ color: var(--utrecht-focus-color, inherit);
1748
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1749
+ outline-offset: 0;
1750
+ outline-style: var(--utrecht-focus-outline-style, solid);
1751
+ outline-width: var(--utrecht-focus-outline-width, 0);
1752
+ 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))));
1753
+ 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))));
1754
+ color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
1755
+ }
1756
+
1757
+ .utrecht-textbox--read-only, .utrecht-textbox--html-input:read-only, .utrecht-html input:read-only:not([type]),
1758
+ .utrecht-html input[type=email]:read-only,
1759
+ .utrecht-html input[type=number]:read-only,
1760
+ .utrecht-html input[type=password]:read-only,
1761
+ .utrecht-html input[type=search]:read-only,
1762
+ .utrecht-html input[type=tel]:read-only,
1763
+ .utrecht-html input[type=text]:read-only,
1764
+ .utrecht-html input[type=url]:read-only {
1765
+ 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))));
1766
+ color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
1767
+ }
1768
+
1769
+ .utrecht-textbox__placeholder, .utrecht-textbox--html-input::placeholder, .utrecht-html input:not([type])::placeholder,
1770
+ .utrecht-html input[type=email]::placeholder,
1771
+ .utrecht-html input[type=number]::placeholder,
1772
+ .utrecht-html input[type=password]::placeholder,
1773
+ .utrecht-html input[type=search]::placeholder,
1774
+ .utrecht-html input[type=tel]::placeholder,
1775
+ .utrecht-html input[type=text]::placeholder,
1776
+ .utrecht-html input[type=url]::placeholder {
1777
+ color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
1778
+ opacity: 100%;
453
1779
  }
454
1780
 
455
1781
  /**
@@ -465,23 +1791,25 @@
465
1791
  font-family: var(--utrecht-document-font-family, inherit);
466
1792
  font-size: var(--utrecht-document-font-size, inherit);
467
1793
  line-height: var(--utrecht-document-line-height, inherit);
468
- padding-inline-start: 2ch;
1794
+ margin-block-end: 0;
1795
+ margin-block-start: 0;
1796
+ padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
469
1797
  }
470
1798
 
471
1799
  .utrecht-unordered-list--distanced, .utrecht-html ul {
472
- margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
473
1800
  margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
1801
+ margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
474
1802
  }
475
1803
 
476
1804
  .utrecht-unordered-list--nested {
477
- margin-inline-start: 2ch;
478
1805
  margin-block-end: 0;
1806
+ margin-inline-start: 2ch;
479
1807
  }
480
1808
 
481
1809
  .utrecht-unordered-list__item, .utrecht-html ul > li {
482
- padding-inline-start: 1ch;
483
- margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
484
1810
  margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
1811
+ margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
1812
+ padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
485
1813
  }
486
1814
 
487
1815
  .utrecht-unordered-list__item::marker, .utrecht-html ul > li::marker,