@utrecht/component-library-css 1.0.0-alpha.26 → 1.0.0-alpha.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/dist/html.css +1043 -376
- package/dist/index.css +3109 -1118
- package/html-component.md +25 -0
- package/package.json +8 -4
- package/src/html.scss +1 -13
- package/src/index.scss +71 -7
- package/dist/bem.css +0 -523
- package/dist/root-theme.css +0 -497
- package/src/bem.scss +0 -35
- package/src/root-theme.scss +0 -9
package/dist/index.css
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
/**
|
|
3
|
-
* @license EUPL-1.2
|
|
4
|
-
* Copyright (c) 2021 Gemeente Utrecht
|
|
5
|
-
*/
|
|
6
|
-
/* Collection of:
|
|
7
|
-
* - all BEM class names in the component library
|
|
8
|
-
* - all semantic HTML styles in the component library
|
|
9
|
-
* - CSS variables for Utrecht theme applied to `:root`
|
|
10
|
-
*/
|
|
11
2
|
/**
|
|
12
3
|
* @license EUPL-1.2
|
|
13
4
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
@@ -27,499 +18,2558 @@
|
|
|
27
18
|
* @license EUPL-1.2
|
|
28
19
|
* Copyright (c) 2021 Robbert Broersma
|
|
29
20
|
*/
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
color: var(--utrecht-blockquote-attribution-color, inherit);
|
|
37
|
-
font-size: var(--utrecht-blockquote-attribution-font-size, inherit);
|
|
21
|
+
/**
|
|
22
|
+
* @license EUPL-1.2
|
|
23
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
24
|
+
*/
|
|
25
|
+
.utrecht-article {
|
|
26
|
+
max-inline-size: var(--utrecht-article-max-inline-size);
|
|
38
27
|
}
|
|
39
28
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
29
|
+
/**
|
|
30
|
+
* @license EUPL-1.2
|
|
31
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
32
|
+
*/
|
|
33
|
+
.utrecht-badge-counter {
|
|
34
|
+
background-color: var(--utrecht-badge-counter-background-color, var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%)));
|
|
35
|
+
border-radius: var(--utrecht-badge-counter-border-radius, var(--utrecht-badge-border-radius, 0.5ch));
|
|
36
|
+
color: var(--utrecht-badge-counter-color, var(--utrecht-badge-color, hsl(0deg, 0%, 100%)));
|
|
37
|
+
display: inline-block;
|
|
38
|
+
font-family: var(--utrecht-document-font-family, sans-serif);
|
|
39
|
+
font-style: var(--utrecht-badge-counter-font-style, normal);
|
|
40
|
+
/* no inheritance */
|
|
41
|
+
font-weight: var(--utrecht-badge-counter-font-weight, var(--utrecht-badge-font-weight, bold));
|
|
42
|
+
/* no inheritance */
|
|
43
|
+
padding-block-end: var(--utrecht-badge-counter-padding-block, var(--utrecht-badge-padding-block, 0.5ex));
|
|
44
|
+
padding-block-start: var(--utrecht-badge-counter-padding-block, var(--utrecht-badge-padding-block, 0.5ex));
|
|
45
|
+
padding-inline-end: var(--utrecht-badge-counter-padding-inline, var(--utrecht-badge-padding-inline, 0.5ch));
|
|
46
|
+
padding-inline-start: var(--utrecht-badge-counter-padding-inline, var(--utrecht-badge-padding-inline, 0.5ch));
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
/* no inheritance */
|
|
45
49
|
}
|
|
46
50
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
51
|
+
/**
|
|
52
|
+
* @license EUPL-1.2
|
|
53
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
54
|
+
*/
|
|
55
|
+
/**
|
|
56
|
+
* @license EUPL-1.2
|
|
57
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
58
|
+
*/
|
|
59
|
+
.utrecht-badge-data {
|
|
60
|
+
background-color: var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));
|
|
61
|
+
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
62
|
+
color: var(--utrecht-badge-color, hsl(0deg, 0%, 100%));
|
|
63
|
+
display: inline-block;
|
|
64
|
+
font-family: var(--utrecht-document-font-family, sans-serif);
|
|
65
|
+
font-size: var(--utrecht-badge-font-size, inherit);
|
|
66
|
+
font-style: var(--utrecht-badge-font-style, normal);
|
|
67
|
+
/* no inheritance */
|
|
68
|
+
font-weight: var(--utrecht-badge-font-weight, bold);
|
|
69
|
+
/* no inheritance */
|
|
70
|
+
line-height: var(--utrecht-badge-line-height);
|
|
71
|
+
padding-block-end: var(--utrecht-badge-padding-block, 0.5ex);
|
|
72
|
+
padding-block-start: var(--utrecht-badge-padding-block, 0.5ex);
|
|
73
|
+
padding-inline-end: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
74
|
+
padding-inline-start: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
/* no inheritance */
|
|
77
|
+
letter-spacing: var(--utrecht-badge-data-letter-spacing, inherit);
|
|
78
|
+
text-transform: var(--utrecht-badge-data-text-transform, inherit);
|
|
52
79
|
}
|
|
53
80
|
|
|
54
81
|
/**
|
|
55
82
|
* @license EUPL-1.2
|
|
56
|
-
* Copyright (c) 2021
|
|
57
|
-
* Copyright (c) 2021 Gemeente Utrecht
|
|
83
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
58
84
|
*/
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
border-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
85
|
+
/**
|
|
86
|
+
* @license EUPL-1.2
|
|
87
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
88
|
+
*/
|
|
89
|
+
.utrecht-badge-status {
|
|
90
|
+
background-color: var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));
|
|
91
|
+
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
92
|
+
color: var(--utrecht-badge-color, hsl(0deg, 0%, 100%));
|
|
93
|
+
display: inline-block;
|
|
94
|
+
font-family: var(--utrecht-document-font-family, sans-serif);
|
|
95
|
+
font-size: var(--utrecht-badge-font-size, inherit);
|
|
96
|
+
font-style: var(--utrecht-badge-font-style, normal);
|
|
97
|
+
/* no inheritance */
|
|
98
|
+
font-weight: var(--utrecht-badge-font-weight, bold);
|
|
99
|
+
/* no inheritance */
|
|
100
|
+
line-height: var(--utrecht-badge-line-height);
|
|
101
|
+
padding-block-end: var(--utrecht-badge-padding-block, 0.5ex);
|
|
102
|
+
padding-block-start: var(--utrecht-badge-padding-block, 0.5ex);
|
|
103
|
+
padding-inline-end: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
104
|
+
padding-inline-start: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
105
|
+
text-decoration: none;
|
|
106
|
+
/* no inheritance */
|
|
107
|
+
letter-spacing: var(--utrecht-badge-status-letter-spacing, inherit);
|
|
108
|
+
text-transform: var(--utrecht-badge-status-text-transform, inherit);
|
|
70
109
|
}
|
|
71
110
|
|
|
72
|
-
.utrecht-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
76
|
-
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
111
|
+
.utrecht-badge-status--danger {
|
|
112
|
+
background-color: var(--utrecht-feedback-danger-fill-background-color, hsl(0deg, 100%, 50%));
|
|
113
|
+
color: var(--utrecht-feedback-danger-fill-color, white);
|
|
77
114
|
}
|
|
78
115
|
|
|
79
|
-
.utrecht-
|
|
80
|
-
|
|
81
|
-
color: var(--utrecht-
|
|
82
|
-
background-color: var(--utrecht-button-disabled-background-color);
|
|
116
|
+
.utrecht-badge-status--warning {
|
|
117
|
+
background-color: var(--utrecht-feedback-warning-fill-background-color, hsl(39deg, 100%, 50%));
|
|
118
|
+
color: var(--utrecht-feedback-warning-fill-color, white);
|
|
83
119
|
}
|
|
84
120
|
|
|
85
|
-
.utrecht-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
89
|
-
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
90
|
-
color: var(--utrecht-focus-color, inherit);
|
|
91
|
-
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
92
|
-
outline-offset: 0;
|
|
93
|
-
background-color: var(--utrecht-focus-background-color);
|
|
121
|
+
.utrecht-badge-status--safe {
|
|
122
|
+
background-color: var(--utrecht-feedback-safe-fill-background-color, hsl(120deg, 100%, 25%));
|
|
123
|
+
color: var(--utrecht-feedback-safe-fill-color, white);
|
|
94
124
|
}
|
|
95
125
|
|
|
96
|
-
.utrecht-
|
|
97
|
-
|
|
98
|
-
color: var(--utrecht-
|
|
99
|
-
background-color: var(--utrecht-button-primary-action-hover-background-color);
|
|
100
|
-
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
126
|
+
.utrecht-badge-status--neutral {
|
|
127
|
+
background-color: var(--utrecht-feedback-neutral-fill-background-color, black);
|
|
128
|
+
color: var(--utrecht-feedback-neutral-fill-color, white);
|
|
101
129
|
}
|
|
102
130
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
131
|
+
.utrecht-badge-status--valid {
|
|
132
|
+
background-color: var(--utrecht-feedback-valid-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(0deg, 100%, 50%)));
|
|
133
|
+
color: var(--utrecht-feedback-valid-fill-color, var(--utrecht-feedback-safe-fill-color, white));
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.utrecht-badge-status--invalid {
|
|
137
|
+
background-color: var(--utrecht-feedback-invalid-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));
|
|
138
|
+
color: var(--utrecht-feedback-invalid-fill-color, var(--utrecht-feedback-danger-fill-color, white));
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.utrecht-badge-status--error {
|
|
142
|
+
background-color: var(--utrecht-feedback-error-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));
|
|
143
|
+
color: var(--utrecht-feedback-error-fill-color, var(--utrecht-feedback-danger-fill-color, white));
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.utrecht-badge-status--success {
|
|
147
|
+
background-color: var(--utrecht-feedback-success-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));
|
|
148
|
+
color: var(--utrecht-feedback-success-fill-color, var(--utrecht-feedback-safe-fill-color, white));
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.utrecht-badge-status--active {
|
|
152
|
+
background-color: var(--utrecht-feedback-active-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));
|
|
153
|
+
color: var(--utrecht-feedback-active-fill-color, var(--utrecht-feedback-safe-fill-color, white));
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.utrecht-badge-status--inactive {
|
|
157
|
+
background-color: var(--utrecht-feedback-inactive-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));
|
|
158
|
+
color: var(--utrecht-feedback-inactive-fill-color, var(--utrecht-feedback-danger-fill-color, white));
|
|
113
159
|
}
|
|
114
160
|
|
|
115
161
|
/**
|
|
116
162
|
* @license EUPL-1.2
|
|
117
163
|
* Copyright (c) 2021 Robbert Broersma
|
|
118
164
|
*/
|
|
119
|
-
.utrecht-document {
|
|
120
|
-
background-color: var(--utrecht-document-background-color, inherit);
|
|
121
|
-
color: var(--utrecht-document-color, inherit);
|
|
122
|
-
font-family: var(--utrecht-document-font-family, inherit);
|
|
123
|
-
font-size: var(--utrecht-document-font-size, inherit);
|
|
124
|
-
line-height: var(--utrecht-document-line-height, inherit);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
165
|
/**
|
|
128
166
|
* @license EUPL-1.2
|
|
129
167
|
* Copyright (c) 2021 Robbert Broersma
|
|
130
168
|
*/
|
|
131
|
-
.utrecht-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
169
|
+
.utrecht-backdrop {
|
|
170
|
+
background-color: var(--utrecht-backdrop-background-color);
|
|
171
|
+
bottom: 0;
|
|
172
|
+
color: var(--utrecht-backdrop-color);
|
|
173
|
+
display: block;
|
|
174
|
+
left: 0;
|
|
175
|
+
opacity: var(--utrecht-backdrop-opacity);
|
|
176
|
+
position: absolute;
|
|
177
|
+
right: 0;
|
|
178
|
+
top: 0;
|
|
179
|
+
user-select: none;
|
|
180
|
+
z-index: var(--utrecht-backdrop-z-index);
|
|
138
181
|
}
|
|
139
182
|
|
|
140
|
-
.utrecht-
|
|
141
|
-
|
|
183
|
+
.utrecht-backdrop--viewport {
|
|
184
|
+
position: fixed;
|
|
142
185
|
}
|
|
143
186
|
|
|
144
187
|
/**
|
|
145
188
|
* @license EUPL-1.2
|
|
146
189
|
* Copyright (c) 2021 Robbert Broersma
|
|
147
190
|
*/
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
191
|
+
/**
|
|
192
|
+
* @license EUPL-1.2
|
|
193
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
194
|
+
*/
|
|
195
|
+
.utrecht-blockquote {
|
|
196
|
+
font-family: var(--utrecht-document-font-family);
|
|
197
|
+
font-size: var(--utrecht-blockquote-font-size);
|
|
198
|
+
margin-inline-end: var(--utrecht-blockquote-margin-inline-end);
|
|
199
|
+
margin-inline-start: var(--utrecht-blockquote-margin-inline-start);
|
|
151
200
|
}
|
|
152
201
|
|
|
153
|
-
.utrecht-
|
|
154
|
-
|
|
155
|
-
|
|
202
|
+
.utrecht-blockquote__attribution {
|
|
203
|
+
color: var(--utrecht-blockquote-attribution-color, inherit);
|
|
204
|
+
font-size: var(--utrecht-blockquote-attribution-font-size, inherit);
|
|
156
205
|
}
|
|
157
206
|
|
|
158
|
-
.utrecht-
|
|
159
|
-
|
|
160
|
-
|
|
207
|
+
.utrecht-blockquote__content {
|
|
208
|
+
--utrecht-document-color: var(--utrecht-blockquote-content-color, inherit);
|
|
209
|
+
--utrecht-paragraph-font-size: var(--utrecht-blockquote-content-font-size, inherit);
|
|
210
|
+
color: var(--utrecht-blockquote-content-color, inherit);
|
|
211
|
+
font-size: var(--utrecht-blockquote-content-font-size, inherit);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.utrecht-blockquote--distanced {
|
|
215
|
+
margin-block-end: var(--utrecht-blockquote-margin-block-end);
|
|
216
|
+
margin-block-start: var(--utrecht-blockquote-margin-block-start);
|
|
161
217
|
}
|
|
162
218
|
|
|
163
219
|
/**
|
|
164
220
|
* @license EUPL-1.2
|
|
165
221
|
* Copyright (c) 2021 Robbert Broersma
|
|
166
222
|
*/
|
|
167
|
-
|
|
168
|
-
|
|
223
|
+
/**
|
|
224
|
+
* @license EUPL-1.2
|
|
225
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
226
|
+
*/
|
|
227
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
228
|
+
.utrecht-breadcrumb--arrows {
|
|
229
|
+
/* https://css-tricks.com/triangle-breadcrumbs/ */
|
|
230
|
+
--utrecht-breadcrumb-arrow-size: 24px;
|
|
231
|
+
overflow: hidden;
|
|
232
|
+
}
|
|
233
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link {
|
|
234
|
+
padding-inline-end: 0;
|
|
235
|
+
position: relative;
|
|
236
|
+
}
|
|
237
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after,
|
|
238
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before {
|
|
239
|
+
border-block-end-width: var(--utrecht-breadcrumb-block-size);
|
|
240
|
+
border-block-start-width: var(--utrecht-breadcrumb-block-size);
|
|
241
|
+
border-color: transparent;
|
|
242
|
+
border-style: solid;
|
|
243
|
+
content: " ";
|
|
244
|
+
display: block;
|
|
245
|
+
height: 0;
|
|
246
|
+
left: 100%;
|
|
247
|
+
margin-block-start: calc(-1 * var(--utrecht-breadcrumb-block-size));
|
|
248
|
+
position: absolute;
|
|
249
|
+
top: 50%;
|
|
250
|
+
width: 0;
|
|
251
|
+
}
|
|
252
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after {
|
|
253
|
+
border-inline-start-color: var(--utrecht-breadcrumb-link-background-color);
|
|
254
|
+
border-inline-start-width: var(--utrecht-breadcrumb-arrow-size);
|
|
255
|
+
z-index: 2;
|
|
256
|
+
}
|
|
257
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before {
|
|
258
|
+
border-inline-start-color: var(--utrecht-document-background-color);
|
|
259
|
+
border-inline-start-width: var(--utrecht-breadcrumb-arrow-size);
|
|
260
|
+
margin-block-start: calc(-1 * var(--utrecht-breadcrumb-block-size));
|
|
261
|
+
margin-inline-start: 1px;
|
|
262
|
+
z-index: 1;
|
|
263
|
+
}
|
|
264
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus,
|
|
265
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus {
|
|
266
|
+
background-color: var(--utrecht-breadcrumb-link-focus-background-color);
|
|
267
|
+
}
|
|
268
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus::after,
|
|
269
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus::after {
|
|
270
|
+
border-inline-start-color: var(--utrecht-breadcrumb-link-focus-background-color);
|
|
271
|
+
}
|
|
272
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__item ~ .utrecht-breadcrumb__item .utrecht-breadcrumb__link {
|
|
273
|
+
padding-inline-start: calc(var(--utrecht-breadcrumb-item-padding-inline-start) + var(--utrecht-breadcrumb-arrow-size));
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.utrecht-breadcrumb__item ~ .utrecht-breadcrumb__item {
|
|
277
|
+
margin-inline-start: var(--utrecht-breadcrumb-item-divider-inline-size);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.utrecht-breadcrumb {
|
|
281
|
+
--utrecht-focus-background-color: var(--utrecht-breadcrumb-link-focus-background-color);
|
|
282
|
+
--utrecht-link-background-color: var(--utrecht-breadcrumb-link-background-color);
|
|
283
|
+
--utrecht-link-color: var(--utrecht-breadcrumb-link-color);
|
|
284
|
+
--utrecht-link-focus-color: var(--utrecht-breadcrumb-link-focus-color, var(--utrecht-breadcrumb-link-color));
|
|
285
|
+
--utrecht-link-focus-text-decoration: var(--utrecht-link-text-decoration);
|
|
286
|
+
--utrecht-link-hover-color: var(--utrecht-breadcrumb-link-color);
|
|
287
|
+
--utrecht-link-hover-text-decoration: var(--utrecht-link-text-decoration);
|
|
288
|
+
--utrecht-link-visited-color: var(--utrecht-breadcrumb-link-color);
|
|
289
|
+
--utrecht-link-visited-text-decoration: var(--utrecht-link-text-decoration);
|
|
169
290
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
291
|
+
font-size: var(--utrecht-breadcrumb-font-size);
|
|
292
|
+
text-transform: var(--utrecht-document-text-transform, inherit);
|
|
170
293
|
}
|
|
171
294
|
|
|
172
|
-
.utrecht-
|
|
173
|
-
|
|
174
|
-
|
|
295
|
+
.utrecht-breadcrumb__list {
|
|
296
|
+
block-size: var(--utrecht-breadcrumb-block-size);
|
|
297
|
+
display: flex;
|
|
175
298
|
}
|
|
176
299
|
|
|
177
|
-
.utrecht-
|
|
178
|
-
|
|
300
|
+
ol.utrecht-breadcrumb__list {
|
|
301
|
+
list-style: none;
|
|
302
|
+
margin-block-end: 0;
|
|
303
|
+
margin-block-start: 0;
|
|
304
|
+
padding-inline-start: 0;
|
|
179
305
|
}
|
|
180
306
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
* Copyright (c) 2021 Robbert Broersma
|
|
184
|
-
*/
|
|
185
|
-
.utrecht-form-label, .utrecht-html label {
|
|
186
|
-
font-weight: var(--utrecht-form-label-font-weight);
|
|
187
|
-
font-size: var(--utrecht-form-label-font-size);
|
|
307
|
+
.utrecht-breadcrumb__item {
|
|
308
|
+
block-size: 100%;
|
|
188
309
|
}
|
|
189
310
|
|
|
190
|
-
.utrecht-
|
|
191
|
-
|
|
311
|
+
.utrecht-breadcrumb__link {
|
|
312
|
+
background-color: var(--utrecht-breadcrumb-link-background-color);
|
|
313
|
+
display: block;
|
|
314
|
+
padding-block-end: var(--utrecht-breadcrumb-item-padding-block-end, 8px);
|
|
315
|
+
padding-block-start: var(--utrecht-breadcrumb-item-padding-block-start, 8px);
|
|
316
|
+
padding-inline-end: var(--utrecht-breadcrumb-item-padding-inline-end, 8px);
|
|
317
|
+
padding-inline-start: var(--utrecht-breadcrumb-item-padding-inline-start, 8px);
|
|
192
318
|
}
|
|
193
319
|
|
|
194
|
-
|
|
195
|
-
|
|
320
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
321
|
+
.utrecht-breadcrumb--arrows {
|
|
322
|
+
/* https://css-tricks.com/triangle-breadcrumbs/ */
|
|
323
|
+
--utrecht-breadcrumb-arrow-size: 24px;
|
|
324
|
+
overflow: hidden;
|
|
325
|
+
}
|
|
326
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link {
|
|
327
|
+
padding-inline-end: 0;
|
|
328
|
+
position: relative;
|
|
329
|
+
}
|
|
330
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after,
|
|
331
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before {
|
|
332
|
+
border-block-end-width: var(--utrecht-breadcrumb-block-size);
|
|
333
|
+
border-block-start-width: var(--utrecht-breadcrumb-block-size);
|
|
334
|
+
border-color: transparent;
|
|
335
|
+
border-style: solid;
|
|
336
|
+
content: " ";
|
|
337
|
+
display: block;
|
|
338
|
+
height: 0;
|
|
339
|
+
left: 100%;
|
|
340
|
+
margin-block-start: calc(-1 * var(--utrecht-breadcrumb-block-size));
|
|
341
|
+
position: absolute;
|
|
342
|
+
top: 50%;
|
|
343
|
+
width: 0;
|
|
344
|
+
}
|
|
345
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after {
|
|
346
|
+
border-inline-start-color: var(--utrecht-breadcrumb-link-background-color);
|
|
347
|
+
border-inline-start-width: var(--utrecht-breadcrumb-arrow-size);
|
|
348
|
+
z-index: 2;
|
|
349
|
+
}
|
|
350
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before {
|
|
351
|
+
border-inline-start-color: var(--utrecht-document-background-color);
|
|
352
|
+
border-inline-start-width: var(--utrecht-breadcrumb-arrow-size);
|
|
353
|
+
margin-block-start: calc(-1 * var(--utrecht-breadcrumb-block-size));
|
|
354
|
+
margin-inline-start: 1px;
|
|
355
|
+
z-index: 1;
|
|
356
|
+
}
|
|
357
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus,
|
|
358
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus {
|
|
359
|
+
background-color: var(--utrecht-breadcrumb-link-focus-background-color);
|
|
360
|
+
}
|
|
361
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus::after,
|
|
362
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus::after {
|
|
363
|
+
border-inline-start-color: var(--utrecht-breadcrumb-link-focus-background-color);
|
|
364
|
+
}
|
|
365
|
+
.utrecht-breadcrumb--arrows .utrecht-breadcrumb__item ~ .utrecht-breadcrumb__item .utrecht-breadcrumb__link {
|
|
366
|
+
padding-inline-start: calc(var(--utrecht-breadcrumb-item-padding-inline-start) + var(--utrecht-breadcrumb-arrow-size));
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.utrecht-breadcrumb__item ~ .utrecht-breadcrumb__item {
|
|
370
|
+
margin-inline-start: var(--utrecht-breadcrumb-item-divider-inline-size);
|
|
196
371
|
}
|
|
197
372
|
|
|
373
|
+
/**
|
|
374
|
+
* @license EUPL-1.2
|
|
375
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
376
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
377
|
+
*/
|
|
198
378
|
/**
|
|
199
379
|
* @license EUPL-1.2
|
|
200
380
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
201
381
|
* Copyright (c) 2021 Robbert Broersma
|
|
382
|
+
*/
|
|
383
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
384
|
+
/**
|
|
385
|
+
* @license EUPL-1.2
|
|
202
386
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
387
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
203
388
|
*/
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
389
|
+
/**
|
|
390
|
+
* @license EUPL-1.2
|
|
391
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
392
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
393
|
+
*/
|
|
394
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
395
|
+
.utrecht-button {
|
|
396
|
+
--_utrecht-button-background-color: var(--utrecht-button-background-color);
|
|
397
|
+
--_utrecht-button-color: var(--utrecht-button-color);
|
|
398
|
+
--_utrecht-button-border-color: var(--utrecht-button-border-color, transparent);
|
|
399
|
+
--_utrecht-button-border-bottom-color: var(
|
|
400
|
+
--utrecht-button-border-bottom-color,
|
|
401
|
+
var(--utrecht-button-border-color, transparent)
|
|
402
|
+
);
|
|
403
|
+
--_utrecht-button-disabled-background-color: var(
|
|
404
|
+
--utrecht-button-disabled-background-color,
|
|
405
|
+
var(--utrecht-button-background-color)
|
|
406
|
+
);
|
|
407
|
+
--_utrecht-button-disabled-border-color: var(
|
|
408
|
+
--utrecht-button-disabled-border-color,
|
|
409
|
+
var(--utrecht-button-border-color)
|
|
410
|
+
);
|
|
411
|
+
--_utrecht-button-disabled-color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
412
|
+
--_utrecht-button-focus-background-color: var(
|
|
413
|
+
--utrecht-button-focus-background-color,
|
|
414
|
+
var(--utrecht-button-background-color)
|
|
415
|
+
);
|
|
416
|
+
--_utrecht-button-focus-border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
417
|
+
--_utrecht-button-focus-color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
418
|
+
--_utrecht-button-hover-background-color: var(
|
|
419
|
+
--utrecht-button-hover-background-color,
|
|
420
|
+
var(--utrecht-button-background-color)
|
|
421
|
+
);
|
|
422
|
+
--_utrecht-button-hover-border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
423
|
+
--_utrecht-button-hover-color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
424
|
+
--_utrecht-button-active-background-color: var(
|
|
425
|
+
--utrecht-button-active-background-color,
|
|
426
|
+
var(--utrecht-button-background-color)
|
|
427
|
+
);
|
|
428
|
+
--_utrecht-button-active-border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
429
|
+
--_utrecht-button-active-color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
430
|
+
--_utrecht-button-border-width: var(--utrecht-button-border-width, 0);
|
|
431
|
+
--_utrecht-button-border-bottom-width: var(
|
|
432
|
+
--utrecht-button-border-bottom-width,
|
|
433
|
+
var(--utrecht-button-border-width, 0)
|
|
434
|
+
);
|
|
435
|
+
background-color: var(--_utrecht-button-background-color);
|
|
436
|
+
border-color: var(--_utrecht-button-border-color);
|
|
437
|
+
border-bottom-color: var(--_utrecht-button-border-bottom-color);
|
|
438
|
+
border-radius: var(--utrecht-button-border-radius);
|
|
439
|
+
border-style: solid;
|
|
440
|
+
border-width: var(--_utrecht-button-border-width);
|
|
441
|
+
border-bottom-width: var(--_utrecht-button-border-bottom-width);
|
|
442
|
+
color: var(--utrecht-button-color);
|
|
443
|
+
font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
|
|
444
|
+
font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
|
|
445
|
+
font-weight: var(--utrecht-button-font-weight);
|
|
446
|
+
inline-size: var(--utrecht-button-inline-size, auto);
|
|
447
|
+
letter-spacing: var(--utrecht-button-letter-spacing);
|
|
448
|
+
line-height: var(--utrecht-button-line-height);
|
|
449
|
+
min-block-size: var(--utrecht-button-min-block-size, 44px);
|
|
450
|
+
min-inline-size: var(--utrecht-button-min-inline-size, 44px);
|
|
451
|
+
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
452
|
+
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
453
|
+
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
454
|
+
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
455
|
+
text-transform: var(--utrecht-button-text-transform);
|
|
456
|
+
user-select: none;
|
|
212
457
|
}
|
|
213
458
|
|
|
214
|
-
.utrecht-
|
|
215
|
-
margin-block-
|
|
216
|
-
margin-block-
|
|
459
|
+
.utrecht-button--distanced {
|
|
460
|
+
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
461
|
+
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
462
|
+
margin-inline-end: var(--utrecht-button-margin-inline-end);
|
|
463
|
+
margin-inline-start: var(--utrecht-button-margin-inline-start);
|
|
217
464
|
}
|
|
218
465
|
|
|
219
|
-
.utrecht-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
223
|
-
letter-spacing: var(--utrecht-heading-2-letter-spacing);
|
|
224
|
-
line-height: var(--utrecht-heading-2-line-height);
|
|
225
|
-
text-transform: var(--utrecht-heading-2-text-transform, inherit);
|
|
226
|
-
color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
466
|
+
.utrecht-button--submit {
|
|
467
|
+
/* lower priority specificty than busy and disabled cursor */
|
|
468
|
+
cursor: var(--utrecht-action-submit-cursor);
|
|
227
469
|
}
|
|
228
470
|
|
|
229
|
-
.utrecht-
|
|
230
|
-
|
|
231
|
-
margin-block-end: var(--utrecht-heading-2-margin-block-end);
|
|
471
|
+
.utrecht-button--busy {
|
|
472
|
+
cursor: var(--utrecht-action-busy-cursor);
|
|
232
473
|
}
|
|
233
474
|
|
|
234
|
-
.utrecht-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
text-transform: var(--utrecht-heading-3-text-transform, inherit);
|
|
241
|
-
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
475
|
+
.utrecht-button:disabled,
|
|
476
|
+
.utrecht-button--disabled {
|
|
477
|
+
background-color: var(--_utrecht-button-disabled-background-color);
|
|
478
|
+
border-color: var(--_utrecht-button-disabled-border-color);
|
|
479
|
+
color: var(--_utrecht-button-disabled-color);
|
|
480
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
242
481
|
}
|
|
243
482
|
|
|
244
|
-
.utrecht-
|
|
245
|
-
|
|
246
|
-
|
|
483
|
+
.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
484
|
+
.utrecht-button--active {
|
|
485
|
+
background-color: var(--_utrecht-button-active-background-color);
|
|
486
|
+
border-color: var(--_utrecht-button-active-border-color);
|
|
487
|
+
color: var(--_utrecht-button-active-color);
|
|
247
488
|
}
|
|
248
489
|
|
|
249
|
-
.utrecht-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
490
|
+
.utrecht-button--focus-visible {
|
|
491
|
+
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
492
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
493
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
494
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
495
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
496
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
257
497
|
}
|
|
258
498
|
|
|
259
|
-
.utrecht-
|
|
260
|
-
|
|
261
|
-
|
|
499
|
+
.utrecht-button--focus {
|
|
500
|
+
background-color: var(--_utrecht-button-focus-background-color);
|
|
501
|
+
border-color: var(--_utrecht-button-focus-border-color);
|
|
502
|
+
color: var(--_utrecht-button-focus-color);
|
|
262
503
|
}
|
|
263
504
|
|
|
264
|
-
.utrecht-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
505
|
+
.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
506
|
+
background-color: var(--_utrecht-button-focus-background-color);
|
|
507
|
+
border-color: var(--_utrecht-button-focus-border-color);
|
|
508
|
+
color: var(--_utrecht-button-focus-color);
|
|
509
|
+
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
510
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
511
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
512
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
513
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
514
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
272
515
|
}
|
|
273
516
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
517
|
+
/* override the `:focus` selector above */
|
|
518
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
519
|
+
.utrecht-button:focus:not(:focus-visible) {
|
|
520
|
+
/* undo focus ring */
|
|
521
|
+
box-shadow: none;
|
|
522
|
+
outline-style: none;
|
|
277
523
|
}
|
|
278
524
|
|
|
279
|
-
.utrecht-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
text-transform: var(--utrecht-heading-6-text-transform, inherit);
|
|
286
|
-
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
525
|
+
.utrecht-button--hover:not(:disabled),
|
|
526
|
+
.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
527
|
+
background-color: var(--_utrecht-button-hover-background-color);
|
|
528
|
+
border-color: var(--_utrecht-button-hover-border-color);
|
|
529
|
+
color: var(--_utrecht-button-hover-color);
|
|
530
|
+
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
287
531
|
}
|
|
288
532
|
|
|
289
|
-
.utrecht-
|
|
290
|
-
|
|
291
|
-
|
|
533
|
+
.utrecht-button--primary-action {
|
|
534
|
+
--utrecht-button-active-background-color: var(--utrecht-button-primary-action-active-background-color);
|
|
535
|
+
--utrecht-button-active-border-color: var(--utrecht-button-primary-action-active-border-color);
|
|
536
|
+
--utrecht-button-active-color: var(--utrecht-button-primary-action-active-color);
|
|
537
|
+
--utrecht-button-background-color: var(--utrecht-button-primary-action-background-color);
|
|
538
|
+
--utrecht-button-border-color: var(--utrecht-button-primary-action-border-color);
|
|
539
|
+
--utrecht-button-border-width: var(--utrecht-button-primary-action-border-width);
|
|
540
|
+
--utrecht-button-color: var(--utrecht-button-primary-action-color);
|
|
541
|
+
--utrecht-button-disabled-background-color: var(--utrecht-button-primary-action-disabled-background-color);
|
|
542
|
+
--utrecht-button-disabled-border-color: var(--utrecht-button-primary-action-disabled-border-color);
|
|
543
|
+
--utrecht-button-disabled-color: var(--utrecht-button-primary-action-disabled-color);
|
|
544
|
+
--utrecht-button-focus-background-color: var(--utrecht-button-primary-action-focus-background-color);
|
|
545
|
+
--utrecht-button-focus-border-color: var(--utrecht-button-primary-action-focus-border-color);
|
|
546
|
+
--utrecht-button-focus-color: var(--utrecht-button-primary-action-focus-color);
|
|
547
|
+
--utrecht-button-hover-background-color: var(--utrecht-button-primary-action-hover-background-color);
|
|
548
|
+
--utrecht-button-hover-border-color: var(--utrecht-button-primary-action-hover-border-color);
|
|
549
|
+
--utrecht-button-hover-color: var(--utrecht-button-primary-action-hover-color);
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.utrecht-button--secondary-action {
|
|
553
|
+
--utrecht-button-active-background-color: var(--utrecht-button-secondary-action-active-background-color);
|
|
554
|
+
--utrecht-button-active-border-color: var(--utrecht-button-secondary-action-active-border-color);
|
|
555
|
+
--utrecht-button-active-color: var(--utrecht-button-secondary-action-active-color);
|
|
556
|
+
--utrecht-button-background-color: var(--utrecht-button-secondary-action-background-color);
|
|
557
|
+
--utrecht-button-border-color: var(--utrecht-button-secondary-action-border-color);
|
|
558
|
+
--utrecht-button-border-width: var(--utrecht-button-secondary-action-border-width);
|
|
559
|
+
--utrecht-button-color: var(--utrecht-button-secondary-action-color);
|
|
560
|
+
--utrecht-button-disabled-background-color: var(--utrecht-button-secondary-action-disabled-background-color);
|
|
561
|
+
--utrecht-button-disabled-border-color: var(--utrecht-button-secondary-action-disabled-border-color);
|
|
562
|
+
--utrecht-button-disabled-color: var(--utrecht-button-secondary-action-disabled-color);
|
|
563
|
+
--utrecht-button-focus-background-color: var(--utrecht-button-secondary-action-focus-background-color);
|
|
564
|
+
--utrecht-button-focus-border-color: var(--utrecht-button-secondary-action-focus-border-color);
|
|
565
|
+
--utrecht-button-focus-color: var(--utrecht-button-secondary-action-focus-color);
|
|
566
|
+
--utrecht-button-hover-background-color: var(--utrecht-button-secondary-action-hover-background-color);
|
|
567
|
+
--utrecht-button-hover-border-color: var(--utrecht-button-secondary-action-hover-border-color);
|
|
568
|
+
--utrecht-button-hover-color: var(--utrecht-button-secondary-action-hover-color);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.utrecht-button--subtle {
|
|
572
|
+
--utrecht-button-active-background-color: var(--utrecht-button-subtle-active-background-color);
|
|
573
|
+
--utrecht-button-active-border-color: var(--utrecht-button-subtle-active-border-color);
|
|
574
|
+
--utrecht-button-active-color: var(--utrecht-button-subtle-active-color);
|
|
575
|
+
--utrecht-button-background-color: var(--utrecht-button-subtle-background-color);
|
|
576
|
+
--utrecht-button-border-color: var(--utrecht-button-subtle-border-color);
|
|
577
|
+
--utrecht-button-border-width: var(--utrecht-button-subtle-border-width);
|
|
578
|
+
--utrecht-button-color: var(--utrecht-button-subtle-color);
|
|
579
|
+
--utrecht-button-disabled-background-color: var(--utrecht-button-subtle-disabled-background-color);
|
|
580
|
+
--utrecht-button-disabled-border-color: var(--utrecht-button-subtle-disabled-border-color);
|
|
581
|
+
--utrecht-button-disabled-color: var(--utrecht-button-subtle-disabled-color);
|
|
582
|
+
--utrecht-button-focus-background-color: var(--utrecht-button-subtle-focus-background-color);
|
|
583
|
+
--utrecht-button-focus-border-color: var(--utrecht-button-subtle-focus-border-color);
|
|
584
|
+
--utrecht-button-focus-color: var(--utrecht-button-subtle-focus-color);
|
|
585
|
+
--utrecht-button-hover-background-color: var(--utrecht-button-subtle-hover-background-color);
|
|
586
|
+
--utrecht-button-hover-border-color: var(--utrecht-button-subtle-hover-border-color);
|
|
587
|
+
--utrecht-button-hover-color: var(--utrecht-button-subtle-hover-color);
|
|
292
588
|
}
|
|
293
589
|
|
|
294
590
|
/**
|
|
295
591
|
* @license EUPL-1.2
|
|
296
|
-
* Copyright (c)
|
|
592
|
+
* Copyright (c) 2022 Frameless B.V.
|
|
593
|
+
*/
|
|
594
|
+
/**
|
|
595
|
+
* @license EUPL-1.2
|
|
596
|
+
* Copyright (c) 2022 Frameless B.V.
|
|
597
|
+
*/
|
|
598
|
+
.utrecht-button-group {
|
|
599
|
+
background-color: var(--utrecht-button-group-background-color);
|
|
600
|
+
display: flex;
|
|
601
|
+
gap: var(--utrecht-button-group-inline-gap, 1em);
|
|
602
|
+
min-block-size: var(--utrecht-button-block-size);
|
|
603
|
+
padding-block-end: var(--utrecht-button-group-padding-block-end);
|
|
604
|
+
padding-block-start: var(--utrecht-button-group-padding-block-start);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.utrecht-button-group--distanced {
|
|
608
|
+
background-color: var(--utrecht-button-group-background-color);
|
|
609
|
+
display: flex;
|
|
610
|
+
gap: var(--utrecht-button-group-inline-gap, 1em);
|
|
611
|
+
min-block-size: var(--utrecht-button-block-size);
|
|
612
|
+
padding-block-end: var(--utrecht-button-group-padding-block-end);
|
|
613
|
+
padding-block-start: var(--utrecht-button-group-padding-block-start);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.utrecht-button-group__button-link--horizontal,
|
|
617
|
+
.utrecht-button-group--horizontal .utrecht-button-link,
|
|
618
|
+
.utrecht-button-group:not(.utrecht-button-group--vertical) .utrecht-button-link {
|
|
619
|
+
--utrecht-button-padding-inline-end: 0;
|
|
620
|
+
--utrecht-button-padding-inline-start: 0;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.utrecht-button-group--vertical {
|
|
624
|
+
flex-direction: column;
|
|
625
|
+
gap: var(--utrecht-button-group-block-gap, 1em);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* @license EUPL-1.2
|
|
630
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
631
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
632
|
+
*/
|
|
633
|
+
/**
|
|
634
|
+
* @license EUPL-1.2
|
|
635
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
636
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
637
|
+
*/
|
|
638
|
+
/**
|
|
639
|
+
* @license EUPL-1.2
|
|
640
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
641
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
642
|
+
*/
|
|
643
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
644
|
+
/**
|
|
645
|
+
* @license EUPL-1.2
|
|
646
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
647
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
648
|
+
*/
|
|
649
|
+
/**
|
|
650
|
+
* @license EUPL-1.2
|
|
651
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
652
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
653
|
+
*/
|
|
654
|
+
/**
|
|
655
|
+
* @license EUPL-1.2
|
|
656
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
657
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
658
|
+
*/
|
|
659
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
660
|
+
.utrecht-button-link {
|
|
661
|
+
--_utrecht-button-background-color: var(--utrecht-button-background-color);
|
|
662
|
+
--_utrecht-button-color: var(--utrecht-button-color);
|
|
663
|
+
--_utrecht-button-border-color: var(--utrecht-button-border-color, transparent);
|
|
664
|
+
--_utrecht-button-border-bottom-color: var(
|
|
665
|
+
--utrecht-button-border-bottom-color,
|
|
666
|
+
var(--utrecht-button-border-color, transparent)
|
|
667
|
+
);
|
|
668
|
+
--_utrecht-button-disabled-background-color: var(
|
|
669
|
+
--utrecht-button-disabled-background-color,
|
|
670
|
+
var(--utrecht-button-background-color)
|
|
671
|
+
);
|
|
672
|
+
--_utrecht-button-disabled-border-color: var(
|
|
673
|
+
--utrecht-button-disabled-border-color,
|
|
674
|
+
var(--utrecht-button-border-color)
|
|
675
|
+
);
|
|
676
|
+
--_utrecht-button-disabled-color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
677
|
+
--_utrecht-button-focus-background-color: var(
|
|
678
|
+
--utrecht-button-focus-background-color,
|
|
679
|
+
var(--utrecht-button-background-color)
|
|
680
|
+
);
|
|
681
|
+
--_utrecht-button-focus-border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
682
|
+
--_utrecht-button-focus-color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
683
|
+
--_utrecht-button-hover-background-color: var(
|
|
684
|
+
--utrecht-button-hover-background-color,
|
|
685
|
+
var(--utrecht-button-background-color)
|
|
686
|
+
);
|
|
687
|
+
--_utrecht-button-hover-border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
688
|
+
--_utrecht-button-hover-color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
689
|
+
--_utrecht-button-active-background-color: var(
|
|
690
|
+
--utrecht-button-active-background-color,
|
|
691
|
+
var(--utrecht-button-background-color)
|
|
692
|
+
);
|
|
693
|
+
--_utrecht-button-active-border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
694
|
+
--_utrecht-button-active-color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
695
|
+
--_utrecht-button-border-width: var(--utrecht-button-border-width, 0);
|
|
696
|
+
--_utrecht-button-border-bottom-width: var(
|
|
697
|
+
--utrecht-button-border-bottom-width,
|
|
698
|
+
var(--utrecht-button-border-width, 0)
|
|
699
|
+
);
|
|
700
|
+
background-color: var(--_utrecht-button-background-color);
|
|
701
|
+
border-color: var(--_utrecht-button-border-color);
|
|
702
|
+
border-bottom-color: var(--_utrecht-button-border-bottom-color);
|
|
703
|
+
border-radius: var(--utrecht-button-border-radius);
|
|
704
|
+
border-style: solid;
|
|
705
|
+
border-width: var(--_utrecht-button-border-width);
|
|
706
|
+
border-bottom-width: var(--_utrecht-button-border-bottom-width);
|
|
707
|
+
color: var(--utrecht-button-color);
|
|
708
|
+
font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
|
|
709
|
+
font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
|
|
710
|
+
font-weight: var(--utrecht-button-font-weight);
|
|
711
|
+
inline-size: var(--utrecht-button-inline-size, auto);
|
|
712
|
+
letter-spacing: var(--utrecht-button-letter-spacing);
|
|
713
|
+
line-height: var(--utrecht-button-line-height);
|
|
714
|
+
min-block-size: var(--utrecht-button-min-block-size, 44px);
|
|
715
|
+
min-inline-size: var(--utrecht-button-min-inline-size, 44px);
|
|
716
|
+
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
717
|
+
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
718
|
+
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
719
|
+
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
720
|
+
text-transform: var(--utrecht-button-text-transform);
|
|
721
|
+
user-select: none;
|
|
722
|
+
cursor: var(--utrecht-action-navigate-cursor, pointer);
|
|
723
|
+
text-decoration: none;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.utrecht-button-link--hover {
|
|
727
|
+
background-color: var(--_utrecht-button-hover-background-color);
|
|
728
|
+
border-color: var(--_utrecht-button-hover-border-color);
|
|
729
|
+
color: var(--_utrecht-button-hover-color);
|
|
730
|
+
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.utrecht-button-link--focus {
|
|
734
|
+
background-color: var(--_utrecht-button-focus-background-color);
|
|
735
|
+
border-color: var(--_utrecht-button-focus-border-color);
|
|
736
|
+
color: var(--_utrecht-button-focus-color);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.utrecht-button-link--focus-visible {
|
|
740
|
+
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
741
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
742
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
743
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
744
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
745
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* @license EUPL-1.2
|
|
750
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
751
|
+
*/
|
|
752
|
+
/**
|
|
753
|
+
* @license EUPL-1.2
|
|
754
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
755
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
756
|
+
*/
|
|
757
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
758
|
+
/**
|
|
759
|
+
* @license EUPL-1.2
|
|
760
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
761
|
+
*/
|
|
762
|
+
/**
|
|
763
|
+
* @license EUPL-1.2
|
|
764
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
765
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
766
|
+
*/
|
|
767
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
768
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
769
|
+
.utrecht-checkbox {
|
|
770
|
+
margin-block-end: 0;
|
|
771
|
+
/* reset native margin for input[type="checkbox"] */
|
|
772
|
+
margin-block-start: 0;
|
|
773
|
+
margin-inline-end: 0;
|
|
774
|
+
margin-inline-start: 0;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
778
|
+
.utrecht-checkbox--disabled {
|
|
779
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.utrecht-checkbox--focus-visible {
|
|
783
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
784
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
785
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
786
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
787
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.utrecht-checkbox--html-input:disabled {
|
|
791
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
792
|
+
}
|
|
793
|
+
.utrecht-checkbox--html-input:focus {
|
|
794
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
795
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
796
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
797
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
798
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
799
|
+
}
|
|
800
|
+
.utrecht-checkbox--html-input:focus:not(:focus-visible) {
|
|
801
|
+
/* undo focus ring */
|
|
802
|
+
box-shadow: none;
|
|
803
|
+
outline-style: none;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
/**
|
|
807
|
+
* @license EUPL-1.2
|
|
808
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
809
|
+
*/
|
|
810
|
+
/**
|
|
811
|
+
* @license EUPL-1.2
|
|
812
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
813
|
+
*/
|
|
814
|
+
/**
|
|
815
|
+
* @license EUPL-1.2
|
|
816
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
817
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
818
|
+
*/
|
|
819
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
820
|
+
/**
|
|
821
|
+
* @license EUPL-1.2
|
|
822
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
823
|
+
*/
|
|
824
|
+
/**
|
|
825
|
+
* @license EUPL-1.2
|
|
826
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
827
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
828
|
+
*/
|
|
829
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
830
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
831
|
+
.utrecht-checkbox {
|
|
832
|
+
margin-block-end: 0;
|
|
833
|
+
/* reset native margin for input[type="checkbox"] */
|
|
834
|
+
margin-block-start: 0;
|
|
835
|
+
margin-inline-end: 0;
|
|
836
|
+
margin-inline-start: 0;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
840
|
+
.utrecht-checkbox--disabled {
|
|
841
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.utrecht-checkbox--focus-visible {
|
|
845
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
846
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
847
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
848
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
849
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.utrecht-checkbox--html-input:disabled {
|
|
853
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
854
|
+
}
|
|
855
|
+
.utrecht-checkbox--html-input:focus {
|
|
856
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
857
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
858
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
859
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
860
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
861
|
+
}
|
|
862
|
+
.utrecht-checkbox--html-input:focus:not(:focus-visible) {
|
|
863
|
+
/* undo focus ring */
|
|
864
|
+
box-shadow: none;
|
|
865
|
+
outline-style: none;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
/**
|
|
869
|
+
* @license EUPL-1.2
|
|
870
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
871
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
872
|
+
*/
|
|
873
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
874
|
+
/**
|
|
875
|
+
* @license EUPL-1.2
|
|
876
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
877
|
+
*/
|
|
878
|
+
/**
|
|
879
|
+
* @license EUPL-1.2
|
|
880
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
881
|
+
*/
|
|
882
|
+
/**
|
|
883
|
+
* @license EUPL-1.2
|
|
884
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
885
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
886
|
+
*/
|
|
887
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
888
|
+
/**
|
|
889
|
+
* @license EUPL-1.2
|
|
890
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
891
|
+
*/
|
|
892
|
+
/**
|
|
893
|
+
* @license EUPL-1.2
|
|
894
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
895
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
896
|
+
*/
|
|
897
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
898
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
899
|
+
.utrecht-checkbox {
|
|
900
|
+
margin-block-end: 0;
|
|
901
|
+
/* reset native margin for input[type="checkbox"] */
|
|
902
|
+
margin-block-start: 0;
|
|
903
|
+
margin-inline-end: 0;
|
|
904
|
+
margin-inline-start: 0;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
908
|
+
.utrecht-checkbox--disabled {
|
|
909
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.utrecht-checkbox--focus-visible {
|
|
913
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
914
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
915
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
916
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
917
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.utrecht-checkbox--html-input:disabled {
|
|
921
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
922
|
+
}
|
|
923
|
+
.utrecht-checkbox--html-input:focus {
|
|
924
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
925
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
926
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
927
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
928
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
929
|
+
}
|
|
930
|
+
.utrecht-checkbox--html-input:focus:not(:focus-visible) {
|
|
931
|
+
/* undo focus ring */
|
|
932
|
+
box-shadow: none;
|
|
933
|
+
outline-style: none;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
/**
|
|
937
|
+
* @license EUPL-1.2
|
|
938
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
939
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
940
|
+
*/
|
|
941
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
942
|
+
.utrecht-custom-checkbox {
|
|
943
|
+
--utrecht-icon-size: var(--utrecht-custom-checkbox-icon-size, calc(0.75 * var(--utrecht-custom-checkbox-size)));
|
|
944
|
+
display: inline-block;
|
|
945
|
+
height: var(--utrecht-custom-checkbox-size);
|
|
946
|
+
position: relative;
|
|
947
|
+
width: var(--utrecht-custom-checkbox-size);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.utrecht-custom-checkbox__input {
|
|
951
|
+
margin-block-end: 0;
|
|
952
|
+
/* reset native margin for input[type="checkbox"] */
|
|
953
|
+
margin-block-start: 0;
|
|
954
|
+
margin-inline-end: 0;
|
|
955
|
+
margin-inline-start: 0;
|
|
956
|
+
height: var(--utrecht-custom-checkbox-size);
|
|
957
|
+
left: 0;
|
|
958
|
+
opacity: 0%;
|
|
959
|
+
position: absolute;
|
|
960
|
+
top: 0;
|
|
961
|
+
width: var(--utrecht-custom-checkbox-size);
|
|
962
|
+
z-index: 10;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.utrecht-custom-checkbox__box {
|
|
966
|
+
align-items: center;
|
|
967
|
+
background-color: var(--utrecht-custom-checkbox-background-color);
|
|
968
|
+
border-color: var(--utrecht-custom-checkbox-border-color, var(--utrecht-form-input-border-color));
|
|
969
|
+
border-radius: var(--utrecht-custom-checkbox-border-radius, var(--utrecht-form-input-border-radius));
|
|
970
|
+
border-style: solid;
|
|
971
|
+
border-width: var(--utrecht-custom-checkbox-border-width, var(--utrecht-form-input-border-width));
|
|
972
|
+
box-sizing: border-box;
|
|
973
|
+
color: var(--utrecht-custom-checkbox-color);
|
|
974
|
+
display: flex;
|
|
975
|
+
height: var(--utrecht-custom-checkbox-size);
|
|
976
|
+
justify-content: center;
|
|
977
|
+
left: 0;
|
|
978
|
+
pointer-events: none;
|
|
979
|
+
position: absolute;
|
|
980
|
+
top: 0;
|
|
981
|
+
width: var(--utrecht-custom-checkbox-size);
|
|
982
|
+
z-index: 1000;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.utrecht-custom-checkbox__box--checked {
|
|
986
|
+
background-color: var(--utrecht-custom-checkbox-checked-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
987
|
+
border-color: var(--utrecht-custom-checkbox-checked-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
988
|
+
border-width: var(--utrecht-custom-checkbox-checked-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
989
|
+
color: var(--utrecht-custom-checkbox-checked-color, var(--utrecht-custom-checkbox-color));
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.utrecht-custom-checkbox__box--disabled {
|
|
993
|
+
background-color: var(--utrecht-custom-checkbox-disabled-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
994
|
+
border-color: var(--utrecht-custom-checkbox-disabled-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
995
|
+
border-width: var(--utrecht-custom-checkbox-disabled-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
996
|
+
color: var(--utrecht-custom-checkbox-disabled-color, var(--utrecht-custom-checkbox-color));
|
|
997
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.utrecht-custom-checkbox__box--indeterminate {
|
|
1001
|
+
color: var(--utrecht-custom-checkbox-indeterminate-color, var(--utrecht-custom-checkbox-color));
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.utrecht-custom-checkbox__box--invalid {
|
|
1005
|
+
background-color: var(--utrecht-custom-checkbox-invalid-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
1006
|
+
border-color: var(--utrecht-custom-checkbox-invalid-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
1007
|
+
border-width: var(--utrecht-custom-checkbox-invalid-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
1008
|
+
color: var(--utrecht-custom-checkbox-invalid-color, var(--utrecht-custom-checkbox-color));
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.utrecht-custom-checkbox__box--active {
|
|
1012
|
+
background-color: var(--utrecht-custom-checkbox-active-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
1013
|
+
border-color: var(--utrecht-custom-checkbox-active-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
1014
|
+
border-width: var(--utrecht-custom-checkbox-active-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
1015
|
+
color: var(--utrecht-custom-checkbox-active-color, var(--utrecht-custom-checkbox-color));
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.utrecht-custom-checkbox__box--focus {
|
|
1019
|
+
background-color: var(--utrecht-custom-checkbox-focus-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
1020
|
+
border-color: var(--utrecht-custom-checkbox-focus-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
1021
|
+
border-width: var(--utrecht-custom-checkbox-focus-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
1022
|
+
color: var(--utrecht-custom-checkbox-focus-color, var(--utrecht-custom-checkbox-color));
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.utrecht-custom-checkbox__box--focus-visible {
|
|
1026
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1027
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1028
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
1029
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1030
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.utrecht-custom-checkbox__input:indeterminate ~ .utrecht-custom-checkbox__box {
|
|
1034
|
+
color: var(--utrecht-custom-checkbox-indeterminate-color, var(--utrecht-custom-checkbox-color));
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.utrecht-custom-checkbox__input:focus ~ .utrecht-custom-checkbox__box {
|
|
1038
|
+
background-color: var(--utrecht-custom-checkbox-focus-background-color, var(--utrecht-custom-checkbox-background-color));
|
|
1039
|
+
border-color: var(--utrecht-custom-checkbox-focus-border-color, var(--utrecht-custom-checkbox-border-color));
|
|
1040
|
+
border-width: var(--utrecht-custom-checkbox-focus-border-width, var(--utrecht-custom-checkbox-border-width));
|
|
1041
|
+
color: var(--utrecht-custom-checkbox-focus-color, var(--utrecht-custom-checkbox-color));
|
|
1042
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1043
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1044
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
1045
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1046
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.utrecht-custom-checkbox__input:focus:not(:focus-visible) ~ .utrecht-custom-checkbox__box {
|
|
1050
|
+
/* undo focus ring */
|
|
1051
|
+
box-shadow: none;
|
|
1052
|
+
outline-style: none;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.utrecht-custom-checkbox__icon--checked,
|
|
1056
|
+
.utrecht-custom-checkbox__icon--indeterminate {
|
|
1057
|
+
display: none;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.utrecht-custom-checkbox__box--checked .utrecht-custom-checkbox__icon--checked {
|
|
1061
|
+
display: block;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.utrecht-custom-checkbox__box--indeterminate .utrecht-custom-checkbox__icon--indeterminate {
|
|
1065
|
+
display: block;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* @license EUPL-1.2
|
|
1070
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1071
|
+
*/
|
|
1072
|
+
/**
|
|
1073
|
+
* @license EUPL-1.2
|
|
1074
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1075
|
+
*/
|
|
1076
|
+
/**
|
|
1077
|
+
* @license EUPL-1.2
|
|
1078
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1079
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1080
|
+
*/
|
|
1081
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1082
|
+
.utrecht-custom-radio-button {
|
|
1083
|
+
-webkit-appearance: none;
|
|
1084
|
+
-moz-appearance: none;
|
|
1085
|
+
appearance: none;
|
|
1086
|
+
background-color: var(--utrecht-custom-radio-button-background-color);
|
|
1087
|
+
background-position: center;
|
|
1088
|
+
background-repeat: no-repeat;
|
|
1089
|
+
background-size: contain;
|
|
1090
|
+
border-color: var(--utrecht-custom-radio-button-border-color);
|
|
1091
|
+
border-radius: 50%;
|
|
1092
|
+
border-style: solid;
|
|
1093
|
+
border-width: var(--utrecht-custom-radio-button-border-width);
|
|
1094
|
+
height: var(--utrecht-custom-radio-button-size);
|
|
1095
|
+
margin-block-start: var(--utrecht-custom-radio-button-margin-block-start);
|
|
1096
|
+
-webkit-print-color-adjust: exact;
|
|
1097
|
+
print-color-adjust: exact;
|
|
1098
|
+
vertical-align: top;
|
|
1099
|
+
width: var(--utrecht-custom-radio-button-size);
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.utrecht-custom-radio-button:checked,
|
|
1103
|
+
.utrecht-custom-radio-button--checked {
|
|
1104
|
+
background-color: var(--utrecht-custom-radio-button-checked-background-color, var(--utrecht-custom-radio-button-background-color));
|
|
1105
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='-4 -4 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
|
1106
|
+
border-color: var(--utrecht-custom-radio-button-checked-border-color, var(--utrecht-custom-radio-button-border-color));
|
|
1107
|
+
border-width: var(--utrecht-custom-radio-button-checked-border-width, var(--utrecht-custom-radio-button-border-width));
|
|
1108
|
+
color: var(--utrecht-custom-radio-button-checked-color, var(--utrecht-custom-radio-button-color));
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.utrecht-custom-radio-button:active,
|
|
1112
|
+
.utrecht-custom-radio-button--active {
|
|
1113
|
+
background-color: var(--utrecht-custom-radio-button-active-background-color, var(--utrecht-custom-radio-button-background-color));
|
|
1114
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='-4 -4 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
|
1115
|
+
border-color: var(--utrecht-custom-radio-button-active-border-color, var(--utrecht-custom-radio-button-border-color));
|
|
1116
|
+
border-width: var(--utrecht-custom-radio-button-active-border-width, var(--utrecht-custom-radio-button-border-width));
|
|
1117
|
+
color: var(--utrecht-custom-radio-button-active-color, var(--utrecht-custom-radio-button-color));
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.utrecht-custom-radio-button--focus,
|
|
1121
|
+
.utrecht-custom-radio-button:focus {
|
|
1122
|
+
border-color: var(--utrecht-custom-radio-button-focus-border-color, var(--utrecht-custom-radio-button-border-color));
|
|
1123
|
+
border-width: var(--utrecht-custom-radio-button-focus-border-width, var(--utrecht-custom-radio-button-border-width));
|
|
1124
|
+
color: var(--utrecht-custom-radio-button-focus-color, var(--utrecht-custom-radio-button-color));
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.utrecht-custom-radio-button:focus-visible,
|
|
1128
|
+
.utrecht-custom-radio-button--focus-visible {
|
|
1129
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1130
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1131
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
1132
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1133
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.utrecht-custom-radio-button--disabled {
|
|
1137
|
+
background-color: var(--utrecht-custom-radio-button-disabled-background-color, var(--utrecht-custom-radio-button-background-color));
|
|
1138
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='-4 -4 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
|
1139
|
+
border-color: var(--utrecht-custom-radio-button-disabled-border-color, var(--utrecht-custom-radio-button-border-color));
|
|
1140
|
+
border-width: var(--utrecht-custom-radio-button-disabled-border-width, var(--utrecht-custom-radio-button-border-width));
|
|
1141
|
+
color: var(--utrecht-custom-radio-button-disabled-color, var(--utrecht-custom-radio-button-color));
|
|
1142
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.utrecht-custom-radio-button--invalid {
|
|
1146
|
+
background-color: var(--utrecht-custom-radio-button-invalid-background-color, var(--utrecht-custom-radio-button-background-color));
|
|
1147
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='-4 -4 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
|
1148
|
+
border-color: var(--utrecht-custom-radio-button-invalid-border-color, var(--utrecht-custom-radio-button-border-color));
|
|
1149
|
+
border-width: var(--utrecht-custom-radio-button-invalid-border-width, var(--utrecht-custom-radio-button-border-width));
|
|
1150
|
+
color: var(--utrecht-custom-radio-button-invalid-color, var(--utrecht-custom-radio-button-color));
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
/**
|
|
1154
|
+
* @license EUPL-1.2
|
|
1155
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1156
|
+
*/
|
|
1157
|
+
.utrecht-digid-button {
|
|
1158
|
+
--utrecht-button-min-block-size: var(--utrecht-digid-button-block-size, 50px);
|
|
1159
|
+
--utrecht-logo-max-height: var(--utrecht-digid-button-block-size, 50px);
|
|
1160
|
+
--utrecht-logo-max-width: var(--utrecht-digid-button-block-size, 50px);
|
|
1161
|
+
block-size: var(--utrecht-digid-button-block-size, 50px);
|
|
1162
|
+
display: inline-flex;
|
|
1163
|
+
gap: var(--utrecht-space-inline-sm);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.utrecht-digid-button__logo {
|
|
1167
|
+
order: 1;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.utrecht-digid-button__button {
|
|
1171
|
+
order: 2;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* @license EUPL-1.2
|
|
1176
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1177
|
+
*/
|
|
1178
|
+
/**
|
|
1179
|
+
* @license EUPL-1.2
|
|
1180
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1181
|
+
*/
|
|
1182
|
+
.utrecht-document {
|
|
1183
|
+
/* reset `font-smoothing: antialiasing`, prefer automatic (`subpixel-antialiasing`) behavior for high-dpi screens */
|
|
1184
|
+
color: var(--utrecht-document-color, inherit);
|
|
1185
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1186
|
+
font-size: var(--utrecht-document-font-size, inherit);
|
|
1187
|
+
font-weight: var(--utrecht-document-font-weight, inherit);
|
|
1188
|
+
line-height: var(--utrecht-document-line-height, inherit);
|
|
1189
|
+
text-rendering: optimizeLegibility;
|
|
1190
|
+
}
|
|
1191
|
+
.utrecht-document :lang(ar) {
|
|
1192
|
+
/* `letter-spacing` design tokens break Arabic text rendering, avoid that */
|
|
1193
|
+
letter-spacing: 0 !important;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.utrecht-document--surface {
|
|
1197
|
+
background-color: var(--utrecht-document-background-color, inherit);
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
/**
|
|
1201
|
+
* @license EUPL-1.2
|
|
1202
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1203
|
+
*/
|
|
1204
|
+
/**
|
|
1205
|
+
* @license EUPL-1.2
|
|
1206
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1207
|
+
*/
|
|
1208
|
+
.utrecht-emphasis--stressed {
|
|
1209
|
+
font-style: var(--utrecht-emphasis-stressed-font-style, italic);
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.utrecht-emphasis--strong {
|
|
1213
|
+
font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
/**
|
|
1217
|
+
* @license EUPL-1.2
|
|
1218
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1219
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1220
|
+
*/
|
|
1221
|
+
/**
|
|
1222
|
+
* @license EUPL-1.2
|
|
1223
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1224
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1225
|
+
*/
|
|
1226
|
+
.utrecht-form-field-checkbox-group {
|
|
1227
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1228
|
+
font-size: var(--utrecht-paragraph-font-size);
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.utrecht-form-field-checkbox-group--distanced {
|
|
1232
|
+
margin-block-end: var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1233
|
+
margin-block-start: var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.utrecht-form-field-checkbox-group__label {
|
|
1237
|
+
margin-block-end: var(--utrecht-paragraph-margin-block-end);
|
|
1238
|
+
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
/**
|
|
1242
|
+
* @license EUPL-1.2
|
|
1243
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1244
|
+
*/
|
|
1245
|
+
/**
|
|
1246
|
+
* @license EUPL-1.2
|
|
1247
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1248
|
+
*/
|
|
1249
|
+
/**
|
|
1250
|
+
* @license EUPL-1.2
|
|
1251
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1252
|
+
*/
|
|
1253
|
+
.utrecht-form-field {
|
|
1254
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1255
|
+
max-inline-size: var(--utrecht-form-field-max-inline-size);
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.utrecht-form-field--distanced {
|
|
1259
|
+
margin-block-end: var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1260
|
+
margin-block-start: var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.utrecht-form-field__label--checkbox {
|
|
1264
|
+
margin-inline-start: 1ch;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
/**
|
|
1268
|
+
* @license EUPL-1.2
|
|
1269
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1270
|
+
*/
|
|
1271
|
+
/**
|
|
1272
|
+
* @license EUPL-1.2
|
|
1273
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1274
|
+
*/
|
|
1275
|
+
.utrecht-form-field-description {
|
|
1276
|
+
color: var(--utrecht-form-field-description-color);
|
|
1277
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1278
|
+
font-size: var(--utrecht-form-field-description-font-size, inherit);
|
|
1279
|
+
font-style: var(--utrecht-form-field-description-font-style);
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.utrecht-form-field-description--distanced {
|
|
1283
|
+
margin-block-end: var(--utrecht-form-field-description-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1284
|
+
margin-block-start: var(--utrecht-form-field-description-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.utrecht-form-field-description--invalid {
|
|
1288
|
+
color: var(--utrecht-form-field-description-invalid-color, var(--utrecht-feedback-invalid-color, var(--utrecht-feedback-danger-color)));
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.utrecht-form-field-description--valid {
|
|
1292
|
+
color: var(--utrecht-form-field-description-valid-color, var(--utrecht-feedback-valid-color, var(--utrecht-feedback-safe-color)));
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.utrecht-form-field-description--warning {
|
|
1296
|
+
color: var(--utrecht-form-field-description-warning-color, var(--utrecht-feedback-warning-color));
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* @license EUPL-1.2
|
|
1301
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1302
|
+
*/
|
|
1303
|
+
.utrecht-form-field-radio-group {
|
|
1304
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1305
|
+
font-size: var(--utrecht-paragraph-font-size);
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.utrecht-form-field-radio-group--distanced {
|
|
1309
|
+
margin-block-end: var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1310
|
+
margin-block-start: var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.utrecht-form-field-radio-group__label {
|
|
1314
|
+
margin-block-end: var(--utrecht-paragraph-margin-block-end);
|
|
1315
|
+
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
/**
|
|
1319
|
+
* @license EUPL-1.2
|
|
1320
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1321
|
+
*/
|
|
1322
|
+
.utrecht-form-field-radio {
|
|
1323
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1324
|
+
font-size: var(--utrecht-paragraph-font-size);
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.utrecht-form-field-radio--distanced {
|
|
1328
|
+
margin-block-end: var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1329
|
+
margin-block-start: var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.utrecht-form-field-radio__label {
|
|
1333
|
+
margin-inline-start: 1ch;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
/**
|
|
1337
|
+
* @license EUPL-1.2
|
|
1338
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1339
|
+
*/
|
|
1340
|
+
.utrecht-form-field-textbox {
|
|
1341
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
/**
|
|
1345
|
+
* @license EUPL-1.2
|
|
1346
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1347
|
+
*/
|
|
1348
|
+
/**
|
|
1349
|
+
* @license EUPL-1.2
|
|
1350
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1351
|
+
*/
|
|
1352
|
+
.utrecht-form-field {
|
|
1353
|
+
font-family: var(--utrecht-document-font-family, inherit);
|
|
1354
|
+
max-inline-size: var(--utrecht-form-field-max-inline-size);
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.utrecht-form-field--distanced {
|
|
1358
|
+
margin-block-end: var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
1359
|
+
margin-block-start: var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
/**
|
|
1363
|
+
* @license EUPL-1.2
|
|
1364
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1365
|
+
*/
|
|
1366
|
+
/**
|
|
1367
|
+
* @license EUPL-1.2
|
|
1368
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1369
|
+
*/
|
|
1370
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1371
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1372
|
+
.utrecht-form-fieldset--html-fieldset {
|
|
1373
|
+
border: 0;
|
|
1374
|
+
margin-inline-end: 0;
|
|
1375
|
+
margin-inline-start: 0;
|
|
1376
|
+
min-width: 0;
|
|
1377
|
+
padding-block-end: 0;
|
|
1378
|
+
padding-block-start: 0.01em;
|
|
1379
|
+
padding-inline-end: 0;
|
|
1380
|
+
padding-inline-start: 0;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.utrecht-form-fieldset__legend--html-legend {
|
|
1384
|
+
padding-inline-end: 0;
|
|
1385
|
+
padding-inline-start: 0;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.utrecht-form-fieldset--distanced {
|
|
1389
|
+
margin-block-end: var(--utrecht-form-fieldset-margin-block-end, 0);
|
|
1390
|
+
margin-block-start: var(--utrecht-form-fieldset-margin-block-start, 0);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.utrecht-form-fieldset__legend {
|
|
1394
|
+
color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
|
|
1395
|
+
font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
|
|
1396
|
+
font-size: var(--utrecht-form-fieldset-legend-font-size);
|
|
1397
|
+
font-weight: var(--utrecht-form-fieldset-legend-font-weight);
|
|
1398
|
+
line-height: var(--utrecht-form-fieldset-legend-line-height);
|
|
1399
|
+
page-break-after: avoid;
|
|
1400
|
+
page-break-inside: avoid;
|
|
1401
|
+
text-transform: var(--utrecht-form-fieldset-legend-text-transform);
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.utrecht-form-fieldset__legend--distanced {
|
|
1405
|
+
margin-block-end: var(--utrecht-form-fieldset-legend-margin-block-end);
|
|
1406
|
+
margin-block-start: var(--utrecht-form-fieldset-legend-margin-block-start);
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* @license EUPL-1.2
|
|
1411
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1412
|
+
*/
|
|
1413
|
+
/**
|
|
1414
|
+
* @license EUPL-1.2
|
|
1415
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1416
|
+
*/
|
|
1417
|
+
.utrecht-form-label {
|
|
1418
|
+
color: var(--utrecht-form-label-color);
|
|
1419
|
+
font-size: var(--utrecht-form-label-font-size);
|
|
1420
|
+
font-weight: var(--utrecht-form-label-font-weight);
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.utrecht-form-label--checkbox {
|
|
1424
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
1425
|
+
font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.utrecht-form-label--checked {
|
|
1429
|
+
font-weight: var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight));
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.utrecht-form-label--disabled {
|
|
1433
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1434
|
+
font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.utrecht-form-label--radio {
|
|
1438
|
+
color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
|
|
1439
|
+
font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
/**
|
|
1443
|
+
* @license EUPL-1.2
|
|
1444
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1445
|
+
*/
|
|
1446
|
+
.utrecht-form-toggle {
|
|
1447
|
+
align-items: center;
|
|
1448
|
+
border-color: var(--utrecht-form-toggle-border-color, currentColor);
|
|
1449
|
+
border-radius: var(--utrecht-form-toggle-border-radius, 999rem);
|
|
1450
|
+
border-style: var(--utrecht-form-toggle-border-style, solid);
|
|
1451
|
+
border-width: var(--utrecht-form-toggle-border-width, 1px);
|
|
1452
|
+
color: var(--utrecht-form-toggle-color);
|
|
1453
|
+
display: flex;
|
|
1454
|
+
height: var(--utrecht-form-toggle-height, 2em);
|
|
1455
|
+
padding-block-end: var(--utrecht-form-toggle-padding-block-end);
|
|
1456
|
+
padding-block-start: var(--utrecht-form-toggle-padding-block-start);
|
|
1457
|
+
padding-inline-end: var(--utrecht-form-toggle-padding-inline-end);
|
|
1458
|
+
padding-inline-start: var(--utrecht-form-toggle-padding-inline-start);
|
|
1459
|
+
position: relative;
|
|
1460
|
+
user-select: none;
|
|
1461
|
+
width: var(--utrecht-form-toggle-width, 6em);
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.utrecht-form-toggle--focus {
|
|
1465
|
+
border-color: var(--utrecht-form-toggle-focus-border-color, var(--utrecht-form-toggle-border-color, currentColor));
|
|
1466
|
+
border-style: var(--utrecht-form-toggle-focus-border-style, var(--utrecht-form-toggle-border-style, solid));
|
|
1467
|
+
border-width: var(--utrecht-form-toggle-focus-border-width, var(--utrecht-form-toggle-border-width, 1px));
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.utrecht-form-toggle--hover {
|
|
1471
|
+
background-color: var(--utrecht-form-toggle-hover-background-color, var(--utrecht-form-toggle-background-color));
|
|
1472
|
+
color: var(--utrecht-form-toggle-hover-color, var(--utrecht-form-toggle-color));
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.utrecht-form-toggle--disabled {
|
|
1476
|
+
border-color: var(--utrecht-form-toggle-disabled-border-color, var(--utrecht-form-toggle-border-color, currentColor));
|
|
1477
|
+
border-style: var(--utrecht-form-toggle-disabled-border-style, var(--utrecht-form-toggle-border-style, solid));
|
|
1478
|
+
border-width: var(--utrecht-form-toggle-disabled-border-width, var(--utrecht-form-toggle-border-width, 1px));
|
|
1479
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
.utrecht-form-toggle__thumb {
|
|
1483
|
+
/* To have a circle or square by default (1:1 aspect ratio) we use the `min-inline-size` design token for both `inline` and `block` direction. */
|
|
1484
|
+
background-color: var(--utrecht-form-toggle-thumb-background-color, currentColor);
|
|
1485
|
+
border-radius: var(--utrecht-form-toggle-thumb-border-radius, 50%);
|
|
1486
|
+
box-shadow: var(--utrecht-form-toggle-thumb-box-shadow);
|
|
1487
|
+
margin-inline-end: var(--utrecht-form-toggle-thumb-margin-inline-end, 0);
|
|
1488
|
+
margin-inline-start: var(--utrecht-form-toggle-thumb-margin-inline-start, 0);
|
|
1489
|
+
min-block-size: var(--utrecht-form-toggle-thumb-min-inline-size, 1.5em);
|
|
1490
|
+
min-inline-size: var(--utrecht-form-toggle-thumb-min-inline-size, 1.5em);
|
|
1491
|
+
z-index: 20;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
.utrecht-form-toggle__thumb--checked, .utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:checked ~ .utrecht-form-toggle__track .utrecht-form-toggle__thumb {
|
|
1495
|
+
margin-inline-start: auto;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.utrecht-form-toggle__thumb--not-checked, .utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:not(:checked) ~ .utrecht-form-toggle__track .utrecht-form-toggle__thumb {
|
|
1499
|
+
margin-inline-end: auto;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.utrecht-form-toggle__thumb--disabled, .utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:disabled ~ .utrecht-form-toggle__track .utrecht-form-toggle__thumb {
|
|
1503
|
+
background-color: var(--utrecht-form-toggle-thumb-disabled-background-color, #aaa);
|
|
1504
|
+
box-shadow: var(--utrecht-form-toggle-thumb-disabled-box-shadow, 0);
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.utrecht-form-toggle__track {
|
|
1508
|
+
align-items: center;
|
|
1509
|
+
background-color: var(--utrecht-form-toggle-accent-color);
|
|
1510
|
+
border-radius: var(--utrecht-form-toggle-track-border-radius, var(--utrecht-form-toggle-border-radius));
|
|
1511
|
+
display: flex;
|
|
1512
|
+
height: 100%;
|
|
1513
|
+
width: 100%;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
.utrecht-form-toggle__track--checked, .utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:checked ~ .utrecht-form-toggle__track {
|
|
1517
|
+
background-color: var(--utrecht-form-toggle-checked-accent-color, var(--utrecht-form-toggle-accent-color));
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.utrecht-form-toggle__track--disabled, .utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:disabled ~ .utrecht-form-toggle__track {
|
|
1521
|
+
background-color: var(--utrecht-form-toggle-background-disabled-background-color, #ddd);
|
|
1522
|
+
color: var(--utrecht-form-toggle-disabled-color, black);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox {
|
|
1526
|
+
/* Source: https://kittygiraudel.com/snippets/sr-only-class/ */
|
|
1527
|
+
border: 0 !important;
|
|
1528
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
1529
|
+
-webkit-clip-path: inset(50%) !important;
|
|
1530
|
+
clip-path: inset(50%) !important;
|
|
1531
|
+
height: 1px !important;
|
|
1532
|
+
/* stylelint-disable-next-line property-disallowed-list */
|
|
1533
|
+
margin: -1px !important;
|
|
1534
|
+
overflow: hidden !important;
|
|
1535
|
+
/* stylelint-disable-next-line property-disallowed-list */
|
|
1536
|
+
padding: 0 !important;
|
|
1537
|
+
position: absolute !important;
|
|
1538
|
+
white-space: nowrap !important;
|
|
1539
|
+
width: 1px !important;
|
|
1540
|
+
}
|
|
1541
|
+
.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:focus ~ .utrecht-form-toggle__track {
|
|
1542
|
+
outline-color: var(--utrecht-form-toggle-focus-border-color, var(--utrecht-form-toggle-border-color, currentColor));
|
|
1543
|
+
outline-style: var(--utrecht-form-toggle-focus-border-style, var(--utrecht-form-toggle-border-style, solid));
|
|
1544
|
+
outline-width: var(--utrecht-form-toggle-focus-border-width, var(--utrecht-form-toggle-border-width, 1px));
|
|
1545
|
+
}
|
|
1546
|
+
/**
|
|
1547
|
+
* @license EUPL-1.2
|
|
1548
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1549
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1550
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1551
|
+
*/
|
|
1552
|
+
/**
|
|
1553
|
+
* @license EUPL-1.2
|
|
1554
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1555
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1556
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1557
|
+
*/
|
|
1558
|
+
/**
|
|
1559
|
+
* @license EUPL-1.2
|
|
1560
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1561
|
+
*/
|
|
1562
|
+
.utrecht-heading-1 {
|
|
1563
|
+
page-break-after: avoid;
|
|
1564
|
+
page-break-inside: avoid;
|
|
1565
|
+
color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1566
|
+
font-family: var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1567
|
+
font-size: var(--utrecht-heading-1-font-size);
|
|
1568
|
+
font-weight: var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1569
|
+
letter-spacing: var(--utrecht-heading-1-letter-spacing);
|
|
1570
|
+
line-height: var(--utrecht-heading-1-line-height);
|
|
1571
|
+
margin-block-end: 0;
|
|
1572
|
+
margin-block-start: 0;
|
|
1573
|
+
text-transform: var(--utrecht-heading-1-text-transform, inherit);
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.utrecht-heading-1--distanced {
|
|
1577
|
+
margin-block-end: var(--utrecht-heading-1-margin-block-end);
|
|
1578
|
+
margin-block-start: var(--utrecht-heading-1-margin-block-start);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* @license EUPL-1.2
|
|
1583
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1584
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1585
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1586
|
+
*/
|
|
1587
|
+
/**
|
|
1588
|
+
* @license EUPL-1.2
|
|
1589
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1590
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1591
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1592
|
+
*/
|
|
1593
|
+
/**
|
|
1594
|
+
* @license EUPL-1.2
|
|
1595
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1596
|
+
*/
|
|
1597
|
+
.utrecht-heading-2 {
|
|
1598
|
+
page-break-after: avoid;
|
|
1599
|
+
page-break-inside: avoid;
|
|
1600
|
+
color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1601
|
+
font-family: var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1602
|
+
font-size: var(--utrecht-heading-2-font-size);
|
|
1603
|
+
font-weight: var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1604
|
+
letter-spacing: var(--utrecht-heading-2-letter-spacing);
|
|
1605
|
+
line-height: var(--utrecht-heading-2-line-height);
|
|
1606
|
+
margin-block-end: 0;
|
|
1607
|
+
margin-block-start: 0;
|
|
1608
|
+
text-transform: var(--utrecht-heading-2-text-transform, inherit);
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
.utrecht-heading-2--distanced {
|
|
1612
|
+
margin-block-end: var(--utrecht-heading-2-margin-block-end);
|
|
1613
|
+
margin-block-start: var(--utrecht-heading-2-margin-block-start);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
/**
|
|
1617
|
+
* @license EUPL-1.2
|
|
1618
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1619
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1620
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1621
|
+
*/
|
|
1622
|
+
/**
|
|
1623
|
+
* @license EUPL-1.2
|
|
1624
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1625
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1626
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1627
|
+
*/
|
|
1628
|
+
/**
|
|
1629
|
+
* @license EUPL-1.2
|
|
1630
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1631
|
+
*/
|
|
1632
|
+
.utrecht-heading-3 {
|
|
1633
|
+
page-break-after: avoid;
|
|
1634
|
+
page-break-inside: avoid;
|
|
1635
|
+
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1636
|
+
font-family: var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1637
|
+
font-size: var(--utrecht-heading-3-font-size);
|
|
1638
|
+
font-weight: var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1639
|
+
letter-spacing: var(--utrecht-heading-3-letter-spacing);
|
|
1640
|
+
line-height: var(--utrecht-heading-3-line-height);
|
|
1641
|
+
margin-block-end: 0;
|
|
1642
|
+
margin-block-start: 0;
|
|
1643
|
+
text-transform: var(--utrecht-heading-3-text-transform, inherit);
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.utrecht-heading-3--distanced {
|
|
1647
|
+
margin-block-end: var(--utrecht-heading-3-margin-block-end);
|
|
1648
|
+
margin-block-start: var(--utrecht-heading-3-margin-block-start);
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* @license EUPL-1.2
|
|
1653
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1654
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1655
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1656
|
+
*/
|
|
1657
|
+
/**
|
|
1658
|
+
* @license EUPL-1.2
|
|
1659
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1660
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1661
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1662
|
+
*/
|
|
1663
|
+
/**
|
|
1664
|
+
* @license EUPL-1.2
|
|
1665
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1666
|
+
*/
|
|
1667
|
+
.utrecht-heading-4 {
|
|
1668
|
+
page-break-after: avoid;
|
|
1669
|
+
page-break-inside: avoid;
|
|
1670
|
+
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1671
|
+
font-family: var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1672
|
+
font-size: var(--utrecht-heading-4-font-size);
|
|
1673
|
+
font-weight: var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1674
|
+
letter-spacing: var(--utrecht-heading-4-letter-spacing);
|
|
1675
|
+
line-height: var(--utrecht-heading-4-line-height);
|
|
1676
|
+
margin-block-end: 0;
|
|
1677
|
+
margin-block-start: 0;
|
|
1678
|
+
text-transform: var(--utrecht-heading-4-text-transform, inherit);
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.utrecht-heading-4--distanced {
|
|
1682
|
+
margin-block-end: var(--utrecht-heading-4-margin-block-end);
|
|
1683
|
+
margin-block-start: var(--utrecht-heading-4-margin-block-start);
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
/**
|
|
1687
|
+
* @license EUPL-1.2
|
|
1688
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1689
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1690
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1691
|
+
*/
|
|
1692
|
+
/**
|
|
1693
|
+
* @license EUPL-1.2
|
|
1694
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1695
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1696
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1697
|
+
*/
|
|
1698
|
+
/**
|
|
1699
|
+
* @license EUPL-1.2
|
|
1700
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1701
|
+
*/
|
|
1702
|
+
.utrecht-heading-5 {
|
|
1703
|
+
page-break-after: avoid;
|
|
1704
|
+
page-break-inside: avoid;
|
|
1705
|
+
color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1706
|
+
font-family: var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1707
|
+
font-size: var(--utrecht-heading-5-font-size);
|
|
1708
|
+
font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1709
|
+
letter-spacing: var(--utrecht-heading-5-letter-spacing);
|
|
1710
|
+
line-height: var(--utrecht-heading-5-line-height);
|
|
1711
|
+
margin-block-end: 0;
|
|
1712
|
+
margin-block-start: 0;
|
|
1713
|
+
text-transform: var(--utrecht-heading-5-text-transform, inherit);
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.utrecht-heading-5--distanced {
|
|
1717
|
+
margin-block-end: var(--utrecht-heading-5-margin-block-end);
|
|
1718
|
+
margin-block-start: var(--utrecht-heading-5-margin-block-start);
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
/**
|
|
1722
|
+
* @license EUPL-1.2
|
|
1723
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1724
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1725
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1726
|
+
*/
|
|
1727
|
+
/**
|
|
1728
|
+
* @license EUPL-1.2
|
|
1729
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1730
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1731
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1732
|
+
*/
|
|
1733
|
+
/**
|
|
1734
|
+
* @license EUPL-1.2
|
|
1735
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
1736
|
+
*/
|
|
1737
|
+
.utrecht-heading-6 {
|
|
1738
|
+
page-break-after: avoid;
|
|
1739
|
+
page-break-inside: avoid;
|
|
1740
|
+
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
1741
|
+
font-family: var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
1742
|
+
font-size: var(--utrecht-heading-6-font-size);
|
|
1743
|
+
font-weight: var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
1744
|
+
letter-spacing: var(--utrecht-heading-6-letter-spacing);
|
|
1745
|
+
line-height: var(--utrecht-heading-6-line-height);
|
|
1746
|
+
margin-block-end: 0;
|
|
1747
|
+
margin-block-start: 0;
|
|
1748
|
+
text-transform: var(--utrecht-heading-6-text-transform, inherit);
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.utrecht-heading-6--distanced {
|
|
1752
|
+
margin-block-end: var(--utrecht-heading-6-margin-block-end);
|
|
1753
|
+
margin-block-start: var(--utrecht-heading-6-margin-block-start);
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* @license EUPL-1.2
|
|
1758
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1759
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1760
|
+
*/
|
|
1761
|
+
/* reset before other stylesheets */
|
|
1762
|
+
.utrecht-link-list,
|
|
1763
|
+
.utrecht-link-list--html-ul {
|
|
1764
|
+
margin-block-end: 0;
|
|
1765
|
+
margin-block-start: 0;
|
|
1766
|
+
margin-inline-end: 0;
|
|
1767
|
+
margin-inline-start: 0;
|
|
1768
|
+
padding-inline-start: 0;
|
|
1769
|
+
}
|
|
1770
|
+
.utrecht-link-list > li,
|
|
1771
|
+
.utrecht-link-list--html-ul > li {
|
|
1772
|
+
list-style: none;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.utrecht-link-list {
|
|
1776
|
+
--utrecht-link-text-decoration: none;
|
|
1777
|
+
--utrecht-link-hover-text-decoration: underline;
|
|
1778
|
+
--utrecht-link-focus-text-decoration: underline;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.utrecht-link-list--distanced {
|
|
1782
|
+
margin-block-end: var(--utrecht-link-list-margin-block-end, 0);
|
|
1783
|
+
margin-block-start: var(--utrecht-link-list-margin-block-start, 0);
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.utrecht-link-list__marker, .utrecht-link-list__item > a::before {
|
|
1787
|
+
background-image: var(--utrecht-link-list-marker-background-image);
|
|
1788
|
+
background-position-x: left;
|
|
1789
|
+
background-position-y: bottom;
|
|
1790
|
+
background-repeat: no-repeat;
|
|
1791
|
+
display: inline-block;
|
|
1792
|
+
inline-size: var(--utrecht-link-list-marker-inline-size);
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.utrecht-link-list__item {
|
|
1796
|
+
display: block;
|
|
1797
|
+
font-weight: var(--utrecht-link-list-item-font-weight);
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.utrecht-link-list__item + .utrecht-link-list__item {
|
|
1801
|
+
margin-block-start: var(--utrecht-link-list-item-margin-block-start);
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.utrecht-link-list__item > a {
|
|
1805
|
+
display: block;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.utrecht-link-list__item > a::before {
|
|
1809
|
+
content: "";
|
|
1810
|
+
display: inline-block;
|
|
1811
|
+
height: 1em;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
/**
|
|
1815
|
+
* @license EUPL-1.2
|
|
1816
|
+
* Copyright (c) 2022 Robbert Broersma
|
|
1817
|
+
*/
|
|
1818
|
+
/**
|
|
1819
|
+
* @license EUPL-1.2
|
|
1820
|
+
* Copyright (c) 2022 Robbert Broersma
|
|
1821
|
+
*/
|
|
1822
|
+
/**
|
|
1823
|
+
* @license EUPL-1.2
|
|
1824
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1825
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1826
|
+
*/
|
|
1827
|
+
/* stylelint-disable scss/no-global-function-names */
|
|
1828
|
+
/**
|
|
1829
|
+
* @license EUPL-1.2
|
|
1830
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1831
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1832
|
+
*/
|
|
1833
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1834
|
+
/*
|
|
1835
|
+
|
|
1836
|
+
# CSS implementation
|
|
1837
|
+
|
|
1838
|
+
## `text-decoration-skip`
|
|
1839
|
+
|
|
1840
|
+
`text-decoration-skip` can be helpful to avoid making some texts unreadable.
|
|
1841
|
+
For example by obscuring Arabic diacritics.
|
|
1842
|
+
|
|
1843
|
+
However, the combination of a greater thickness and skipping this thick underline
|
|
1844
|
+
leads to a very unappealing rendering of the underline. To avoid this,
|
|
1845
|
+
`text-decoration-skip` is disabled for interactive states.
|
|
1846
|
+
|
|
1847
|
+
For design token configurations that have identical thickness for normal and interactive
|
|
1848
|
+
states, this will lead to the (undesirable) effect that the focus/hover effect is switching
|
|
1849
|
+
from an interrupted to an uninterrupted underline (for some texts).
|
|
1850
|
+
|
|
1851
|
+
Apart from making `skip-ink` configurable for normal/focus/hover, there is no good solution yet.
|
|
1852
|
+
|
|
1853
|
+
---
|
|
1854
|
+
|
|
1855
|
+
Disabling `text-decoration-skip` for interactive states obscures some texts, and we assume for now
|
|
1856
|
+
that moving the pointer away from a link or having focus elsewhere first is simple enough to
|
|
1857
|
+
not make this too inconvenient.
|
|
1858
|
+
|
|
1859
|
+
---
|
|
1860
|
+
|
|
1861
|
+
Some folks implement the underline of links using `border-bottom` or even using a finely crafted
|
|
1862
|
+
`linear-gradient()` with a solid color at the bottom and transparent behind the text. These approaches
|
|
1863
|
+
would unfortunately not be able to provide the improved readability of `text-decoration-skip`.
|
|
1864
|
+
|
|
1865
|
+
## `text-decoration-thickness`
|
|
1866
|
+
|
|
1867
|
+
Varying `text-decoration-thickness` can be used to distinguish interactive states.
|
|
1868
|
+
|
|
1869
|
+
---
|
|
1870
|
+
|
|
1871
|
+
`text-decoration-thickness` appears to have rendering differences between Chrome and Safari.
|
|
1872
|
+
In Safari the line becomes thicker with extra pixels added to the bottom, while in Chrome
|
|
1873
|
+
the underline offset also seems to increase along with the thickness, which effectively means
|
|
1874
|
+
the underline is closer to the next line than in Safari.
|
|
1875
|
+
|
|
1876
|
+
---
|
|
1877
|
+
|
|
1878
|
+
It might be nice to use font-relative units for `text-decoration-thickness`, and that is why we
|
|
1879
|
+
use the `max()` function to ensure the underline remains visible for every font size.
|
|
1880
|
+
|
|
1881
|
+
## `transition`
|
|
1882
|
+
|
|
1883
|
+
`text-decoration-thickness` could be a candidate for animating between interactive states,
|
|
1884
|
+
however browsers don't seem to have implemented great looking supixel tweening yet.
|
|
1885
|
+
|
|
1886
|
+
`text-decoration-skip` also makes the transition more challenging to implement.
|
|
1887
|
+
|
|
1888
|
+
*/
|
|
1889
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1890
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1891
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1892
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1893
|
+
.utrecht-link-button {
|
|
1894
|
+
color: var(--utrecht-link-color, blue);
|
|
1895
|
+
text-decoration: var(--utrecht-link-text-decoration, underline);
|
|
1896
|
+
text-decoration-skip-ink: all;
|
|
1897
|
+
text-decoration-thickness: max(var(--utrecht-link-text-decoration-thickness), 1px);
|
|
1898
|
+
text-underline-offset: var(--utrecht-link-text-underline-offset);
|
|
1899
|
+
cursor: pointer;
|
|
1900
|
+
display: inline-flex;
|
|
1901
|
+
font-family: var(--utrecht-button-font-family, var(--utrecht-document-font-family));
|
|
1902
|
+
font-size: var(--utrecht-button-font-size, var(--utrecht-document-font-family));
|
|
1903
|
+
font-weight: var(--utrecht-button-font-weight);
|
|
1904
|
+
inline-size: var(--utrecht-button-inline-size, auto);
|
|
1905
|
+
letter-spacing: var(--utrecht-button-letter-spacing);
|
|
1906
|
+
min-block-size: var(--utrecht-button-min-block-size, 44px);
|
|
1907
|
+
min-inline-size: var(--utrecht-button-min-inline-size, 44px);
|
|
1908
|
+
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
1909
|
+
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
1910
|
+
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
1911
|
+
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
1912
|
+
text-transform: var(--utrecht-button-text-transform);
|
|
1913
|
+
user-select: none;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.utrecht-link-button--html-button {
|
|
1917
|
+
background-color: transparent;
|
|
1918
|
+
/* reset <button> styling */
|
|
1919
|
+
border-width: 0;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.utrecht-link-button--hover {
|
|
1923
|
+
color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
|
|
1924
|
+
text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1925
|
+
text-decoration-skip: none;
|
|
1926
|
+
text-decoration-skip-ink: none;
|
|
1927
|
+
text-decoration-thickness: max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
.utrecht-link-button--active {
|
|
1931
|
+
color: var(--utrecht-link-active-color, var(--utrecht-link-color));
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
.utrecht-link-button--focus {
|
|
1935
|
+
background-color: var(--utrecht-link-focus-background-color, transparent);
|
|
1936
|
+
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
1937
|
+
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
1938
|
+
text-decoration-skip: none;
|
|
1939
|
+
text-decoration-skip-ink: none;
|
|
1940
|
+
text-decoration-thickness: max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.utrecht-link-button--focus-visible {
|
|
1944
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
1945
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
1946
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
1947
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
1948
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
/**
|
|
1952
|
+
* @license EUPL-1.2
|
|
1953
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1954
|
+
*/
|
|
1955
|
+
.utrecht-link-social {
|
|
1956
|
+
--utrecht-icon-size: var(--utrecht-link-social-size);
|
|
1957
|
+
background-color: var(--utrecht-link-social-background-color);
|
|
1958
|
+
border-color: var(--utrecht-link-social-border-color);
|
|
1959
|
+
border-radius: 50%;
|
|
1960
|
+
border-style: solid;
|
|
1961
|
+
border-width: var(--utrecht-link-social-border-width);
|
|
1962
|
+
color: var(--utrecht-link-social-color);
|
|
1963
|
+
display: inline-block;
|
|
1964
|
+
height: var(--utrecht-link-social-size);
|
|
1965
|
+
text-align: center;
|
|
1966
|
+
width: var(--utrecht-link-social-size);
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.utrecht-link-social--distanced {
|
|
1970
|
+
margin-inline-start: var(--utrecht-link-social-margin-inline-start);
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
/**
|
|
1974
|
+
* @license EUPL-1.2
|
|
1975
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1976
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1977
|
+
*/
|
|
1978
|
+
/* stylelint-disable scss/no-global-function-names */
|
|
1979
|
+
/**
|
|
1980
|
+
* @license EUPL-1.2
|
|
1981
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1982
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1983
|
+
*/
|
|
1984
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1985
|
+
/**
|
|
1986
|
+
* @license EUPL-1.2
|
|
1987
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
1988
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1989
|
+
*/
|
|
1990
|
+
/* stylelint-disable scss/no-global-function-names */
|
|
1991
|
+
/**
|
|
1992
|
+
* @license EUPL-1.2
|
|
297
1993
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
1994
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
298
1995
|
*/
|
|
299
|
-
|
|
1996
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
1997
|
+
/*
|
|
1998
|
+
|
|
1999
|
+
# CSS implementation
|
|
2000
|
+
|
|
2001
|
+
## `text-decoration-skip`
|
|
2002
|
+
|
|
2003
|
+
`text-decoration-skip` can be helpful to avoid making some texts unreadable.
|
|
2004
|
+
For example by obscuring Arabic diacritics.
|
|
2005
|
+
|
|
2006
|
+
However, the combination of a greater thickness and skipping this thick underline
|
|
2007
|
+
leads to a very unappealing rendering of the underline. To avoid this,
|
|
2008
|
+
`text-decoration-skip` is disabled for interactive states.
|
|
2009
|
+
|
|
2010
|
+
For design token configurations that have identical thickness for normal and interactive
|
|
2011
|
+
states, this will lead to the (undesirable) effect that the focus/hover effect is switching
|
|
2012
|
+
from an interrupted to an uninterrupted underline (for some texts).
|
|
2013
|
+
|
|
2014
|
+
Apart from making `skip-ink` configurable for normal/focus/hover, there is no good solution yet.
|
|
2015
|
+
|
|
2016
|
+
---
|
|
2017
|
+
|
|
2018
|
+
Disabling `text-decoration-skip` for interactive states obscures some texts, and we assume for now
|
|
2019
|
+
that moving the pointer away from a link or having focus elsewhere first is simple enough to
|
|
2020
|
+
not make this too inconvenient.
|
|
2021
|
+
|
|
2022
|
+
---
|
|
2023
|
+
|
|
2024
|
+
Some folks implement the underline of links using `border-bottom` or even using a finely crafted
|
|
2025
|
+
`linear-gradient()` with a solid color at the bottom and transparent behind the text. These approaches
|
|
2026
|
+
would unfortunately not be able to provide the improved readability of `text-decoration-skip`.
|
|
2027
|
+
|
|
2028
|
+
## `text-decoration-thickness`
|
|
2029
|
+
|
|
2030
|
+
Varying `text-decoration-thickness` can be used to distinguish interactive states.
|
|
2031
|
+
|
|
2032
|
+
---
|
|
2033
|
+
|
|
2034
|
+
`text-decoration-thickness` appears to have rendering differences between Chrome and Safari.
|
|
2035
|
+
In Safari the line becomes thicker with extra pixels added to the bottom, while in Chrome
|
|
2036
|
+
the underline offset also seems to increase along with the thickness, which effectively means
|
|
2037
|
+
the underline is closer to the next line than in Safari.
|
|
2038
|
+
|
|
2039
|
+
---
|
|
2040
|
+
|
|
2041
|
+
It might be nice to use font-relative units for `text-decoration-thickness`, and that is why we
|
|
2042
|
+
use the `max()` function to ensure the underline remains visible for every font size.
|
|
2043
|
+
|
|
2044
|
+
## `transition`
|
|
2045
|
+
|
|
2046
|
+
`text-decoration-thickness` could be a candidate for animating between interactive states,
|
|
2047
|
+
however browsers don't seem to have implemented great looking supixel tweening yet.
|
|
2048
|
+
|
|
2049
|
+
`text-decoration-skip` also makes the transition more challenging to implement.
|
|
2050
|
+
|
|
2051
|
+
*/
|
|
2052
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2053
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2054
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2055
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2056
|
+
.utrecht-link {
|
|
2057
|
+
color: var(--utrecht-link-color, blue);
|
|
300
2058
|
text-decoration: var(--utrecht-link-text-decoration, underline);
|
|
2059
|
+
text-decoration-skip-ink: all;
|
|
2060
|
+
text-decoration-thickness: max(var(--utrecht-link-text-decoration-thickness), 1px);
|
|
2061
|
+
text-underline-offset: var(--utrecht-link-text-underline-offset);
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.utrecht-link--icon-left {
|
|
2065
|
+
background-image: var(--utrecht-link-icon-left-background-image, none);
|
|
2066
|
+
background-position: 0 0.25em;
|
|
2067
|
+
background-repeat: no-repeat;
|
|
301
2068
|
color: var(--utrecht-link-color, blue);
|
|
2069
|
+
font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
2070
|
+
padding-inline-start: var(--utrecht-space-block-md);
|
|
2071
|
+
text-decoration: none;
|
|
302
2072
|
}
|
|
303
2073
|
|
|
304
2074
|
.utrecht-link:visited,
|
|
305
|
-
.utrecht-link--visited
|
|
306
|
-
.utrecht-html a:visited {
|
|
2075
|
+
.utrecht-link--visited {
|
|
307
2076
|
color: var(--utrecht-link-visited-color, var(--utrecht-link-color));
|
|
308
2077
|
}
|
|
309
2078
|
|
|
310
2079
|
.utrecht-link:hover,
|
|
311
|
-
.utrecht-link--hover
|
|
312
|
-
.utrecht-html a:hover {
|
|
2080
|
+
.utrecht-link--hover {
|
|
313
2081
|
color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
|
|
314
2082
|
text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
2083
|
+
text-decoration-skip: none;
|
|
2084
|
+
text-decoration-skip-ink: none;
|
|
2085
|
+
text-decoration-thickness: max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
315
2086
|
}
|
|
316
2087
|
|
|
317
2088
|
.utrecht-link:active,
|
|
318
|
-
.utrecht-link--active
|
|
319
|
-
.utrecht-html a:active {
|
|
2089
|
+
.utrecht-link--active {
|
|
320
2090
|
color: var(--utrecht-link-active-color, var(--utrecht-link-color));
|
|
321
2091
|
}
|
|
322
2092
|
|
|
323
|
-
.utrecht-link
|
|
324
|
-
|
|
325
|
-
.utrecht-html a:focus {
|
|
2093
|
+
.utrecht-link--focus {
|
|
2094
|
+
background-color: var(--utrecht-link-focus-background-color, transparent);
|
|
326
2095
|
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
327
2096
|
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
328
|
-
|
|
329
|
-
|
|
2097
|
+
text-decoration-skip: none;
|
|
2098
|
+
text-decoration-skip-ink: none;
|
|
2099
|
+
text-decoration-thickness: max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
.utrecht-link--focus-visible {
|
|
2103
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
330
2104
|
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
331
|
-
|
|
2105
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2106
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2107
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
.utrecht-link:focus {
|
|
2111
|
+
background-color: var(--utrecht-link-focus-background-color, transparent);
|
|
2112
|
+
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
2113
|
+
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
2114
|
+
text-decoration-skip: none;
|
|
2115
|
+
text-decoration-skip-ink: none;
|
|
2116
|
+
text-decoration-thickness: max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
332
2117
|
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
333
|
-
outline-
|
|
334
|
-
|
|
2118
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2119
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2120
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2121
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.utrecht-link:focus:not(:focus-visible) {
|
|
2125
|
+
/* undo focus ring */
|
|
2126
|
+
box-shadow: none;
|
|
2127
|
+
outline-style: none;
|
|
335
2128
|
}
|
|
336
2129
|
|
|
337
2130
|
/* stylelint-disable-next-line block-no-empty */
|
|
338
|
-
|
|
2131
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2132
|
+
.utrecht-link--telephone {
|
|
339
2133
|
white-space: nowrap;
|
|
340
2134
|
}
|
|
341
2135
|
|
|
2136
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2137
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2138
|
+
/**
|
|
2139
|
+
* @license EUPL-1.2
|
|
2140
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2141
|
+
*/
|
|
2142
|
+
.utrecht-logo-button {
|
|
2143
|
+
--utrecht-button-min-block-size: var(--utrecht-logo-button-block-size, 50px);
|
|
2144
|
+
--utrecht-logo-max-height: var(--utrecht-logo-button-block-size, 50px);
|
|
2145
|
+
--utrecht-logo-max-width: var(--utrecht-logo-button-block-size, 50px);
|
|
2146
|
+
display: inline-flex;
|
|
2147
|
+
gap: var(--utrecht-space-inline-sm);
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.utrecht-logo-button__logo {
|
|
2151
|
+
order: 1;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
.utrecht-logo-button__button {
|
|
2155
|
+
order: 2;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
/**
|
|
2159
|
+
* @license EUPL-1.2
|
|
2160
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2161
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2162
|
+
*/
|
|
2163
|
+
/**
|
|
2164
|
+
* @license EUPL-1.2
|
|
2165
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2166
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2167
|
+
*/
|
|
2168
|
+
.utrecht-logo {
|
|
2169
|
+
max-height: var(--utrecht-logo-max-height, 192px);
|
|
2170
|
+
max-width: var(--utrecht-logo-max-width, 96px);
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.utrecht-logo__decoration-1 {
|
|
2174
|
+
fill: var(--utrecht-logo-decoration-1-color, #fff);
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.utrecht-logo__decoration-2 {
|
|
2178
|
+
fill: var(--utrecht-logo-decoration-2-color, #c00);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.utrecht-logo__decoration-3 {
|
|
2182
|
+
fill: var(--utrecht-logo-decoration-3-color, #ffb70b);
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
/**
|
|
2186
|
+
* @license EUPL-1.2
|
|
2187
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2188
|
+
*/
|
|
2189
|
+
/**
|
|
2190
|
+
* @license EUPL-1.2
|
|
2191
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2192
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2193
|
+
*/
|
|
2194
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2195
|
+
.utrecht-mapcontrolbutton {
|
|
2196
|
+
--utrecht-icon-size: var(--utrecht-mapcontrolbutton-min-block-size);
|
|
2197
|
+
--utrecht-icon-color: var(--utrecht-mapcontrolbutton-color);
|
|
2198
|
+
align-items: center;
|
|
2199
|
+
background-color: var(--utrecht-mapcontrolbutton-background-color);
|
|
2200
|
+
border-color: var(--utrecht-mapcontrolbutton-border-color);
|
|
2201
|
+
border-radius: var(--utrecht-mapcontrolbutton-border-radius);
|
|
2202
|
+
border-style: var(--utrecht-mapcontrolbutton-border-style);
|
|
2203
|
+
border-width: var(--utrecht-mapcontrolbutton-border-width);
|
|
2204
|
+
color: var(--utrecht-mapcontrolbutton-color);
|
|
2205
|
+
display: flex;
|
|
2206
|
+
flex-direction: row;
|
|
2207
|
+
justify-content: center;
|
|
2208
|
+
min-block-size: var(--utrecht-mapcontrolbutton-min-block-size);
|
|
2209
|
+
min-inline-size: var(--utrecht-mapcontrolbutton-min-inline-size);
|
|
2210
|
+
padding-block-end: 0;
|
|
2211
|
+
padding-block-start: 0;
|
|
2212
|
+
padding-inline-end: 0;
|
|
2213
|
+
padding-inline-start: 0;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
.utrecht-mapcontrolbutton:disabled,
|
|
2217
|
+
.utrecht-mapcontrolbutton--disabled {
|
|
2218
|
+
--utrecht-icon-color: var(--utrecht-mapcontrolbutton-disabled-color, var(--utrecht-mapcontrolbutton-color));
|
|
2219
|
+
background-color: var(--utrecht-mapcontrolbutton-disabled-background-color);
|
|
2220
|
+
border-color: var(--utrecht-mapcontrolbutton-disabled-border-color);
|
|
2221
|
+
color: var(--utrecht-mapcontrolbutton-disabled-color);
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
.utrecht-mapcontrolbutton--focus-visible, .utrecht-mapcontrolbutton:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-mapcontrolbutton--disabled) {
|
|
2225
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2226
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2227
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2228
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2229
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
.utrecht-mapcontrolbutton--focus, .utrecht-mapcontrolbutton:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-mapcontrolbutton--disabled) {
|
|
2233
|
+
--utrecht-icon-color: var(--utrecht-mapcontrolbutton-focus-color, var(--utrecht-mapcontrolbutton-color));
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
/* override the `:focus` selector above */
|
|
2237
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
2238
|
+
.utrecht-mapcontrolbutton:focus:not(:focus-visible) {
|
|
2239
|
+
/* undo focus ring */
|
|
2240
|
+
box-shadow: none;
|
|
2241
|
+
outline-style: none;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.utrecht-mapcontrolbutton--hover:not(:disabled),
|
|
2245
|
+
.utrecht-mapcontrolbutton:hover:not(:disabled):not(.utrecht-mapcontrolbutton--disabled) {
|
|
2246
|
+
background-color: var(--utrecht-mapcontrolbutton-hover-background-color);
|
|
2247
|
+
color: var(--utrecht-mapcontrolbutton-color);
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.utrecht-mapcontrolbutton__label {
|
|
2251
|
+
display: block;
|
|
2252
|
+
padding-inline-end: var(--utrecht-mapcontrolbutton-label-margin-inline-end);
|
|
2253
|
+
padding-inline-start: var(--utrecht-mapcontrolbutton-label-margin-inline-start);
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
/**
|
|
2257
|
+
* @license EUPL-1.2
|
|
2258
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2259
|
+
*/
|
|
2260
|
+
/**
|
|
2261
|
+
* @license EUPL-1.2
|
|
2262
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2263
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2264
|
+
*/
|
|
2265
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
342
2266
|
.utrecht-menulijst {
|
|
343
|
-
border-top: var(--utrecht-border-width-md) solid var(--utrecht-color-grey-90);
|
|
344
2267
|
border-bottom: var(--utrecht-border-width-md) solid var(--utrecht-color-grey-90);
|
|
345
|
-
|
|
346
|
-
|
|
2268
|
+
border-top: var(--utrecht-border-width-md) solid var(--utrecht-color-grey-90);
|
|
2269
|
+
font-family: var(--utrecht-document-font-family);
|
|
347
2270
|
padding-block-end: var(--utrecht-space-block-sm);
|
|
2271
|
+
padding-block-start: var(--utrecht-space-block-sm);
|
|
2272
|
+
padding-inline-start: 0;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.utrecht-menulijst__item {
|
|
2276
|
+
list-style: none;
|
|
2277
|
+
margin-block-end: var(--utrecht-space-block-sm);
|
|
2278
|
+
margin-block-start: var(--utrecht-space-block-sm);
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
.utrecht-menulijst__item a:link {
|
|
2282
|
+
background-image: var(--utrecht-menulijst-item-background-image, none);
|
|
2283
|
+
background-position: 0 0.25em;
|
|
2284
|
+
background-repeat: no-repeat;
|
|
2285
|
+
color: var(--utrecht-menulijst-item-color, var(--utrecht-link-color, blue));
|
|
2286
|
+
display: block;
|
|
2287
|
+
font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
2288
|
+
padding-inline-start: var(--utrecht-space-block-md);
|
|
2289
|
+
text-decoration: none;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.utrecht-menulijst__item a:hover {
|
|
2293
|
+
color: var(--utrecht-menulijst-item-hover-color, var(--utrecht-link-hover-color, red));
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.utrecht-menulijst__link--focus-visible, .utrecht-menulijst__link:focus {
|
|
2297
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2298
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2299
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2300
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2301
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.utrecht-menulijst__link:focus:not(:focus-visible) {
|
|
2305
|
+
/* undo focus ring */
|
|
2306
|
+
box-shadow: none;
|
|
2307
|
+
outline-style: none;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
/**
|
|
2311
|
+
* @license EUPL-1.2
|
|
2312
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
2313
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2314
|
+
*/
|
|
2315
|
+
/**
|
|
2316
|
+
* @license EUPL-1.2
|
|
2317
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2318
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2319
|
+
*/
|
|
2320
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2321
|
+
.utrecht-sidenav {
|
|
2322
|
+
--utrecht-sidenav-connection-color: var(--utrecht-sidenav-item-marker-color);
|
|
2323
|
+
--utrecht-sidenav-connection-inline-size: 2px;
|
|
2324
|
+
--utrecht-sidenav-marker-current-color: var(--utrecht-sidenav-link-hover-color);
|
|
2325
|
+
--utrecht-sidenav-marker-offset: 26px;
|
|
2326
|
+
--utrecht-sidenav-connection-block-size: 100%;
|
|
2327
|
+
--utrecht-sidenav-marker-height: 8px;
|
|
2328
|
+
--utrecht-sidenav-marker-outline-width: 2px;
|
|
2329
|
+
border-block-end: 1px solid var(--utrecht-color-grey-80);
|
|
2330
|
+
border-block-start: 1px solid var(--utrecht-color-grey-80);
|
|
2331
|
+
margin-block-end: 0;
|
|
2332
|
+
margin-block-start: 0;
|
|
2333
|
+
padding-block-end: 0;
|
|
2334
|
+
padding-block-start: 0;
|
|
2335
|
+
width: 19rem;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.utrecht-sidenav__list {
|
|
2339
|
+
margin-block-end: 0;
|
|
2340
|
+
margin-block-start: 0.2rem;
|
|
2341
|
+
padding-block-end: 0;
|
|
2342
|
+
padding-block-start: 0;
|
|
348
2343
|
padding-inline-start: 0;
|
|
349
2344
|
}
|
|
350
2345
|
|
|
351
|
-
.utrecht-
|
|
352
|
-
margin-block-start:
|
|
353
|
-
|
|
354
|
-
|
|
2346
|
+
.utrecht-sidenav__list--child {
|
|
2347
|
+
margin-block-start: 0;
|
|
2348
|
+
padding-inline-end: 0;
|
|
2349
|
+
padding-inline-start: 1.4rem;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.utrecht-sidenav__item {
|
|
2353
|
+
list-style: none;
|
|
2354
|
+
margin-inline-start: 0;
|
|
2355
|
+
position: relative;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
.utrecht-sidenav__item--current {
|
|
2359
|
+
color: var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red));
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
.utrecht-sidenav__item--last {
|
|
2363
|
+
border-block-end: none;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
/* draw the li item box bottom line */
|
|
2367
|
+
.utrecht-sidenav__item-separator:not(.utrecht-sidenav__item--last .utrecht-sidenav__item-separator) {
|
|
2368
|
+
/* .utrecht-sidenav__item--parent span */
|
|
2369
|
+
border-block-end: 1px solid var(--utrecht-color-grey-80);
|
|
2370
|
+
display: block;
|
|
2371
|
+
margin-inline-start: var(--utrecht-space-inline-lg);
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
.utrecht-sidenav__link {
|
|
2375
|
+
color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
|
|
2376
|
+
display: block;
|
|
2377
|
+
margin-inline-start: 0;
|
|
2378
|
+
padding-block-end: var(--utrecht-space-block-xs);
|
|
2379
|
+
padding-block-start: var(--utrecht-space-block-xs);
|
|
2380
|
+
padding-inline-end: var(--utrecht-space-inline-3xs);
|
|
2381
|
+
padding-inline-start: var(--utrecht-space-inline-lg);
|
|
2382
|
+
text-decoration: none;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
.utrecht-sidenav__link:hover {
|
|
2386
|
+
color: var(--utrecht-sidenav-link-hover-color, var(--utrecht-link-hover-color, red));
|
|
2387
|
+
text-decoration: underline;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
.utrecht-sidenav__link--focus-visible, .utrecht-sidenav__link:focus {
|
|
2391
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2392
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2393
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2394
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2395
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
/* Remove bottom padding form first item in list with children */
|
|
2399
|
+
.utrecht-sidenav__link--parent {
|
|
2400
|
+
padding-block-end: 0;
|
|
355
2401
|
}
|
|
356
2402
|
|
|
357
|
-
|
|
2403
|
+
/* Draw metro connection lines on sidenav link items */
|
|
2404
|
+
.utrecht-sidenav__connection, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:not(.utrecht-sidenav__link--sibling):not(.utrecht-sidenav__link--parent):not(.utrecht-sidenav__link--child)::after {
|
|
2405
|
+
background: var(--utrecht-sidenav-connection-color);
|
|
2406
|
+
bottom: 0;
|
|
2407
|
+
content: "";
|
|
358
2408
|
display: block;
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
2409
|
+
height: calc(var(--utrecht-sidenav-connection-block-size) - var(--utrecht-sidenav-marker-height) - 2 * var(--utrecht-sidenav-marker-outline-width));
|
|
2410
|
+
left: 3px;
|
|
2411
|
+
overflow: hidden;
|
|
2412
|
+
position: absolute;
|
|
2413
|
+
top: calc(var(--utrecht-sidenav-marker-offset));
|
|
2414
|
+
width: var(--utrecht-sidenav-connection-inline-size);
|
|
2415
|
+
z-index: 5;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
.utrecht-sidenav__connection--last,
|
|
2419
|
+
.utrecht-sidenav__connection--parent,
|
|
2420
|
+
.utrecht-sidenav__connection--sibling {
|
|
2421
|
+
display: none;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
/* Dot for link with siblings */
|
|
2425
|
+
/* Little fix to move the dot to the right */
|
|
2426
|
+
.utrecht-sidenav__marker, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before {
|
|
2427
|
+
background-color: var(--utrecht-sidenav-item-marker-color);
|
|
2428
|
+
border-radius: 100%;
|
|
2429
|
+
content: "";
|
|
2430
|
+
height: var(--utrecht-sidenav-marker-height);
|
|
2431
|
+
left: var(--utrecht-sidenav-marker-offset);
|
|
2432
|
+
overflow: hidden;
|
|
2433
|
+
position: absolute;
|
|
2434
|
+
top: 20px;
|
|
2435
|
+
/* Hard value? */
|
|
2436
|
+
transform: translateY(-50%) translateX(calc(-1 * var(--utrecht-sidenav-marker-offset)));
|
|
2437
|
+
width: 8px;
|
|
2438
|
+
z-index: 10;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
/* Add dot bullets on child links */
|
|
2442
|
+
.utrecht-sidenav__marker--child, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::before {
|
|
2443
|
+
background-color: transparent;
|
|
2444
|
+
border: 2px solid var(--utrecht-sidenav-link-color);
|
|
2445
|
+
height: 4px;
|
|
2446
|
+
left: 1.2rem;
|
|
2447
|
+
top: 16px;
|
|
2448
|
+
transform: translateY(-50%) translateX(-19.5px);
|
|
2449
|
+
width: 4px;
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
/* selector must override .utrecht-sidenav__marker--child */
|
|
2453
|
+
.utrecht-sidenav__marker--current, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current::before,
|
|
2454
|
+
.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current-child::before {
|
|
2455
|
+
background-color: var(--utrecht-sidenav-marker-current-color);
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
.utrecht-sidenav__link--child,
|
|
2459
|
+
.utrecht-sidenav__link--current-child {
|
|
2460
|
+
color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
|
|
2461
|
+
margin-block-end: 0;
|
|
2462
|
+
margin-block-start: 0;
|
|
2463
|
+
padding-block-end: var(--utrecht-space-block-2xs);
|
|
2464
|
+
padding-block-start: var(--utrecht-space-block-2xs);
|
|
2465
|
+
padding-inline-end: var(--utrecht-space-inline-3xs);
|
|
2466
|
+
padding-inline-start: var(--utrecht-space-inline-lg);
|
|
365
2467
|
text-decoration: none;
|
|
366
2468
|
}
|
|
367
2469
|
|
|
368
|
-
.utrecht-
|
|
369
|
-
|
|
2470
|
+
.utrecht-sidenav__link--current,
|
|
2471
|
+
.utrecht-sidenav__link--current-child {
|
|
2472
|
+
font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
370
2473
|
}
|
|
371
2474
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
376
|
-
color: var(--utrecht-focus-color, inherit);
|
|
377
|
-
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
378
|
-
outline-offset: 0;
|
|
379
|
-
background-color: var(--utrecht-focus-background-color);
|
|
2475
|
+
/* Hover layout for mousover on sidenav__link */
|
|
2476
|
+
.utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover::before, .utrecht-sidenav__link:hover .utrecht-sidenav__marker, .utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link::before {
|
|
2477
|
+
background-color: var(--utrecht-sidenav-link-hover-color);
|
|
380
2478
|
}
|
|
381
2479
|
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
.utrecht-paragraph, .utrecht-html p {
|
|
387
|
-
color: var(--utrecht-document-color, inherit);
|
|
388
|
-
font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
|
|
389
|
-
font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
|
|
390
|
-
font-weight: var(--utrecht-paragraph-font-weight, inherit);
|
|
391
|
-
line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
|
|
2480
|
+
/* Hover layout for mousover on child__link */
|
|
2481
|
+
.utrecht-sidenav__marker--child.utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link:hover::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--hover.utrecht-sidenav__link--child::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child.utrecht-sidenav__link:hover::before, .utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__marker, .utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker.utrecht-sidenav__link--child::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker.utrecht-sidenav__link--child::before, .utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link::before, .utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link.utrecht-sidenav__link--child::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__link::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link.utrecht-sidenav__link--child::before {
|
|
2482
|
+
background-color: var(--utrecht-sidenav-link-hover-color);
|
|
2483
|
+
border: 2px solid var(--utrecht-sidenav-link-hover-color);
|
|
392
2484
|
}
|
|
393
2485
|
|
|
394
|
-
.utrecht-
|
|
395
|
-
|
|
396
|
-
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
397
|
-
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
2486
|
+
.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::after {
|
|
2487
|
+
display: none;
|
|
398
2488
|
}
|
|
399
2489
|
|
|
400
|
-
.utrecht-
|
|
401
|
-
|
|
402
|
-
|
|
2490
|
+
.utrecht-sidenav__link:focus:not(:focus-visible) {
|
|
2491
|
+
/* undo focus ring */
|
|
2492
|
+
box-shadow: none;
|
|
2493
|
+
outline-style: none;
|
|
403
2494
|
}
|
|
404
2495
|
|
|
405
2496
|
/**
|
|
406
2497
|
* @license EUPL-1.2
|
|
407
2498
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
408
2499
|
*/
|
|
409
|
-
.utrecht-radio-button, .utrecht-html input[type=radio] {
|
|
410
|
-
/* reset native margin for input[type="radio"] */
|
|
411
|
-
margin-block-start: 0;
|
|
412
|
-
margin-block-end: 0;
|
|
413
|
-
margin-inline-start: 0;
|
|
414
|
-
margin-inline-end: 0;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
2500
|
/**
|
|
418
2501
|
* @license EUPL-1.2
|
|
419
2502
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
420
2503
|
* Copyright (c) 2021 Robbert Broersma
|
|
421
|
-
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
422
2504
|
*/
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
border-width: 0 0 var(--utrecht-separator-width) 0;
|
|
427
|
-
margin-block-start: var(--utrecht-separator-margin-block-start);
|
|
428
|
-
margin-block-end: var(--utrecht-separator-margin-block-end);
|
|
2505
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2506
|
+
.utrecht-navhtml {
|
|
2507
|
+
font-family: var(--utrecht-font-family-sans-serif);
|
|
429
2508
|
}
|
|
430
2509
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
max-width: var(--utrecht-textarea-max-width);
|
|
445
|
-
padding-block-end: var(--utrecht-textarea-padding-block-end);
|
|
446
|
-
padding-block-start: var(--utrecht-textarea-padding-block-start);
|
|
447
|
-
padding-inline-end: var(--utrecht-textarea-padding-inline-end);
|
|
448
|
-
padding-inline-start: var(--utrecht-textarea-padding-inline-start);
|
|
449
|
-
width: 100%;
|
|
2510
|
+
.utrecht-topnav__list {
|
|
2511
|
+
background-color: var(--utrecht-topnav-list-background-color);
|
|
2512
|
+
display: flex;
|
|
2513
|
+
justify-content: space-between;
|
|
2514
|
+
list-style: none;
|
|
2515
|
+
list-style-image: none;
|
|
2516
|
+
margin-block-end: 0;
|
|
2517
|
+
margin-block-start: 0;
|
|
2518
|
+
overflow: visible;
|
|
2519
|
+
padding-block-end: 0;
|
|
2520
|
+
padding-block-start: 0;
|
|
2521
|
+
padding-inline-end: 0;
|
|
2522
|
+
padding-inline-start: 0;
|
|
450
2523
|
}
|
|
451
2524
|
|
|
452
|
-
.utrecht-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
2525
|
+
.utrecht-topnav__item {
|
|
2526
|
+
border-inline-end: 1px solid var(--utrecht-topnav-list-border-color);
|
|
2527
|
+
flex: 1 0 auto;
|
|
2528
|
+
margin-inline-start: 0;
|
|
2529
|
+
text-align: center;
|
|
456
2530
|
}
|
|
457
2531
|
|
|
458
|
-
.utrecht-
|
|
459
|
-
border-
|
|
460
|
-
|
|
2532
|
+
.utrecht-topnav__item li:first-child {
|
|
2533
|
+
border-inline-start: 1px solid var(--utrecht-topnav-list-border-color);
|
|
2534
|
+
padding-inline-start: 0;
|
|
461
2535
|
}
|
|
462
2536
|
|
|
463
|
-
.utrecht-
|
|
464
|
-
|
|
465
|
-
|
|
2537
|
+
.utrecht-topnav__link {
|
|
2538
|
+
color: var(--utrecht-topnav-link-color);
|
|
2539
|
+
display: block;
|
|
2540
|
+
padding-block-end: 1rem;
|
|
2541
|
+
padding-block-start: 1rem;
|
|
2542
|
+
text-decoration: none;
|
|
466
2543
|
}
|
|
467
2544
|
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
.utrecht-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
border-width: var(--utrecht-textbox-border-width);
|
|
478
|
-
border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width));
|
|
479
|
-
border-color: var(--utrecht-textbox-border-color);
|
|
480
|
-
border-radius: var(--utrecht-textbox-border-radius, 0);
|
|
481
|
-
border-style: solid;
|
|
482
|
-
color: var(--utrecht-textbox-color);
|
|
483
|
-
font-family: var(--utrecht-textbox-font-family);
|
|
484
|
-
font-size: var(--utrecht-textbox-font-size, 1em);
|
|
485
|
-
max-width: var(--utrecht-textbox-max-width);
|
|
486
|
-
padding-block-end: var(--utrecht-textbox-padding-block-end);
|
|
487
|
-
padding-block-start: var(--utrecht-textbox-padding-block-start);
|
|
488
|
-
padding-inline-end: var(--utrecht-textbox-padding-inline-end);
|
|
489
|
-
padding-inline-start: var(--utrecht-textbox-padding-inline-start);
|
|
490
|
-
box-sizing: border-box;
|
|
491
|
-
width: 100%;
|
|
2545
|
+
.utrecht-topnav__link:hover {
|
|
2546
|
+
background-color: var(--utrecht-topnav-link-hover-background-color);
|
|
2547
|
+
color: var(--utrecht-topnav-link-color);
|
|
2548
|
+
text-decoration: underline;
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
.utrecht-topnav__link--current {
|
|
2552
|
+
background-color: var(--utrecht-topnav-list-background-active);
|
|
2553
|
+
text-decoration: underline;
|
|
492
2554
|
}
|
|
493
2555
|
|
|
494
|
-
.utrecht-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
.utrecht-html input[type=search]:invalid,
|
|
498
|
-
.utrecht-html input[type=search][aria-invalid=true],
|
|
499
|
-
.utrecht-html input[type=tel]:invalid,
|
|
500
|
-
.utrecht-html input[type=tel][aria-invalid=true],
|
|
501
|
-
.utrecht-html input[type=url]:invalid,
|
|
502
|
-
.utrecht-html input[type=url][aria-invalid=true] {
|
|
503
|
-
border-color: var(--utrecht-textbox-invalid-border-color);
|
|
504
|
-
border-width: var(--utrecht-textbox-invalid-border-width);
|
|
2556
|
+
.utrecht-topnav__link--focus, .utrecht-topnav__link:focus {
|
|
2557
|
+
background-color: var(--utrecht-topnav-link-focus-background-color, var(--utrecht-topnav-link-background-color));
|
|
2558
|
+
color: var(--utrecht-topnav-link-focus-color, var(--utrecht-topnav-link-color));
|
|
505
2559
|
}
|
|
506
2560
|
|
|
507
|
-
.utrecht-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
color: var(--utrecht-textbox-disabled-color);
|
|
2561
|
+
.utrecht-topnav__link--focus-visible, .utrecht-topnav__link:focus {
|
|
2562
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2563
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2564
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2565
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2566
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
514
2567
|
}
|
|
515
2568
|
|
|
516
|
-
.utrecht-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
.utrecht-html input[type=url]:read-only {
|
|
521
|
-
border-color: var(--utrecht-textbox-read-only-border-color);
|
|
522
|
-
color: var(--utrecht-textbox-read-only-color);
|
|
2569
|
+
.utrecht-topnav__link:focus:not(:focus-visible) {
|
|
2570
|
+
/* undo focus ring */
|
|
2571
|
+
box-shadow: none;
|
|
2572
|
+
outline-style: none;
|
|
523
2573
|
}
|
|
524
2574
|
|
|
525
2575
|
/**
|
|
@@ -527,82 +2577,148 @@
|
|
|
527
2577
|
* Copyright (c) 2021 Robbert Broersma
|
|
528
2578
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
529
2579
|
*/
|
|
530
|
-
|
|
2580
|
+
/**
|
|
2581
|
+
* @license EUPL-1.2
|
|
2582
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2583
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2584
|
+
*/
|
|
2585
|
+
.utrecht-ordered-list {
|
|
531
2586
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
padding-inline-start: 2ch;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.utrecht-unordered-list--distanced, .utrecht-html ul {
|
|
538
|
-
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
539
|
-
margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
2587
|
+
margin-block-end: 0;
|
|
2588
|
+
margin-block-start: 0;
|
|
2589
|
+
padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
|
|
540
2590
|
}
|
|
541
2591
|
|
|
542
|
-
.utrecht-
|
|
543
|
-
margin-
|
|
544
|
-
margin-block-
|
|
2592
|
+
.utrecht-ordered-list--distanced {
|
|
2593
|
+
margin-block-end: var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));
|
|
2594
|
+
margin-block-start: var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start));
|
|
545
2595
|
}
|
|
546
2596
|
|
|
547
|
-
.utrecht-
|
|
548
|
-
|
|
549
|
-
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
550
|
-
margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
|
|
2597
|
+
.utrecht-ordered-list--arabic {
|
|
2598
|
+
list-style: arabic-indic;
|
|
551
2599
|
}
|
|
552
2600
|
|
|
553
|
-
.utrecht-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
2601
|
+
.utrecht-ordered-list__item {
|
|
2602
|
+
margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
|
|
2603
|
+
margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
|
|
2604
|
+
padding-inline-start: var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch));
|
|
557
2605
|
}
|
|
558
2606
|
|
|
559
2607
|
/**
|
|
560
2608
|
* @license EUPL-1.2
|
|
561
2609
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
2610
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2611
|
+
*/
|
|
2612
|
+
/**
|
|
2613
|
+
* @license EUPL-1.2
|
|
2614
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2615
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
562
2616
|
*/
|
|
563
|
-
|
|
2617
|
+
.utrecht-page-content {
|
|
2618
|
+
padding-block-end: var(--utrecht-page-content-padding-block-end);
|
|
2619
|
+
padding-block-start: var(--utrecht-page-content-padding-block-start);
|
|
2620
|
+
padding-inline-end: var(--utrecht-page-padding-inline-end);
|
|
2621
|
+
padding-inline-start: var(--utrecht-page-padding-inline-start);
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.utrecht-page-content__main {
|
|
2625
|
+
grid-area: main;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.utrecht-page-content__aside {
|
|
2629
|
+
grid-area: aside;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
564
2632
|
/**
|
|
565
2633
|
* @license EUPL-1.2
|
|
2634
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
566
2635
|
* Copyright (c) 2021 Robbert Broersma
|
|
567
2636
|
*/
|
|
568
2637
|
/**
|
|
569
2638
|
* @license EUPL-1.2
|
|
2639
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
570
2640
|
* Copyright (c) 2021 Robbert Broersma
|
|
571
2641
|
*/
|
|
572
|
-
.utrecht-
|
|
573
|
-
|
|
2642
|
+
.utrecht-page-footer {
|
|
2643
|
+
--utrecht-document-color: currentColor;
|
|
2644
|
+
--utrecht-heading-color: currentColor;
|
|
2645
|
+
--utrecht-link-color: currentColor;
|
|
2646
|
+
--utrecht-link-focus-color: currentColor;
|
|
2647
|
+
--utrecht-link-hover-color: currentColor;
|
|
2648
|
+
--utrecht-link-active-color: currentColor;
|
|
2649
|
+
--utrecht-link-visited-color: currentColor;
|
|
2650
|
+
background-color: var(--utrecht-page-footer-background-color);
|
|
2651
|
+
background-image: var(--utrecht-page-footer-background-image);
|
|
2652
|
+
color: var(--utrecht-page-footer-color);
|
|
2653
|
+
font-family: var(--utrecht-document-font-family);
|
|
2654
|
+
font-size: var(--utrecht-document-font-size);
|
|
2655
|
+
padding-block-end: var(--utrecht-page-footer-padding-block-end);
|
|
2656
|
+
padding-block-start: var(--utrecht-page-footer-padding-block-start);
|
|
2657
|
+
padding-inline-end: var(--utrecht-page-footer-padding-inline-end);
|
|
2658
|
+
padding-inline-start: var(--utrecht-page-footer-padding-inline-start);
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2661
|
+
.utrecht-page-footer .utrecht-link--telephone {
|
|
2662
|
+
color: #fff;
|
|
2663
|
+
}
|
|
2664
|
+
|
|
2665
|
+
.utrecht-page-footer .utrecht-paragraph {
|
|
2666
|
+
color: #fff;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.utrecht-page-footer__address--reset-address {
|
|
2670
|
+
/* reset <address> */
|
|
2671
|
+
font-style: inherit;
|
|
2672
|
+
margin-block-end: 0;
|
|
2673
|
+
margin-block-start: 0;
|
|
574
2674
|
}
|
|
575
2675
|
|
|
576
2676
|
/**
|
|
577
2677
|
* @license EUPL-1.2
|
|
2678
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
578
2679
|
* Copyright (c) 2021 Robbert Broersma
|
|
579
2680
|
*/
|
|
580
2681
|
/**
|
|
581
2682
|
* @license EUPL-1.2
|
|
2683
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
582
2684
|
* Copyright (c) 2021 Robbert Broersma
|
|
583
2685
|
*/
|
|
584
|
-
.utrecht-
|
|
585
|
-
|
|
586
|
-
|
|
2686
|
+
.utrecht-page-header {
|
|
2687
|
+
background-color: var(--utrecht-page-header-background-color);
|
|
2688
|
+
color: var(--utrecht-page-header-color);
|
|
2689
|
+
grid-area: "utrecht-header";
|
|
2690
|
+
padding-block-end: var(--utrecht-page-header-padding-block-end);
|
|
2691
|
+
padding-block-start: var(--utrecht-page-header-padding-block-start);
|
|
2692
|
+
padding-inline-end: var(--utrecht-page-padding-inline-end);
|
|
2693
|
+
padding-inline-start: var(--utrecht-page-padding-inline-start);
|
|
587
2694
|
}
|
|
588
2695
|
|
|
589
|
-
.utrecht-
|
|
590
|
-
|
|
591
|
-
font-size: var(--utrecht-blockquote-attribution-font-size, inherit);
|
|
2696
|
+
.utrecht-page-header__content {
|
|
2697
|
+
max-inline-size: var(--utrecht-page-max-inline-size);
|
|
592
2698
|
}
|
|
593
2699
|
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
2700
|
+
/**
|
|
2701
|
+
* @license EUPL-1.2
|
|
2702
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2703
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2704
|
+
*/
|
|
2705
|
+
/**
|
|
2706
|
+
* @license EUPL-1.2
|
|
2707
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2708
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2709
|
+
*/
|
|
2710
|
+
.utrecht-page {
|
|
2711
|
+
margin-inline-end: auto;
|
|
2712
|
+
margin-inline-start: auto;
|
|
2713
|
+
max-inline-size: calc(var(--utrecht-page-max-inline-size) - var(--utrecht-page-margin-inline-start, 0px) - var(--utrecht-page-margin-inline-end, 0px));
|
|
2714
|
+
padding-inline-end: var(--utrecht-page-margin-inline-end);
|
|
2715
|
+
padding-inline-start: var(--utrecht-page-margin-inline-start);
|
|
599
2716
|
}
|
|
600
2717
|
|
|
601
|
-
.utrecht-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
margin-block-end: var(--utrecht-blockquote-margin-block-end);
|
|
2718
|
+
.utrecht-page__content {
|
|
2719
|
+
background-color: var(--utrecht-page-background-color);
|
|
2720
|
+
color: var(--utrecht-page-color);
|
|
2721
|
+
max-inline-size: var(--utrecht-page-max-inline-size);
|
|
606
2722
|
}
|
|
607
2723
|
|
|
608
2724
|
/**
|
|
@@ -611,46 +2727,267 @@
|
|
|
611
2727
|
*/
|
|
612
2728
|
/**
|
|
613
2729
|
* @license EUPL-1.2
|
|
2730
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
614
2731
|
* Copyright (c) 2021 Robbert Broersma
|
|
615
2732
|
*/
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
2733
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2734
|
+
/**
|
|
2735
|
+
* @license EUPL-1.2
|
|
2736
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2737
|
+
*/
|
|
2738
|
+
.utrecht-pagination__page-link:focus,
|
|
2739
|
+
.utrecht-pagination__relative-link:focus {
|
|
2740
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2741
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2742
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2743
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2744
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
619
2745
|
}
|
|
620
2746
|
|
|
621
|
-
.utrecht-
|
|
622
|
-
|
|
2747
|
+
.utrecht-pagination__page-link:focus:not(:focus-visible),
|
|
2748
|
+
.utrecht-pagination__relative-link:focus:not(:focus-visible) {
|
|
2749
|
+
/* undo focus ring */
|
|
2750
|
+
box-shadow: none;
|
|
2751
|
+
outline-style: none;
|
|
623
2752
|
}
|
|
624
2753
|
|
|
625
|
-
.utrecht-
|
|
626
|
-
font-
|
|
2754
|
+
.utrecht-pagination {
|
|
2755
|
+
font-family: var(--utrecht-pagination-font-family, var(--utrecht-document-font-family));
|
|
2756
|
+
font-size: var(--utrecht-pagination-font-size, var(--utrecht-document-font-family));
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.utrecht-pagination--distanced {
|
|
2760
|
+
margin-block-end: var(--utrecht-pagination-margin-block-end);
|
|
2761
|
+
margin-block-start: var(--utrecht-pagination-margin-block-start);
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.utrecht-pagination__relative-link {
|
|
2765
|
+
background-color: var(--utrecht-pagination-relative-link-background-color);
|
|
2766
|
+
border-color: var(--utrecht-pagination-relative-link-border-color);
|
|
2767
|
+
border-radius: var(--utrecht-pagination-relative-link-border-radius);
|
|
2768
|
+
border-style: solid;
|
|
2769
|
+
border-width: var(--utrecht-pagination-relative-link-border-width, 0);
|
|
2770
|
+
color: var(--utrecht-pagination-relative-link-color);
|
|
2771
|
+
display: inline-block;
|
|
2772
|
+
font-weight: var(--utrecht-pagination-relative-link-font-weight);
|
|
2773
|
+
padding-block-end: var(--utrecht-pagination-relative-link-padding-block-end);
|
|
2774
|
+
padding-block-start: var(--utrecht-pagination-relative-link-padding-block-start);
|
|
2775
|
+
padding-inline-end: var(--utrecht-pagination-relative-link-padding-inline-end);
|
|
2776
|
+
padding-inline-start: var(--utrecht-pagination-relative-link-padding-inline-start);
|
|
2777
|
+
text-decoration: var(--utrecht-pagination-relative-link-text-decoration);
|
|
2778
|
+
text-transform: var(--utrecht-pagination-relative-link-text-transform);
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.utrecht-pagination__relative-link--next {
|
|
2782
|
+
margin-inline-start: var(--utrecht-pagination-relative-link-distanced-margin-inline-start);
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
.utrecht-pagination__relative-link--prev {
|
|
2786
|
+
margin-inline-end: var(--utrecht-pagination-relative-link-distanced-margin-inline-end);
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
.utrecht-pagination__relative-link--disabled {
|
|
2790
|
+
background-color: var(--utrecht-pagination-relative-link-disabled-background-color, var(--utrecht-pagination-relative-link-background-color));
|
|
2791
|
+
color: var(--utrecht-pagination-relative-link-disabled-color, var(--utrecht-pagination-relative-link-color));
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.utrecht-pagination__relative-link--hover,
|
|
2795
|
+
.utrecht-pagination__relative-link:hover {
|
|
2796
|
+
background-color: var(--utrecht-pagination-relative-link-hover-background-color, var(--utrecht-pagination-relative-link-background-color));
|
|
2797
|
+
border-color: var(--utrecht-pagination-relative-link-hover-border-color, var(--utrecht-pagination-relative-link-border-color));
|
|
2798
|
+
color: var(--utrecht-pagination-relative-link-hover-color, var(--utrecht-pagination-relative-link-color));
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
.utrecht-pagination__page-link {
|
|
2802
|
+
background-color: var(--utrecht-pagination-page-link-background-color);
|
|
2803
|
+
border-color: var(--utrecht-pagination-page-link-border-color, 0);
|
|
2804
|
+
border-radius: var(--utrecht-pagination-page-link-border-radius);
|
|
2805
|
+
border-style: solid;
|
|
2806
|
+
border-width: var(--utrecht-pagination-page-link-border-width);
|
|
2807
|
+
color: var(--utrecht-pagination-page-link-color);
|
|
2808
|
+
display: inline-block;
|
|
2809
|
+
font-weight: var(--utrecht-pagination-page-link-font-weight);
|
|
2810
|
+
padding-block-end: var(--utrecht-pagination-page-link-padding-block-end);
|
|
2811
|
+
padding-block-start: var(--utrecht-pagination-page-link-padding-block-start);
|
|
2812
|
+
padding-inline-end: var(--utrecht-pagination-page-link-padding-inline-end);
|
|
2813
|
+
padding-inline-start: var(--utrecht-pagination-page-link-padding-inline-start);
|
|
2814
|
+
text-decoration: var(--utrecht-pagination-page-link-text-decoration);
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
.utrecht-pagination__page-link--current {
|
|
2818
|
+
--utrecht-pagination-page-link-background-color: var(--utrecht-pagination-page-link-current-background-color);
|
|
2819
|
+
--utrecht-pagination-page-link-border-color: var(--utrecht-pagination-page-link-current-border-color);
|
|
2820
|
+
--utrecht-pagination-page-link-color: var(--utrecht-pagination-page-link-current-color);
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
.utrecht-pagination__page-link--distanced,
|
|
2824
|
+
.utrecht-pagination__page-link ~ .utrecht-pagination__page-link {
|
|
2825
|
+
margin-inline-start: var(--utrecht-pagination-page-link-distanced-margin-inline-start);
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
.utrecht-pagination__page-link--hover,
|
|
2829
|
+
.utrecht-pagination__page-link:hover {
|
|
2830
|
+
background-color: var(--utrecht-pagination-page-link-hover-background-color, var(--utrecht-pagination-page-link-background-color));
|
|
2831
|
+
border-color: var(--utrecht-pagination-page-link-hover-border-color, var(--utrecht-pagination-page-link-border-color));
|
|
2832
|
+
color: var(--utrecht-pagination-page-link-hover-color, var(--utrecht-pagination-page-link-color));
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
.utrecht-pagination__page-link:focus,
|
|
2836
|
+
.utrecht-pagination__relative-link:focus {
|
|
2837
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2838
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2839
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2840
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2841
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
.utrecht-pagination__page-link:focus:not(:focus-visible),
|
|
2845
|
+
.utrecht-pagination__relative-link:focus:not(:focus-visible) {
|
|
2846
|
+
/* undo focus ring */
|
|
2847
|
+
box-shadow: none;
|
|
2848
|
+
outline-style: none;
|
|
627
2849
|
}
|
|
628
2850
|
|
|
629
2851
|
/**
|
|
630
2852
|
* @license EUPL-1.2
|
|
631
|
-
* Copyright (c) 2021
|
|
2853
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
632
2854
|
*/
|
|
633
2855
|
/**
|
|
634
2856
|
* @license EUPL-1.2
|
|
635
2857
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
636
2858
|
*/
|
|
637
|
-
.utrecht-paragraph
|
|
638
|
-
color: var(--utrecht-document-color, inherit);
|
|
2859
|
+
.utrecht-paragraph {
|
|
2860
|
+
color: var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit));
|
|
639
2861
|
font-family: var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));
|
|
640
2862
|
font-size: var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));
|
|
641
2863
|
font-weight: var(--utrecht-paragraph-font-weight, inherit);
|
|
642
2864
|
line-height: var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));
|
|
2865
|
+
margin-block-end: 0;
|
|
2866
|
+
margin-block-start: 0;
|
|
643
2867
|
}
|
|
644
2868
|
|
|
645
|
-
.utrecht-paragraph--lead
|
|
2869
|
+
.utrecht-paragraph--lead {
|
|
2870
|
+
color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
|
|
646
2871
|
font-size: var(--utrecht-paragraph-lead-font-size, inherit);
|
|
647
2872
|
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
648
2873
|
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
649
2874
|
}
|
|
650
2875
|
|
|
651
|
-
.utrecht-paragraph--distanced
|
|
652
|
-
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
2876
|
+
.utrecht-paragraph--distanced {
|
|
653
2877
|
margin-block-end: var(--utrecht-paragraph-margin-block-end);
|
|
2878
|
+
margin-block-start: var(--utrecht-paragraph-margin-block-start);
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
/**
|
|
2882
|
+
* @license EUPL-1.2
|
|
2883
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2884
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2885
|
+
*/
|
|
2886
|
+
.utrecht-pre-heading {
|
|
2887
|
+
color: var(--utrecht-pre-heading-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
2888
|
+
font-family: var(--utrecht-pre-heading-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));
|
|
2889
|
+
font-size: var(--utrecht-pre-heading-font-size);
|
|
2890
|
+
font-weight: var(--utrecht-pre-heading-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
2891
|
+
letter-spacing: var(--utrecht-pre-heading-letter-spacing);
|
|
2892
|
+
line-height: var(--utrecht-pre-heading-line-height);
|
|
2893
|
+
margin-block-end: 0;
|
|
2894
|
+
margin-block-start: 0;
|
|
2895
|
+
text-transform: var(--utrecht-pre-heading-text-transform, inherit);
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
.utrecht-pre-heading--distanced {
|
|
2899
|
+
margin-block-end: var(--utrecht-pre-heading-margin-block-end);
|
|
2900
|
+
margin-block-start: var(--utrecht-pre-heading-margin-block-start);
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* @license EUPL-1.2
|
|
2905
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2906
|
+
*/
|
|
2907
|
+
/**
|
|
2908
|
+
* @license EUPL-1.2
|
|
2909
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2910
|
+
*/
|
|
2911
|
+
/**
|
|
2912
|
+
* @license EUPL-1.2
|
|
2913
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2914
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2915
|
+
*/
|
|
2916
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2917
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2918
|
+
.utrecht-radio-button {
|
|
2919
|
+
/* reset native margin for input[type="radio" i] */
|
|
2920
|
+
margin-block-end: 0;
|
|
2921
|
+
margin-block-start: 0;
|
|
2922
|
+
margin-inline-end: 0;
|
|
2923
|
+
margin-inline-start: 0;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2927
|
+
.utrecht-radio-button--disabled {
|
|
2928
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
.utrecht-radio-button--focus-visible {
|
|
2932
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2933
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2934
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2935
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2936
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
.utrecht-radio-button--html-input:disabled {
|
|
2940
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
2941
|
+
}
|
|
2942
|
+
.utrecht-radio-button--html-input:focus {
|
|
2943
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
2944
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
2945
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
2946
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
2947
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
2948
|
+
}
|
|
2949
|
+
.utrecht-radio-button--html-input:focus:not(:focus-visible) {
|
|
2950
|
+
/* undo focus ring */
|
|
2951
|
+
box-shadow: none;
|
|
2952
|
+
outline-style: none;
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
/**
|
|
2956
|
+
* @license EUPL-1.2
|
|
2957
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2958
|
+
*/
|
|
2959
|
+
/**
|
|
2960
|
+
* @license EUPL-1.2
|
|
2961
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2962
|
+
*/
|
|
2963
|
+
/**
|
|
2964
|
+
* @license EUPL-1.2
|
|
2965
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
2966
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
2967
|
+
*/
|
|
2968
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2969
|
+
.utrecht-search-bar {
|
|
2970
|
+
--utrecht-button-border-color: var(--utrecht-search-bar-button-border-color);
|
|
2971
|
+
--utrecht-button-focus-transform-scale: var(--utrecht-search-bar-hover-transform);
|
|
2972
|
+
--utrecht-button-font-size: var(--utrecht-search-bar-button-font-size);
|
|
2973
|
+
--utrecht-button-font-weight: var(--utrecht-search-bar-button-font-weight);
|
|
2974
|
+
--utrecht-button-letter-spacing: var(--utrecht-search-bar-button-letter-spacing);
|
|
2975
|
+
--utrecht-button-primary-action-background-color: var(--utrecht-search-bar-button-background-color);
|
|
2976
|
+
--utrecht-button-primary-action-color: var(--utrecht-search-bar-button-color);
|
|
2977
|
+
--utrecht-button-primary-action-hover-background-color: var(--utrecht-search-bar-hover-background-color);
|
|
2978
|
+
--utrecht-button-text-transform: var(--utrecht-search-bar-button-text-transform);
|
|
2979
|
+
--utrecht-textbox-border-color: var(--utrecht-search-bar-textbox-border-color);
|
|
2980
|
+
--utrecht-textbox-padding-inline-start: var(--utrecht-search-bar-textbox-padding-inline-start);
|
|
2981
|
+
--utrecht-textbox-border-bottom-width: var(--utrecht-search-bar-textbox-border-bottom-width);
|
|
2982
|
+
display: flex;
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
.utrecht-search-bar__input {
|
|
2986
|
+
background-image: var(--utrecht-search-bar-input-background-image, none);
|
|
2987
|
+
background-position-x: var(--utrecht-search-bar-textbox-background-position-x);
|
|
2988
|
+
background-position-y: var(--utrecht-search-bar-textbox-background-position-y);
|
|
2989
|
+
background-repeat: no-repeat;
|
|
2990
|
+
background-size: var(--utrecht-search-bar-textbox-background-size);
|
|
654
2991
|
}
|
|
655
2992
|
|
|
656
2993
|
/**
|
|
@@ -659,92 +2996,146 @@
|
|
|
659
2996
|
*/
|
|
660
2997
|
/**
|
|
661
2998
|
* @license EUPL-1.2
|
|
2999
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
3000
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
3001
|
+
*/
|
|
3002
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3003
|
+
/**
|
|
3004
|
+
* @license EUPL-1.2
|
|
3005
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
3006
|
+
*/
|
|
3007
|
+
/**
|
|
3008
|
+
* @license EUPL-1.2
|
|
3009
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
662
3010
|
* Copyright (c) 2021 Robbert Broersma
|
|
663
3011
|
*/
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
3012
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3013
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3014
|
+
.utrecht-select {
|
|
3015
|
+
-moz-appearance: none;
|
|
3016
|
+
-webkit-appearance: none;
|
|
3017
|
+
appearance: none;
|
|
3018
|
+
background-color: var(--utrecht-select-background-color, var(--utrecht-form-input-background-color));
|
|
3019
|
+
background-image: var(--utrecht-select-background-image);
|
|
3020
|
+
background-position: 100%;
|
|
3021
|
+
background-repeat: no-repeat;
|
|
3022
|
+
background-size: 1.4em;
|
|
3023
|
+
border-block-end-width: var(--utrecht-select-border-block-end-width, var(--utrecht-select-border-width, var(--utrecht-form-input-border-width)));
|
|
3024
|
+
border-block-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
3025
|
+
border-color: var(--utrecht-select-border-color, var(--utrecht-form-input-border-color));
|
|
3026
|
+
border-inline-end-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
3027
|
+
border-inline-start-width: var(--utrecht-select-border-width, var(--utrecht-form-input-border-width));
|
|
3028
|
+
border-radius: var(--utrecht-select-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
669
3029
|
border-style: solid;
|
|
670
|
-
color: var(--utrecht-
|
|
671
|
-
font-family: var(--utrecht-
|
|
672
|
-
font-size: var(--utrecht-
|
|
673
|
-
max-
|
|
674
|
-
padding-block-end: var(--utrecht-
|
|
675
|
-
padding-block-start: var(--utrecht-
|
|
676
|
-
padding-inline-end: var(--utrecht-
|
|
677
|
-
padding-inline-start: var(--utrecht-
|
|
3030
|
+
color: var(--utrecht-select-color, var(--utrecht-form-input-color));
|
|
3031
|
+
font-family: var(--utrecht-select-font-family, var(--utrecht-form-input-font-family));
|
|
3032
|
+
font-size: var(--utrecht-select-font-size, var(--utrecht-form-input-font-size));
|
|
3033
|
+
max-inline-size: var(--utrecht-select-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
3034
|
+
padding-block-end: var(--utrecht-select-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
3035
|
+
padding-block-start: var(--utrecht-select-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
3036
|
+
padding-inline-end: var(--utrecht-select-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
3037
|
+
padding-inline-start: var(--utrecht-select-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
678
3038
|
width: 100%;
|
|
679
3039
|
}
|
|
680
3040
|
|
|
681
|
-
.utrecht-
|
|
682
|
-
|
|
683
|
-
border-color: var(--utrecht-
|
|
684
|
-
|
|
3041
|
+
.utrecht-select--disabled {
|
|
3042
|
+
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))));
|
|
3043
|
+
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))));
|
|
3044
|
+
color: var(--utrecht-select-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
3045
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
.utrecht-select--focus {
|
|
3049
|
+
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))));
|
|
3050
|
+
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))));
|
|
3051
|
+
color: var(--utrecht-select-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
685
3052
|
}
|
|
686
3053
|
|
|
687
|
-
.utrecht-
|
|
688
|
-
|
|
689
|
-
color: var(--utrecht-
|
|
3054
|
+
.utrecht-select--focus-visible {
|
|
3055
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
3056
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3057
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3058
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3059
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
690
3060
|
}
|
|
691
3061
|
|
|
692
|
-
.utrecht-
|
|
693
|
-
|
|
694
|
-
color: var(--utrecht-
|
|
3062
|
+
.utrecht-select--invalid {
|
|
3063
|
+
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))));
|
|
3064
|
+
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))));
|
|
3065
|
+
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))));
|
|
695
3066
|
}
|
|
696
3067
|
|
|
3068
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3069
|
+
.utrecht-select--html-select {
|
|
3070
|
+
/* <select> does not support :read-only */
|
|
3071
|
+
}
|
|
3072
|
+
.utrecht-select--html-select:disabled {
|
|
3073
|
+
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))));
|
|
3074
|
+
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))));
|
|
3075
|
+
color: var(--utrecht-select-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
3076
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
3077
|
+
}
|
|
3078
|
+
.utrecht-select--html-select:focus {
|
|
3079
|
+
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))));
|
|
3080
|
+
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))));
|
|
3081
|
+
color: var(--utrecht-select-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-select-color, var(--utrecht-form-input-color))));
|
|
3082
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
3083
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3084
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3085
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3086
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
3087
|
+
}
|
|
3088
|
+
.utrecht-select--html-select:focus:not(:focus-visible) {
|
|
3089
|
+
/* undo focus ring */
|
|
3090
|
+
box-shadow: none;
|
|
3091
|
+
outline-style: none;
|
|
3092
|
+
}
|
|
3093
|
+
.utrecht-select--html-select:invalid, .utrecht-select--html-select[aria-invalid=true] {
|
|
3094
|
+
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))));
|
|
3095
|
+
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))));
|
|
3096
|
+
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))));
|
|
3097
|
+
}
|
|
697
3098
|
/**
|
|
698
3099
|
* @license EUPL-1.2
|
|
3100
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
699
3101
|
* Copyright (c) 2021 Robbert Broersma
|
|
3102
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
700
3103
|
*/
|
|
701
3104
|
/**
|
|
702
3105
|
* @license EUPL-1.2
|
|
703
|
-
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
704
3106
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
3107
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
3108
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
705
3109
|
*/
|
|
706
|
-
.utrecht-
|
|
707
|
-
color: var(--utrecht-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
background-color: var(--utrecht-button-primary-action-background-color);
|
|
711
|
-
border-radius: var(--utrecht-button-border-radius);
|
|
712
|
-
border-width: var(--utrecht-button-border-width);
|
|
713
|
-
padding-inline-start: var(--utrecht-button-padding-inline-start);
|
|
714
|
-
padding-inline-end: var(--utrecht-button-padding-inline-end);
|
|
715
|
-
padding-block-start: var(--utrecht-button-padding-block-start);
|
|
716
|
-
padding-block-end: var(--utrecht-button-padding-block-end);
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
.utrecht-button--distanced, .utrecht-html button {
|
|
720
|
-
margin-inline-start: var(--utrecht-button-margin-inline-start);
|
|
721
|
-
margin-inline-end: var(--utrecht-button-margin-inline-end);
|
|
722
|
-
margin-block-start: var(--utrecht-button-margin-block-start);
|
|
723
|
-
margin-block-end: var(--utrecht-button-margin-block-end);
|
|
3110
|
+
.utrecht-separator {
|
|
3111
|
+
border-color: var(--utrecht-separator-color);
|
|
3112
|
+
border-style: solid;
|
|
3113
|
+
border-width: 0 0 var(--utrecht-separator-block-size) 0;
|
|
724
3114
|
}
|
|
725
3115
|
|
|
726
|
-
.utrecht-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
background-color: var(--utrecht-button-disabled-background-color);
|
|
3116
|
+
.utrecht-separator--distanced {
|
|
3117
|
+
margin-block-end: var(--utrecht-separator-margin-block-end);
|
|
3118
|
+
margin-block-start: var(--utrecht-separator-margin-block-start);
|
|
730
3119
|
}
|
|
731
3120
|
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
3121
|
+
/**
|
|
3122
|
+
* @license EUPL-1.2
|
|
3123
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
3124
|
+
*/
|
|
3125
|
+
/**
|
|
3126
|
+
* @license EUPL-1.2
|
|
3127
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
3128
|
+
*/
|
|
3129
|
+
.utrecht-surface {
|
|
3130
|
+
background-color: var(--utrecht-surface-background-color, inherit);
|
|
3131
|
+
color: var(--utrecht-surface-color, inherit);
|
|
741
3132
|
}
|
|
742
3133
|
|
|
743
|
-
.utrecht-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
3134
|
+
.utrecht-surface--html-body {
|
|
3135
|
+
margin-block-end: 0;
|
|
3136
|
+
margin-block-start: 0;
|
|
3137
|
+
margin-inline-end: 0;
|
|
3138
|
+
margin-inline-start: 0;
|
|
748
3139
|
}
|
|
749
3140
|
|
|
750
3141
|
/**
|
|
@@ -753,175 +3144,214 @@
|
|
|
753
3144
|
*/
|
|
754
3145
|
/**
|
|
755
3146
|
* @license EUPL-1.2
|
|
756
|
-
* Copyright (c) 2021 Gemeente Utrecht
|
|
757
3147
|
* Copyright (c) 2021 Robbert Broersma
|
|
758
|
-
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
759
3148
|
*/
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
3149
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3150
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3151
|
+
.utrecht-table {
|
|
3152
|
+
border-collapse: collapse;
|
|
3153
|
+
border-color: var(--utrecht-table-border-color, 0);
|
|
3154
|
+
border-style: solid;
|
|
3155
|
+
border-width: var(--utrecht-table-border-width, 0);
|
|
3156
|
+
font-family: var(--utrecht-table-font-family, var(--utrecht-document-font-family));
|
|
3157
|
+
font-size: var(--utrecht-table-font-size, inherit);
|
|
3158
|
+
width: 100%;
|
|
768
3159
|
}
|
|
769
3160
|
|
|
770
|
-
.utrecht-
|
|
771
|
-
margin-block-
|
|
772
|
-
margin-block-
|
|
3161
|
+
.utrecht-table--distanced {
|
|
3162
|
+
margin-block-end: var(--utrecht-table-margin-block-end);
|
|
3163
|
+
margin-block-start: var(--utrecht-table-margin-block-start);
|
|
773
3164
|
}
|
|
774
3165
|
|
|
775
|
-
.utrecht-
|
|
776
|
-
|
|
777
|
-
font-
|
|
778
|
-
font-
|
|
779
|
-
|
|
780
|
-
line-height: var(--utrecht-
|
|
781
|
-
|
|
782
|
-
|
|
3166
|
+
.utrecht-table__caption {
|
|
3167
|
+
color: var(--utrecht-table-caption-color);
|
|
3168
|
+
font-family: var(--utrecht-table-caption-font-family);
|
|
3169
|
+
font-size: var(--utrecht-table-caption-font-size);
|
|
3170
|
+
font-weight: var(--utrecht-table-caption-font-weight);
|
|
3171
|
+
line-height: var(--utrecht-table-caption-line-height);
|
|
3172
|
+
margin-block-end: var(--utrecht-table-caption-margin-block-end);
|
|
3173
|
+
text-align: var(--utrecht-table-caption-text-align, center);
|
|
783
3174
|
}
|
|
784
3175
|
|
|
785
|
-
.utrecht-
|
|
786
|
-
|
|
787
|
-
|
|
3176
|
+
.utrecht-table__header {
|
|
3177
|
+
background-color: var(--utrecht-table-header-background-color);
|
|
3178
|
+
color: var(--utrecht-table-header-color);
|
|
3179
|
+
font-weight: var(--utrecht-table-header-font-weight);
|
|
3180
|
+
text-transform: var(--utrecht-table-header-text-transform);
|
|
3181
|
+
vertical-align: bottom;
|
|
788
3182
|
}
|
|
789
3183
|
|
|
790
|
-
.utrecht-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
letter-spacing: var(--utrecht-heading-3-letter-spacing);
|
|
795
|
-
line-height: var(--utrecht-heading-3-line-height);
|
|
796
|
-
text-transform: var(--utrecht-heading-3-text-transform, inherit);
|
|
797
|
-
color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
3184
|
+
.utrecht-table__cell--last-header-row {
|
|
3185
|
+
border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
|
|
3186
|
+
border-block-end-style: solid;
|
|
3187
|
+
border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
|
|
798
3188
|
}
|
|
799
3189
|
|
|
800
|
-
.utrecht-
|
|
801
|
-
|
|
802
|
-
margin-block-end: var(--utrecht-heading-3-margin-block-end);
|
|
3190
|
+
.utrecht-table__body {
|
|
3191
|
+
vertical-align: baseline;
|
|
803
3192
|
}
|
|
804
3193
|
|
|
805
|
-
.utrecht-
|
|
806
|
-
|
|
807
|
-
font-size: var(--utrecht-
|
|
808
|
-
font-weight: var(--utrecht-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
text-transform: var(--utrecht-heading-4-text-transform, inherit);
|
|
812
|
-
color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
3194
|
+
.utrecht-table__header-cell {
|
|
3195
|
+
color: var(--utrecht-table-header-cell-color);
|
|
3196
|
+
font-size: var(--utrecht-table-header-cell-font-size);
|
|
3197
|
+
font-weight: var(--utrecht-table-header-cell-font-weight);
|
|
3198
|
+
text-align: start;
|
|
3199
|
+
text-transform: var(--utrecht-table-header-cell-text-transform);
|
|
813
3200
|
}
|
|
814
3201
|
|
|
815
|
-
.utrecht-
|
|
816
|
-
|
|
817
|
-
|
|
3202
|
+
.utrecht-table__cell {
|
|
3203
|
+
border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
|
|
3204
|
+
border-block-end-style: solid;
|
|
3205
|
+
border-block-end-width: var(--utrecht-table-row-border-block-end-width, 0);
|
|
3206
|
+
line-height: var(--utrecht-table-cell-line-height, inherit);
|
|
3207
|
+
padding-block-end: var(--utrecht-table-cell-padding-block-end, 0);
|
|
3208
|
+
padding-block-start: var(--utrecht-table-cell-padding-block-start, 0);
|
|
3209
|
+
padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
|
|
3210
|
+
padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
|
|
3211
|
+
text-align: start;
|
|
818
3212
|
}
|
|
819
3213
|
|
|
820
|
-
.utrecht-
|
|
821
|
-
|
|
822
|
-
font-size: var(--utrecht-heading-5-font-size);
|
|
823
|
-
font-weight: var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));
|
|
824
|
-
letter-spacing: var(--utrecht-heading-5-letter-spacing);
|
|
825
|
-
line-height: var(--utrecht-heading-5-line-height);
|
|
826
|
-
text-transform: var(--utrecht-heading-5-text-transform, inherit);
|
|
827
|
-
color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
3214
|
+
.utrecht-table__cell--first {
|
|
3215
|
+
padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
|
|
828
3216
|
}
|
|
829
3217
|
|
|
830
|
-
.utrecht-
|
|
831
|
-
|
|
832
|
-
margin-block-end: var(--utrecht-heading-5-margin-block-end);
|
|
3218
|
+
.utrecht-table__cell--last {
|
|
3219
|
+
padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
|
|
833
3220
|
}
|
|
834
3221
|
|
|
835
|
-
.utrecht-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
letter-spacing: var(--utrecht-heading-6-letter-spacing);
|
|
840
|
-
line-height: var(--utrecht-heading-6-line-height);
|
|
841
|
-
text-transform: var(--utrecht-heading-6-text-transform, inherit);
|
|
842
|
-
color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
|
|
3222
|
+
.utrecht-table__header-cell--numeric-column,
|
|
3223
|
+
.utrecht-table__cell--numeric-column {
|
|
3224
|
+
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
|
|
3225
|
+
text-align: right;
|
|
843
3226
|
}
|
|
844
3227
|
|
|
845
|
-
.utrecht-
|
|
846
|
-
|
|
847
|
-
|
|
3228
|
+
.utrecht-table__cell--numeric-data {
|
|
3229
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.utrecht-table__row--alternate-odd {
|
|
3233
|
+
background-color: var(--utrecht-table-row-alternate-odd-background-color);
|
|
3234
|
+
color: var(--utrecht-table-row-alternate-odd-color);
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.utrecht-table__row--alternate-even {
|
|
3238
|
+
background-color: var(--utrecht-table-row-alternate-even-background-color);
|
|
3239
|
+
color: var(--utrecht-table-row-alternate-even-color);
|
|
848
3240
|
}
|
|
849
3241
|
|
|
850
3242
|
/**
|
|
851
3243
|
* @license EUPL-1.2
|
|
852
|
-
* Copyright (c) 2021
|
|
3244
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
853
3245
|
*/
|
|
854
3246
|
/**
|
|
855
3247
|
* @license EUPL-1.2
|
|
856
3248
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
3249
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
857
3250
|
*/
|
|
858
|
-
|
|
859
|
-
/* reset native margin for input[type="radio"] */
|
|
860
|
-
margin-block-start: 0;
|
|
861
|
-
margin-block-end: 0;
|
|
862
|
-
margin-inline-start: 0;
|
|
863
|
-
margin-inline-end: 0;
|
|
864
|
-
}
|
|
865
|
-
|
|
3251
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
866
3252
|
/**
|
|
867
3253
|
* @license EUPL-1.2
|
|
868
3254
|
* Copyright (c) 2021 Robbert Broersma
|
|
869
3255
|
*/
|
|
870
3256
|
/**
|
|
871
3257
|
* @license EUPL-1.2
|
|
3258
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
872
3259
|
* Copyright (c) 2021 Robbert Broersma
|
|
873
3260
|
*/
|
|
874
|
-
|
|
875
|
-
.utrecht-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
border-
|
|
880
|
-
border-
|
|
881
|
-
border-color: var(--utrecht-textbox-border-color);
|
|
882
|
-
border-radius: var(--utrecht-textbox-border-radius, 0);
|
|
3261
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3262
|
+
.utrecht-textarea {
|
|
3263
|
+
background-color: var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));
|
|
3264
|
+
border-width: var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));
|
|
3265
|
+
border-bottom-width: var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));
|
|
3266
|
+
border-color: var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));
|
|
3267
|
+
border-radius: var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
883
3268
|
border-style: solid;
|
|
884
|
-
color: var(--utrecht-textbox-color);
|
|
885
|
-
font-family: var(--utrecht-textbox-font-family);
|
|
886
|
-
font-size: var(--utrecht-textbox-font-size, 1em);
|
|
887
|
-
max-width: var(--utrecht-textbox-max-width);
|
|
888
|
-
padding-block-end: var(--utrecht-textbox-padding-block-end);
|
|
889
|
-
padding-block-start: var(--utrecht-textbox-padding-block-start);
|
|
890
|
-
padding-inline-end: var(--utrecht-textbox-padding-inline-end);
|
|
891
|
-
padding-inline-start: var(--utrecht-textbox-padding-inline-start);
|
|
892
3269
|
box-sizing: border-box;
|
|
3270
|
+
color: var(--utrecht-textarea-color, var(--utrecht-form-input-color));
|
|
3271
|
+
font-family: var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));
|
|
3272
|
+
font-size: var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
3273
|
+
max-inline-size: var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
3274
|
+
min-block-size: var(--utrecht-textarea-min-block-size);
|
|
3275
|
+
padding-block-end: var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
3276
|
+
padding-block-start: var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
3277
|
+
padding-inline-end: var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
3278
|
+
padding-inline-start: var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
3279
|
+
resize: vertical;
|
|
893
3280
|
width: 100%;
|
|
894
3281
|
}
|
|
895
3282
|
|
|
896
|
-
.utrecht-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
.utrecht-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
3283
|
+
.utrecht-textarea--invalid {
|
|
3284
|
+
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))));
|
|
3285
|
+
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))));
|
|
3286
|
+
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))));
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
.utrecht-textarea--disabled {
|
|
3290
|
+
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))));
|
|
3291
|
+
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))));
|
|
3292
|
+
color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3293
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3296
|
+
.utrecht-textarea--focus {
|
|
3297
|
+
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))));
|
|
3298
|
+
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))));
|
|
3299
|
+
color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
.utrecht-textarea--focus-visible {
|
|
3303
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
3304
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3305
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3306
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3307
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
.utrecht-textarea--read-only {
|
|
3311
|
+
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))));
|
|
3312
|
+
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
907
3313
|
}
|
|
908
3314
|
|
|
909
|
-
.utrecht-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
.utrecht-html input[type=url]:disabled {
|
|
914
|
-
border-color: var(--utrecht-textbox-disabled-border-color);
|
|
915
|
-
color: var(--utrecht-textbox-disabled-color);
|
|
3315
|
+
.utrecht-textarea__placeholder {
|
|
3316
|
+
color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3317
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
3318
|
+
opacity: 100%;
|
|
916
3319
|
}
|
|
917
3320
|
|
|
918
|
-
.utrecht-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
3321
|
+
.utrecht-textarea--html-textarea:disabled {
|
|
3322
|
+
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))));
|
|
3323
|
+
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))));
|
|
3324
|
+
color: var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3325
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
3326
|
+
}
|
|
3327
|
+
.utrecht-textarea--html-textarea:focus {
|
|
3328
|
+
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))));
|
|
3329
|
+
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))));
|
|
3330
|
+
color: var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3331
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
3332
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3333
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3334
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3335
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
3336
|
+
}
|
|
3337
|
+
.utrecht-textarea--html-textarea:focus:not(:focus-visible) {
|
|
3338
|
+
/* undo focus ring */
|
|
3339
|
+
box-shadow: none;
|
|
3340
|
+
outline-style: none;
|
|
3341
|
+
}
|
|
3342
|
+
.utrecht-textarea--html-textarea:invalid, .utrecht-textarea--html-textarea[aria-invalid=true] {
|
|
3343
|
+
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))));
|
|
3344
|
+
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))));
|
|
3345
|
+
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))));
|
|
3346
|
+
}
|
|
3347
|
+
.utrecht-textarea--html-textarea:read-only {
|
|
3348
|
+
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))));
|
|
3349
|
+
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3350
|
+
}
|
|
3351
|
+
.utrecht-textarea--html-textarea::placeholder {
|
|
3352
|
+
color: var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3353
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
3354
|
+
opacity: 100%;
|
|
925
3355
|
}
|
|
926
3356
|
|
|
927
3357
|
/**
|
|
@@ -930,119 +3360,164 @@
|
|
|
930
3360
|
*/
|
|
931
3361
|
/**
|
|
932
3362
|
* @license EUPL-1.2
|
|
3363
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
933
3364
|
* Copyright (c) 2021 Robbert Broersma
|
|
934
3365
|
*/
|
|
935
|
-
|
|
936
|
-
/* reset native margin for input[type="checkbox"] */
|
|
937
|
-
margin-block-start: 0;
|
|
938
|
-
margin-block-end: 0;
|
|
939
|
-
margin-inline-start: 0;
|
|
940
|
-
margin-inline-end: 0;
|
|
941
|
-
}
|
|
942
|
-
|
|
3366
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
943
3367
|
/**
|
|
944
3368
|
* @license EUPL-1.2
|
|
945
3369
|
* Copyright (c) 2021 Robbert Broersma
|
|
946
3370
|
*/
|
|
947
3371
|
/**
|
|
948
3372
|
* @license EUPL-1.2
|
|
949
|
-
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
950
3373
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
3374
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
951
3375
|
*/
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
color: var(--utrecht-
|
|
3376
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
3377
|
+
.utrecht-textbox {
|
|
3378
|
+
background-color: var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));
|
|
3379
|
+
border-width: var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));
|
|
3380
|
+
border-bottom-width: var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));
|
|
3381
|
+
border-color: var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));
|
|
3382
|
+
border-radius: var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));
|
|
3383
|
+
border-style: solid;
|
|
3384
|
+
box-sizing: border-box;
|
|
3385
|
+
color: var(--utrecht-textbox-color, var(--utrecht-form-input-color));
|
|
3386
|
+
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));
|
|
3387
|
+
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));
|
|
3388
|
+
max-inline-size: var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));
|
|
3389
|
+
padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));
|
|
3390
|
+
padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));
|
|
3391
|
+
padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));
|
|
3392
|
+
padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));
|
|
3393
|
+
width: 100%;
|
|
955
3394
|
}
|
|
956
3395
|
|
|
957
|
-
.utrecht-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
3396
|
+
.utrecht-textbox--invalid {
|
|
3397
|
+
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))));
|
|
3398
|
+
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))));
|
|
3399
|
+
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))));
|
|
961
3400
|
}
|
|
962
3401
|
|
|
963
|
-
.utrecht-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
color: var(--utrecht-
|
|
967
|
-
|
|
3402
|
+
.utrecht-textbox--disabled {
|
|
3403
|
+
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))));
|
|
3404
|
+
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))));
|
|
3405
|
+
color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3406
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
968
3407
|
}
|
|
969
3408
|
|
|
970
|
-
.utrecht-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
color: var(--utrecht-
|
|
3409
|
+
.utrecht-textbox--focus {
|
|
3410
|
+
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))));
|
|
3411
|
+
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))));
|
|
3412
|
+
color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
974
3413
|
}
|
|
975
3414
|
|
|
976
|
-
.utrecht-
|
|
977
|
-
.utrecht-link--focus,
|
|
978
|
-
.utrecht-html a:focus {
|
|
979
|
-
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
980
|
-
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
981
|
-
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
982
|
-
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
983
|
-
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
984
|
-
color: var(--utrecht-focus-color, inherit);
|
|
3415
|
+
.utrecht-textbox--focus-visible {
|
|
985
3416
|
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
986
|
-
outline-
|
|
987
|
-
|
|
3417
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3418
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3419
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3420
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
988
3421
|
}
|
|
989
3422
|
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
3423
|
+
.utrecht-textbox--read-only {
|
|
3424
|
+
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))));
|
|
3425
|
+
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
993
3426
|
}
|
|
994
3427
|
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
3428
|
+
.utrecht-textbox__placeholder {
|
|
3429
|
+
color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
3430
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
3431
|
+
opacity: 100%;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
.utrecht-textbox--numeric {
|
|
3435
|
+
-moz-appearance: textfield;
|
|
3436
|
+
/* avoid spinner input in Firefox */
|
|
3437
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3440
|
+
.utrecht-textbox--password {
|
|
3441
|
+
font-variant-ligatures: none;
|
|
3442
|
+
font-variant-numeric: slashed-zero;
|
|
3443
|
+
}
|
|
3444
|
+
|
|
3445
|
+
.utrecht-textbox--url {
|
|
3446
|
+
font-variant-ligatures: none;
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.utrecht-textbox--html-input:disabled {
|
|
3450
|
+
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))));
|
|
3451
|
+
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))));
|
|
3452
|
+
color: var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3453
|
+
cursor: var(--utrecht-action-disabled-cursor);
|
|
3454
|
+
}
|
|
3455
|
+
.utrecht-textbox--html-input:focus {
|
|
3456
|
+
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))));
|
|
3457
|
+
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))));
|
|
3458
|
+
color: var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));
|
|
3459
|
+
box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
|
|
3460
|
+
outline-color: var(--utrecht-focus-outline-color, transparent);
|
|
3461
|
+
outline-offset: var(--utrecht-focus-outline-offset, 0);
|
|
3462
|
+
outline-style: var(--utrecht-focus-outline-style, solid);
|
|
3463
|
+
outline-width: var(--utrecht-focus-outline-width, 0);
|
|
3464
|
+
}
|
|
3465
|
+
.utrecht-textbox--html-input:focus:not(:focus-visible) {
|
|
3466
|
+
/* undo focus ring */
|
|
3467
|
+
box-shadow: none;
|
|
3468
|
+
outline-style: none;
|
|
3469
|
+
}
|
|
3470
|
+
.utrecht-textbox--html-input:invalid, .utrecht-textbox--html-input[aria-invalid=true] {
|
|
3471
|
+
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))));
|
|
3472
|
+
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))));
|
|
3473
|
+
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))));
|
|
3474
|
+
}
|
|
3475
|
+
.utrecht-textbox--html-input:read-only {
|
|
3476
|
+
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))));
|
|
3477
|
+
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
3478
|
+
}
|
|
3479
|
+
.utrecht-textbox--html-input::placeholder {
|
|
3480
|
+
color: var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));
|
|
3481
|
+
font-style: var(--utrecht-form-input-placeholder-font-style);
|
|
3482
|
+
opacity: 100%;
|
|
1011
3483
|
}
|
|
1012
3484
|
|
|
1013
3485
|
/**
|
|
1014
3486
|
* @license EUPL-1.2
|
|
1015
3487
|
* Copyright (c) 2021 Robbert Broersma
|
|
3488
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
1016
3489
|
*/
|
|
1017
3490
|
/**
|
|
1018
3491
|
* @license EUPL-1.2
|
|
1019
3492
|
* Copyright (c) 2021 Robbert Broersma
|
|
1020
3493
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
1021
3494
|
*/
|
|
1022
|
-
.utrecht-unordered-list
|
|
3495
|
+
.utrecht-unordered-list {
|
|
1023
3496
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
1024
3497
|
font-size: var(--utrecht-document-font-size, inherit);
|
|
1025
3498
|
line-height: var(--utrecht-document-line-height, inherit);
|
|
1026
|
-
|
|
3499
|
+
margin-block-end: 0;
|
|
3500
|
+
margin-block-start: 0;
|
|
3501
|
+
padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
|
|
1027
3502
|
}
|
|
1028
3503
|
|
|
1029
|
-
.utrecht-unordered-list--distanced
|
|
1030
|
-
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
3504
|
+
.utrecht-unordered-list--distanced {
|
|
1031
3505
|
margin-block-end: var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));
|
|
3506
|
+
margin-block-start: var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start));
|
|
1032
3507
|
}
|
|
1033
3508
|
|
|
1034
3509
|
.utrecht-unordered-list--nested {
|
|
1035
|
-
margin-inline-start: 2ch;
|
|
1036
3510
|
margin-block-end: 0;
|
|
3511
|
+
margin-inline-start: 2ch;
|
|
1037
3512
|
}
|
|
1038
3513
|
|
|
1039
|
-
.utrecht-unordered-list__item
|
|
1040
|
-
padding-inline-start: 1ch;
|
|
1041
|
-
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
3514
|
+
.utrecht-unordered-list__item {
|
|
1042
3515
|
margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
|
|
3516
|
+
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
3517
|
+
padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
|
|
1043
3518
|
}
|
|
1044
3519
|
|
|
1045
|
-
.utrecht-unordered-list__item::marker,
|
|
3520
|
+
.utrecht-unordered-list__item::marker,
|
|
1046
3521
|
.utrecht-unordered-list__marker {
|
|
1047
3522
|
color: var(--utrecht-unordered-list-marker-color);
|
|
1048
3523
|
content: "●";
|
|
@@ -1050,498 +3525,14 @@
|
|
|
1050
3525
|
|
|
1051
3526
|
/**
|
|
1052
3527
|
* @license EUPL-1.2
|
|
3528
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1053
3529
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
1054
3530
|
*/
|
|
1055
|
-
/* Collection of CSS variables for Utrecht theme applied to `:root` */
|
|
1056
|
-
/**
|
|
1057
|
-
* Do not edit directly
|
|
1058
|
-
* Generated on Mon, 26 Jul 2021 16:15:55 GMT
|
|
1059
|
-
*/
|
|
1060
|
-
:root {
|
|
1061
|
-
--utrecht-topnav-link-focus-text-decoration: none;
|
|
1062
|
-
--utrecht-topnav-link-focus-border-type: dotted;
|
|
1063
|
-
--utrecht-form-input-block-size: 42px;
|
|
1064
|
-
--utrecht-badge-counter-padding-inline: 1ex;
|
|
1065
|
-
--utrecht-badge-counter-padding-block: 1ex;
|
|
1066
|
-
--utrecht-badge-counter-border-radius: 3ex;
|
|
1067
|
-
--utrecht-border-style-dotted: dotted;
|
|
1068
|
-
--utrecht-border-style-solid: solid;
|
|
1069
|
-
--utrecht-border-width-md: 2px;
|
|
1070
|
-
--utrecht-border-width-sm: 1px;
|
|
1071
|
-
--utrecht-typography-weight-scale-normal-font-weight: normal;
|
|
1072
|
-
--utrecht-typography-weight-scale-bold-font-weight: bold;
|
|
1073
|
-
--utrecht-typography-scale-3xl-font-size: 2rem;
|
|
1074
|
-
/* 36px */
|
|
1075
|
-
--utrecht-typography-scale-2xl-font-size: 1.5rem;
|
|
1076
|
-
/* 24px */
|
|
1077
|
-
--utrecht-typography-scale-xl-font-size: 1.4rem;
|
|
1078
|
-
/* 22,4px */
|
|
1079
|
-
--utrecht-typography-scale-lg-font-size: 1.25rem;
|
|
1080
|
-
/* 20px */
|
|
1081
|
-
--utrecht-typography-scale-md-font-size: 1rem;
|
|
1082
|
-
/* 16px */
|
|
1083
|
-
--utrecht-typography-scale-sm-font-size: 0.9rem;
|
|
1084
|
-
/* 14,4px */
|
|
1085
|
-
--utrecht-typography-scale-xs-font-size: 0.7rem;
|
|
1086
|
-
/* 11,2px */
|
|
1087
|
-
--utrecht-typography-scale-2xs-font-size: 0.5rem;
|
|
1088
|
-
/* 8px */
|
|
1089
|
-
--utrecht-typography-sans-serif-font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
|
|
1090
|
-
--utrecht-color-black: hsl(0 0% 0%);
|
|
1091
|
-
--utrecht-color-white: hsl(0 0% 100%);
|
|
1092
|
-
--utrecht-color-green-90: hsl(90 30% 90%);
|
|
1093
|
-
/* Achtergrond licht groen */
|
|
1094
|
-
--utrecht-color-green-80: hsl(90 30% 80%);
|
|
1095
|
-
/* Licht groen */
|
|
1096
|
-
--utrecht-color-green-50: hsl(90 30% 50%);
|
|
1097
|
-
/* Standaard groen #80a659 */
|
|
1098
|
-
--utrecht-color-green-40: hsl(90 30% 40%);
|
|
1099
|
-
/* donker groen */
|
|
1100
|
-
--utrecht-color-yellow-80: hsl(48 100% 80%);
|
|
1101
|
-
/* spotlight en uitgelicht */
|
|
1102
|
-
--utrecht-color-yellow-60: hsl(48 100% 60%);
|
|
1103
|
-
/* selecteer geel */
|
|
1104
|
-
--utrecht-color-yellow-50: hsl(48 100% 50%);
|
|
1105
|
-
/* basis geel #ffcc00 */
|
|
1106
|
-
--utrecht-color-yellow-40: hsl(48 100% 40%);
|
|
1107
|
-
/* donker geel */
|
|
1108
|
-
--utrecht-color-grey-90: hsl(0 0% 90%);
|
|
1109
|
-
/* grijs variant voor achtergrond templates #f2f2f2 */
|
|
1110
|
-
--utrecht-color-grey-80: hsl(0 0% 80%);
|
|
1111
|
-
/* grijs variant voor achtergrond content #e5e5e5 */
|
|
1112
|
-
--utrecht-color-grey-40: hsl(0 0% 40%);
|
|
1113
|
-
/* basis grijs #727272 */
|
|
1114
|
-
--utrecht-color-grey-30: hsl(0 0% 30%);
|
|
1115
|
-
/* border grijs #888 */
|
|
1116
|
-
--utrecht-color-grey-15: hsl(0 0% 15%);
|
|
1117
|
-
/* experimenteel / beperkt gebruiken */
|
|
1118
|
-
--utrecht-color-blue-90: hsl(211 60% 90%);
|
|
1119
|
-
/* ijsblauw variant achtergrond, spotlight en uitgelicht */
|
|
1120
|
-
--utrecht-color-blue-80: hsl(211 60% 80%);
|
|
1121
|
-
/* licht blauw voor achtergrond */
|
|
1122
|
-
--utrecht-color-blue-50: hsl(211 60% 50%);
|
|
1123
|
-
/* experimenteel / beperkt gebruiken */
|
|
1124
|
-
--utrecht-color-blue-40: hsl(211 60% 40%);
|
|
1125
|
-
/* blauw variant bij hover/focus #3669a5 */
|
|
1126
|
-
--utrecht-color-blue-35: hsl(211 60% 35%);
|
|
1127
|
-
/* basis link en knoppen CTA donkerblauw */
|
|
1128
|
-
--utrecht-color-blue-30: hsl(211 60% 30%);
|
|
1129
|
-
/* basis link en knoppen CTA donkerblauw */
|
|
1130
|
-
--utrecht-color-blue-20: hsl(211 60% 20%);
|
|
1131
|
-
/* basis donkerblauw (OS focus) */
|
|
1132
|
-
--utrecht-color-red-40: hsl(0 100% 40%);
|
|
1133
|
-
/* basis rood #cc0000 */
|
|
1134
|
-
--utrecht-color-red-30: hsl(0 100% 30%);
|
|
1135
|
-
/* hover rood */
|
|
1136
|
-
--utrecht-color-red-20: hsl(0 100% 20%);
|
|
1137
|
-
/* donker rood */
|
|
1138
|
-
--utrecht-unordered-list-item-margin-block-end: 0.5rem;
|
|
1139
|
-
--utrecht-unordered-list-item-margin-block-start: 0.5rem;
|
|
1140
|
-
--utrecht-unordered-list-margin-block-end: 1rem;
|
|
1141
|
-
--utrecht-unordered-list-margin-block-start: 0;
|
|
1142
|
-
--utrecht-textbox-padding-inline-start: 12px;
|
|
1143
|
-
--utrecht-textbox-padding-inline-end: 12px;
|
|
1144
|
-
--utrecht-textbox-padding-block-start: 8px;
|
|
1145
|
-
--utrecht-textbox-padding-block-end: 8px;
|
|
1146
|
-
--utrecht-textbox-max-width: 28em;
|
|
1147
|
-
--utrecht-textbox-border-radius: 0;
|
|
1148
|
-
--utrecht-textbox-border-bottom-width: 3px;
|
|
1149
|
-
--utrecht-table-cell-padding-inline-start: 0.4em;
|
|
1150
|
-
--utrecht-table-cell-padding-inline-end: 0;
|
|
1151
|
-
--utrecht-table-cell-padding-block-start: 0.5em;
|
|
1152
|
-
--utrecht-table-cell-padding-block-end: 0.5em;
|
|
1153
|
-
--utrecht-table-caption-margin-block-end: 1em;
|
|
1154
|
-
--utrecht-table-caption-text-align: start;
|
|
1155
|
-
--utrecht-table-caption-font-size: 1.125em;
|
|
1156
|
-
--utrecht-space-column-5xl: 80px;
|
|
1157
|
-
/* Extra Large 5 */
|
|
1158
|
-
--utrecht-space-column-4xl: 64px;
|
|
1159
|
-
/* Extra Large 4 */
|
|
1160
|
-
--utrecht-space-column-3xl: 48px;
|
|
1161
|
-
/* Extra Large 3 */
|
|
1162
|
-
--utrecht-space-column-2xl: 32px;
|
|
1163
|
-
/* Extra Large 2 */
|
|
1164
|
-
--utrecht-space-column-xl: 28px;
|
|
1165
|
-
/* Extra Large */
|
|
1166
|
-
--utrecht-space-column-lg: 24px;
|
|
1167
|
-
/* Large */
|
|
1168
|
-
--utrecht-space-column-md: 16px;
|
|
1169
|
-
/* Medium */
|
|
1170
|
-
--utrecht-space-column-sm: 12px;
|
|
1171
|
-
/* Small */
|
|
1172
|
-
--utrecht-space-column-xs: 8px;
|
|
1173
|
-
/* Extra Small */
|
|
1174
|
-
--utrecht-space-column-2xs: 4px;
|
|
1175
|
-
/* Extra Small 2 */
|
|
1176
|
-
--utrecht-space-column-3xs: 2px;
|
|
1177
|
-
/* Extra Small 3 */
|
|
1178
|
-
--utrecht-space-column-4xs: 1px;
|
|
1179
|
-
/* Extra Small 4 */
|
|
1180
|
-
--utrecht-space-row-5xl: 80px;
|
|
1181
|
-
/* Extra Large 5 */
|
|
1182
|
-
--utrecht-space-row-4xl: 64px;
|
|
1183
|
-
/* Extra Large 4 */
|
|
1184
|
-
--utrecht-space-row-3xl: 48px;
|
|
1185
|
-
/* Extra Large 3 */
|
|
1186
|
-
--utrecht-space-row-2xl: 32px;
|
|
1187
|
-
/* Extra Large 2 */
|
|
1188
|
-
--utrecht-space-row-xl: 28px;
|
|
1189
|
-
/* Extra Large */
|
|
1190
|
-
--utrecht-space-row-lg: 24px;
|
|
1191
|
-
/* Large */
|
|
1192
|
-
--utrecht-space-row-md: 16px;
|
|
1193
|
-
/* Medium */
|
|
1194
|
-
--utrecht-space-row-sm: 12px;
|
|
1195
|
-
/* Small */
|
|
1196
|
-
--utrecht-space-row-xs: 8px;
|
|
1197
|
-
/* Extra Small */
|
|
1198
|
-
--utrecht-space-row-2xs: 4px;
|
|
1199
|
-
/* Extra Small 2 */
|
|
1200
|
-
--utrecht-space-row-3xs: 2px;
|
|
1201
|
-
/* Extra Small 3 */
|
|
1202
|
-
--utrecht-space-row-4xs: 1px;
|
|
1203
|
-
/* Extra Small 4 */
|
|
1204
|
-
--utrecht-space-text-3xl: 3ch;
|
|
1205
|
-
/* Extra Large 3 */
|
|
1206
|
-
--utrecht-space-text-2xl: 2ch;
|
|
1207
|
-
/* Extra Large 2 */
|
|
1208
|
-
--utrecht-space-text-xl: 1.75ch;
|
|
1209
|
-
/* Extra Large */
|
|
1210
|
-
--utrecht-space-text-lg: 1.5ch;
|
|
1211
|
-
/* Large */
|
|
1212
|
-
--utrecht-space-text-md: 1ch;
|
|
1213
|
-
/* Medium */
|
|
1214
|
-
--utrecht-space-text-sm: 0.75ch;
|
|
1215
|
-
/* Small */
|
|
1216
|
-
--utrecht-space-text-xs: 0.5ch;
|
|
1217
|
-
/* Extra Small */
|
|
1218
|
-
--utrecht-space-text-2xs: 0.25ch;
|
|
1219
|
-
/* Extra Small 2 */
|
|
1220
|
-
--utrecht-space-text-3xs: 0.125ch;
|
|
1221
|
-
/* Extra Small 3 */
|
|
1222
|
-
--utrecht-space-inline-3xl: 48px;
|
|
1223
|
-
/* Extra Large 3 */
|
|
1224
|
-
--utrecht-space-inline-2xl: 32px;
|
|
1225
|
-
/* Extra Large 2 */
|
|
1226
|
-
--utrecht-space-inline-xl: 28px;
|
|
1227
|
-
/* Extra Large */
|
|
1228
|
-
--utrecht-space-inline-lg: 24px;
|
|
1229
|
-
/* Large */
|
|
1230
|
-
--utrecht-space-inline-md: 16px;
|
|
1231
|
-
/* Medium */
|
|
1232
|
-
--utrecht-space-inline-sm: 12px;
|
|
1233
|
-
/* Small */
|
|
1234
|
-
--utrecht-space-inline-xs: 8px;
|
|
1235
|
-
/* Extra Small */
|
|
1236
|
-
--utrecht-space-inline-2xs: 4px;
|
|
1237
|
-
/* Extra Small 2 */
|
|
1238
|
-
--utrecht-space-inline-3xs: 2px;
|
|
1239
|
-
/* Extra Small 3 */
|
|
1240
|
-
--utrecht-space-block-5xl: 80px;
|
|
1241
|
-
/* Extra Large 5 */
|
|
1242
|
-
--utrecht-space-block-4xl: 64px;
|
|
1243
|
-
/* Extra Large 4 */
|
|
1244
|
-
--utrecht-space-block-3xl: 48px;
|
|
1245
|
-
/* Extra Large 3 */
|
|
1246
|
-
--utrecht-space-block-2xl: 32px;
|
|
1247
|
-
/* Extra Large 2 */
|
|
1248
|
-
--utrecht-space-block-xl: 28px;
|
|
1249
|
-
/* Extra Large */
|
|
1250
|
-
--utrecht-space-block-lg: 24px;
|
|
1251
|
-
/* Large */
|
|
1252
|
-
--utrecht-space-block-md: 16px;
|
|
1253
|
-
/* Medium */
|
|
1254
|
-
--utrecht-space-block-sm: 12px;
|
|
1255
|
-
/* Small */
|
|
1256
|
-
--utrecht-space-block-xs: 8px;
|
|
1257
|
-
/* Extra Small */
|
|
1258
|
-
--utrecht-space-block-2xs: 4px;
|
|
1259
|
-
/* Extra Small 2 */
|
|
1260
|
-
--utrecht-space-block-3xs: 2px;
|
|
1261
|
-
/* Extra Small 3 */
|
|
1262
|
-
--utrecht-separator-width: 8px;
|
|
1263
|
-
--utrecht-paragraph-line-height: 1.4;
|
|
1264
|
-
--utrecht-page-footer-padding-block-start: 1.8em;
|
|
1265
|
-
--utrecht-page-footer-padding-block-end: 1.8em;
|
|
1266
|
-
--utrecht-page-footer-padding-inline-start: 1em;
|
|
1267
|
-
--utrecht-page-footer-padding-inline-end: 1em;
|
|
1268
|
-
--utrecht-mapcontrolbutton-focus-text-decoration: none;
|
|
1269
|
-
--utrecht-mapcontrolbutton-border-radius: 0;
|
|
1270
|
-
--utrecht-mapcontrolbutton-margin-inline-end: 0;
|
|
1271
|
-
--utrecht-mapcontrolbutton-margin-inline-start: 0;
|
|
1272
|
-
--utrecht-link-hover-text-decoration: underline;
|
|
1273
|
-
--utrecht-link-focus-text-decoration: none;
|
|
1274
|
-
--utrecht-link-text-decoration: underline;
|
|
1275
|
-
--utrecht-heading-6-text-transform: uppercase;
|
|
1276
|
-
--utrecht-heading-6-letter-spacing: 0.72px;
|
|
1277
|
-
--utrecht-heading-6-margin-block-start: 1rem;
|
|
1278
|
-
--utrecht-heading-6-margin-block-end: 0.2rem;
|
|
1279
|
-
--utrecht-heading-6-line-height: 1.333;
|
|
1280
|
-
--utrecht-heading-6-font-size: 0.9rem;
|
|
1281
|
-
--utrecht-heading-5-text-transform: uppercase;
|
|
1282
|
-
--utrecht-heading-5-letter-spacing: 0.72px;
|
|
1283
|
-
--utrecht-heading-5-margin-block-start: 1rem;
|
|
1284
|
-
--utrecht-heading-5-margin-block-end: 0.2rem;
|
|
1285
|
-
--utrecht-heading-5-line-height: 1.333;
|
|
1286
|
-
--utrecht-heading-5-font-size: 0.9rem;
|
|
1287
|
-
--utrecht-heading-4-margin-block-start: 1.2rem;
|
|
1288
|
-
--utrecht-heading-4-margin-block-end: 0.3rem;
|
|
1289
|
-
--utrecht-heading-4-line-height: 1.25;
|
|
1290
|
-
--utrecht-heading-4-font-size: 1.125rem;
|
|
1291
|
-
--utrecht-heading-3-margin-block-start: 1rem;
|
|
1292
|
-
--utrecht-heading-3-margin-block-end: 0.2rem;
|
|
1293
|
-
--utrecht-heading-3-line-height: 1.2;
|
|
1294
|
-
--utrecht-heading-3-font-size: 1.25rem;
|
|
1295
|
-
--utrecht-heading-2-margin-block-start: 1.5rem;
|
|
1296
|
-
--utrecht-heading-2-margin-block-end: 0.3rem;
|
|
1297
|
-
--utrecht-heading-2-line-height: 1.2;
|
|
1298
|
-
--utrecht-heading-2-font-size: 1.25rem;
|
|
1299
|
-
--utrecht-heading-1-margin-block-start: 0.67rem;
|
|
1300
|
-
--utrecht-heading-1-margin-block-end: 0.67rem;
|
|
1301
|
-
--utrecht-heading-1-line-height: 1.4;
|
|
1302
|
-
--utrecht-heading-1-font-size: 1.5rem;
|
|
1303
|
-
--utrecht-form-label-font-size: 1em;
|
|
1304
|
-
--utrecht-focus-background-color: transparent;
|
|
1305
|
-
--utrecht-document-line-height: 1.4;
|
|
1306
|
-
--utrecht-button-focus-transform-scale: 1.02;
|
|
1307
|
-
--utrecht-button-border-radius: 0;
|
|
1308
|
-
--utrecht-button-margin-inline-end: 0;
|
|
1309
|
-
--utrecht-button-margin-inline-start: 0;
|
|
1310
|
-
--utrecht-button-border-width: 0;
|
|
1311
|
-
--utrecht-blockquote-content-font-size: 1.125rem;
|
|
1312
|
-
--utrecht-blockquote-attribution-font-size: 0.75rem;
|
|
1313
|
-
--utrecht-blockquote-margin-inline-block-end: 1.6em;
|
|
1314
|
-
--utrecht-blockquote-margin-inline-block-start: 1.6em;
|
|
1315
|
-
--utrecht-blockquote-margin-inline-end: 1.6em;
|
|
1316
|
-
--utrecht-blockquote-margin-inline-start: 1.6em;
|
|
1317
|
-
--utrecht-badge-border-radius: 0;
|
|
1318
|
-
/* Default corner radius for badge components */
|
|
1319
|
-
--utrecht-badge-status-text-transform: uppercase;
|
|
1320
|
-
--utrecht-badge-status-letter-spacing: 0.15ch;
|
|
1321
|
-
--utrecht-badge-data-text-transform: uppercase;
|
|
1322
|
-
--utrecht-badge-data-letter-spacing: 0.15ch;
|
|
1323
|
-
--utrecht-article-max-inline-size: 780px;
|
|
1324
|
-
--utrecht-topnav-list-border-color: var(--utrecht-color-grey-40);
|
|
1325
|
-
--utrecht-topnav-list-background-color: var(--utrecht-color-grey-15);
|
|
1326
|
-
--utrecht-topnav-link-background-color: var(--utrecht-color-blue-40);
|
|
1327
|
-
--utrecht-topnav-link-color: var(--utrecht-color-white);
|
|
1328
|
-
--utrecht-topnav-link-hover-background-color: var(--utrecht-color-black);
|
|
1329
|
-
--utrecht-topnav-link-focus-outline-color: var(--utrecht-color-black);
|
|
1330
|
-
--utrecht-topnav-link-focus-background-color: var(--utrecht-color-yellow-80);
|
|
1331
|
-
--utrecht-topnav-link-focus-box-shadow-color: var(--utrecht-color-yellow-80);
|
|
1332
|
-
--utrecht-topnav-link-focus-color: var(--utrecht-color-black);
|
|
1333
|
-
--utrecht-sidenav-item-marker-color: var(--utrecht-color-grey-80);
|
|
1334
|
-
--utrecht-sidenav-item-marker-hover-color: var(--utrecht-color-blue-50);
|
|
1335
|
-
--utrecht-sidenav-item-margin-inline-end: var(--utrecht-space-inline-3xs);
|
|
1336
|
-
--utrecht-sidenav-item-margin-inline-start: var(--utrecht-space-inline-3xs);
|
|
1337
|
-
--utrecht-sidenav-item-margin-block-end: var(--utrecht-space-block-xs);
|
|
1338
|
-
--utrecht-sidenav-item-margin-block-start: var(--utrecht-space-block-xs);
|
|
1339
|
-
--utrecht-sidenav-item-hover-color: var(--utrecht-color-blue-40);
|
|
1340
|
-
--utrecht-sidenav-link-color: var(--utrecht-color-blue-40);
|
|
1341
|
-
--utrecht-sidenav-link-hover-color: var(--utrecht-color-blue-40);
|
|
1342
|
-
--utrecht-menulijst-item-color: var(--utrecht-color-blue-35);
|
|
1343
|
-
--utrecht-menulijst-item-hover-color: var(--utrecht-color-blue-40);
|
|
1344
|
-
--utrecht-form-input-focus-border-color: var(--utrecht-color-grey-80);
|
|
1345
|
-
--utrecht-form-input-placeholder-color: var(--utrecht-color-grey-40);
|
|
1346
|
-
--utrecht-form-input-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
1347
|
-
--utrecht-form-input-border-color: var(--utrecht-color-grey-30);
|
|
1348
|
-
--utrecht-form-input-color: var(--utrecht-color-black);
|
|
1349
|
-
--utrecht-badge-counter-color: var(--utrecht-color-white);
|
|
1350
|
-
--utrecht-badge-counter-background-color: var(--utrecht-color-red-40);
|
|
1351
|
-
--utrecht-unordered-list-marker-color: var(--utrecht-color-red-40);
|
|
1352
|
-
--utrecht-textbox-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
1353
|
-
--utrecht-textbox-border-width: var(--utrecht-border-width-sm);
|
|
1354
|
-
--utrecht-textarea-padding-inline-start: var(--utrecht-textbox-padding-inline-start);
|
|
1355
|
-
--utrecht-textarea-padding-inline-end: var(--utrecht-textbox-padding-inline-end);
|
|
1356
|
-
--utrecht-textarea-padding-block-start: var(--utrecht-textbox-padding-block-start);
|
|
1357
|
-
--utrecht-textarea-padding-block-end: var(--utrecht-textbox-padding-block-end);
|
|
1358
|
-
--utrecht-textarea-max-width: var(--utrecht-textbox-max-width);
|
|
1359
|
-
--utrecht-textarea-border-radius: var(--utrecht-textbox-border-radius);
|
|
1360
|
-
--utrecht-textarea-border-bottom-width: var(--utrecht-textbox-border-bottom-width);
|
|
1361
|
-
--utrecht-table-header-border-block-end-width: var(--utrecht-border-width-md);
|
|
1362
|
-
--utrecht-table-header-border-block-end-color: var(--utrecht-color-red-40);
|
|
1363
|
-
--utrecht-table-header-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
1364
|
-
--utrecht-table-caption-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
1365
|
-
--utrecht-table-row-border-block-end-width: var(--utrecht-border-width-sm);
|
|
1366
|
-
--utrecht-table-row-border-block-end-color: var(--utrecht-color-grey-90);
|
|
1367
|
-
--utrecht-separator-color: var(--utrecht-color-grey-90);
|
|
1368
|
-
--utrecht-paragraph-lead-font-size: var(--utrecht-typography-scale-lg-font-size);
|
|
1369
|
-
--utrecht-paragraph-margin-block-start: var(--utrecht-space-row-md);
|
|
1370
|
-
--utrecht-paragraph-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1371
|
-
--utrecht-paragraph-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
1372
|
-
--utrecht-page-footer-background-image: linear-gradient(45deg, var(--utrecht-color-red-40), var(--utrecht-color-red-40) 50%, hsl(5 54% 59%) 50%);
|
|
1373
|
-
--utrecht-page-footer-background-color: var(--utrecht-color-red-40);
|
|
1374
|
-
--utrecht-page-footer-color: var(--utrecht-color-white);
|
|
1375
|
-
--utrecht-mapcontrolbutton-hover-color: var(--utrecht-color-white);
|
|
1376
|
-
--utrecht-mapcontrolbutton-hover-background-color: var(--utrecht-color-grey-90);
|
|
1377
|
-
--utrecht-mapcontrolbutton-focus-background-color: var(--utrecht-focus-background-color);
|
|
1378
|
-
--utrecht-mapcontrolbutton-border-style: var(--utrecht-border-style-solid);
|
|
1379
|
-
--utrecht-mapcontrolbutton-border-color: var(--utrecht-color-grey-40);
|
|
1380
|
-
--utrecht-mapcontrolbutton-height: var(--utrecht-space-block-2xl);
|
|
1381
|
-
--utrecht-mapcontrolbutton-width: var(--utrecht-space-block-2xl);
|
|
1382
|
-
--utrecht-mapcontrolbutton-color: var(--utrecht-color-grey-40);
|
|
1383
|
-
--utrecht-mapcontrolbutton-background-color: var(--utrecht-color-white);
|
|
1384
|
-
--utrecht-mapcontrolbutton-disabled-border-color: var(--utrecht-color-grey-80);
|
|
1385
|
-
--utrecht-mapcontrolbutton-disabled-background-color: var(--utrecht-color-grey-90);
|
|
1386
|
-
--utrecht-mapcontrolbutton-disabled-color: var(--utrecht-color-grey-80);
|
|
1387
|
-
--utrecht-mapcontrolbutton-padding-inline-end: var(--utrecht-space-inline-2xs);
|
|
1388
|
-
--utrecht-mapcontrolbutton-padding-inline-start: var(--utrecht-space-inline-2xs);
|
|
1389
|
-
--utrecht-mapcontrolbutton-padding-block-end: var(--utrecht-space-block-2xs);
|
|
1390
|
-
--utrecht-mapcontrolbutton-padding-block-start: var(--utrecht-space-block-2xs);
|
|
1391
|
-
--utrecht-mapcontrolbutton-margin-block-end: var(--utrecht-space-row-xs);
|
|
1392
|
-
--utrecht-mapcontrolbutton-margin-block-start: var(--utrecht-space-row-xs);
|
|
1393
|
-
--utrecht-mapcontrolbutton-border-width: var(--utrecht-border-width-sm);
|
|
1394
|
-
--utrecht-link-focus-color: var(--utrecht-color-blue-40);
|
|
1395
|
-
--utrecht-link-color: var(--utrecht-color-blue-30);
|
|
1396
|
-
--utrecht-heading-6-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1397
|
-
--utrecht-heading-5-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1398
|
-
--utrecht-heading-4-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1399
|
-
--utrecht-heading-3-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1400
|
-
--utrecht-heading-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
1401
|
-
--utrecht-form-label-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
1402
|
-
--utrecht-form-label-radio-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1403
|
-
--utrecht-form-label-checkbox-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
|
|
1404
|
-
--utrecht-form-field-margin-block-end: var(--utrecht-space-block-2xs);
|
|
1405
|
-
--utrecht-form-field-margin-block-start: var(--utrecht-space-block-2xs);
|
|
1406
|
-
--utrecht-focus-outline-width: var(--utrecht-border-width-md);
|
|
1407
|
-
--utrecht-focus-outline-style: var(--utrecht-border-style-dotted);
|
|
1408
|
-
--utrecht-focus-outline-color: var(--utrecht-color-black);
|
|
1409
|
-
--utrecht-focus-color: var(--utrecht-color-black);
|
|
1410
|
-
--utrecht-focus-box-shadow-spread-radius: var(--utrecht-border-width-md);
|
|
1411
|
-
--utrecht-focus-box-shadow-color: var(--utrecht-color-white);
|
|
1412
|
-
--utrecht-focus-border-style: var(--utrecht-border-style-dotted);
|
|
1413
|
-
--utrecht-focus-border-color: var(--utrecht-color-black);
|
|
1414
|
-
--utrecht-feedback-active-fill-color: var(--utrecht-color-white);
|
|
1415
|
-
--utrecht-feedback-inactive-fill-color: var(--utrecht-color-white);
|
|
1416
|
-
--utrecht-feedback-success-fill-color: var(--utrecht-color-white);
|
|
1417
|
-
--utrecht-feedback-error-fill-color: var(--utrecht-color-white);
|
|
1418
|
-
--utrecht-feedback-valid-fill-color: var(--utrecht-color-white);
|
|
1419
|
-
--utrecht-feedback-invalid-fill-color: var(--utrecht-color-white);
|
|
1420
|
-
--utrecht-feedback-safe-fill-color: var(--utrecht-color-white);
|
|
1421
|
-
--utrecht-feedback-safe-color: var(--utrecht-color-green-50);
|
|
1422
|
-
--utrecht-feedback-warning-fill-color: var(--utrecht-color-black);
|
|
1423
|
-
--utrecht-feedback-warning-color: var(--utrecht-color-yellow-50);
|
|
1424
|
-
--utrecht-feedback-danger-fill-color: var(--utrecht-color-white);
|
|
1425
|
-
--utrecht-feedback-danger-color: var(--utrecht-color-red-40);
|
|
1426
|
-
--utrecht-emphasis-strong-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
|
|
1427
|
-
--utrecht-document-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
1428
|
-
--utrecht-document-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
1429
|
-
--utrecht-document-color: var(--utrecht-color-black);
|
|
1430
|
-
--utrecht-document-background-color: var(--utrecht-color-white);
|
|
1431
|
-
--utrecht-button-focus-border-width: var(--utrecht-border-width-md);
|
|
1432
|
-
--utrecht-button-focus-border-color: var(--utrecht-color-blue-40);
|
|
1433
|
-
--utrecht-button-secondary-action-border-width: var(--utrecht-border-width-md);
|
|
1434
|
-
--utrecht-button-secondary-action-border-color: var(--utrecht-color-blue-35);
|
|
1435
|
-
--utrecht-button-secondary-action-color: var(--utrecht-color-blue-35);
|
|
1436
|
-
--utrecht-button-secondary-action-background-color: var(--utrecht-color-white);
|
|
1437
|
-
--utrecht-button-secondary-action-disabled-border-color: var(--utrecht-color-grey-80);
|
|
1438
|
-
--utrecht-button-secondary-action-disabled-color: var(--utrecht-color-grey-80);
|
|
1439
|
-
--utrecht-button-secondary-action-disabled-background-color: var(--utrecht-color-white);
|
|
1440
|
-
--utrecht-button-secondary-action-hover-border-color: var(--utrecht-color-blue-40);
|
|
1441
|
-
--utrecht-button-secondary-action-hover-color: var(--utrecht-color-blue-35);
|
|
1442
|
-
--utrecht-button-secondary-action-hover-background-color: var(--utrecht-color-white);
|
|
1443
|
-
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
1444
|
-
--utrecht-button-primary-action-hover-color: var(--utrecht-color-white);
|
|
1445
|
-
--utrecht-button-primary-action-hover-background-color: var(--utrecht-color-blue-40);
|
|
1446
|
-
--utrecht-button-primary-action-color: var(--utrecht-color-white);
|
|
1447
|
-
--utrecht-button-primary-action-background-color: var(--utrecht-color-blue-35);
|
|
1448
|
-
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
1449
|
-
--utrecht-button-disabled-color: var(--utrecht-color-white);
|
|
1450
|
-
--utrecht-button-padding-inline-end: var(--utrecht-space-inline-md);
|
|
1451
|
-
--utrecht-button-padding-inline-start: var(--utrecht-space-inline-md);
|
|
1452
|
-
--utrecht-button-padding-block-end: var(--utrecht-space-block-sm);
|
|
1453
|
-
--utrecht-button-padding-block-start: var(--utrecht-space-block-sm);
|
|
1454
|
-
--utrecht-button-margin-block-end: var(--utrecht-space-row-xs);
|
|
1455
|
-
--utrecht-button-margin-block-start: var(--utrecht-space-row-xs);
|
|
1456
|
-
--utrecht-button-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
1457
|
-
--utrecht-blockquote-content-color: var(--utrecht-color-red-40);
|
|
1458
|
-
--utrecht-badge-padding-inline: var(--utrecht-space-inline-sm);
|
|
1459
|
-
/* Default inline padding color for badge components */
|
|
1460
|
-
--utrecht-badge-padding-block: var(--utrecht-space-block-xs);
|
|
1461
|
-
/* Default block padding for badge components */
|
|
1462
|
-
--utrecht-badge-color: var(--utrecht-color-white);
|
|
1463
|
-
/* Default text color for badge components */
|
|
1464
|
-
--utrecht-badge-background-color: var(--utrecht-color-grey-30);
|
|
1465
|
-
/* Default background color for badge components */
|
|
1466
|
-
--utrecht-textbox-font-family: var(--utrecht-document-font-family);
|
|
1467
|
-
--utrecht-textbox-color: var(--utrecht-form-input-color);
|
|
1468
|
-
--utrecht-textbox-border-color: var(--utrecht-form-input-border-color);
|
|
1469
|
-
--utrecht-textarea-font-size: var(--utrecht-textbox-font-size);
|
|
1470
|
-
--utrecht-textarea-border-width: var(--utrecht-textbox-border-width);
|
|
1471
|
-
--utrecht-mapcontrolbutton-focus-border-color: var(--utrecht-focus-border-color);
|
|
1472
|
-
--utrecht-mapcontrolbutton-focus-outline-color: var(--utrecht-focus-outline-color);
|
|
1473
|
-
--utrecht-mapcontrolbutton-focus-border-style: var(--utrecht-focus-border-style);
|
|
1474
|
-
--utrecht-mapcontrolbutton-focus-box-shadow-color: var(--utrecht-focus-box-shadow-color);
|
|
1475
|
-
--utrecht-mapcontrolbutton-focus-color: var(--utrecht-focus-color);
|
|
1476
|
-
--utrecht-link-visited-color: var(--utrecht-link-color);
|
|
1477
|
-
--utrecht-link-hover-color: var(--utrecht-link-focus-color);
|
|
1478
|
-
--utrecht-link-active-color: var(--utrecht-link-color);
|
|
1479
|
-
--utrecht-feedback-active-color: var(--utrecht-feedback-safe-color);
|
|
1480
|
-
--utrecht-feedback-inactive-color: var(--utrecht-feedback-danger-color);
|
|
1481
|
-
--utrecht-feedback-success-color: var(--utrecht-feedback-safe-color);
|
|
1482
|
-
--utrecht-feedback-error-color: var(--utrecht-feedback-danger-color);
|
|
1483
|
-
--utrecht-feedback-valid-color: var(--utrecht-feedback-safe-color);
|
|
1484
|
-
--utrecht-feedback-invalid-color: var(--utrecht-feedback-danger-color);
|
|
1485
|
-
--utrecht-feedback-safe-border-color: var(--utrecht-feedback-safe-color);
|
|
1486
|
-
--utrecht-feedback-safe-background-color: var(--utrecht-feedback-safe-color);
|
|
1487
|
-
--utrecht-feedback-warning-border-color: var(--utrecht-feedback-warning-color);
|
|
1488
|
-
--utrecht-feedback-warning-background-color: var(--utrecht-feedback-warning-color);
|
|
1489
|
-
--utrecht-feedback-danger-border-color: var(--utrecht-feedback-danger-color);
|
|
1490
|
-
--utrecht-feedback-danger-background-color: var(--utrecht-feedback-danger-color);
|
|
1491
|
-
--utrecht-textarea-font-family: var(--utrecht-textbox-font-family);
|
|
1492
|
-
--utrecht-textarea-color: var(--utrecht-textbox-color);
|
|
1493
|
-
--utrecht-textarea-border-color: var(--utrecht-textbox-border-color);
|
|
1494
|
-
--utrecht-feedback-active-border-color: var(--utrecht-feedback-safe-border-color);
|
|
1495
|
-
--utrecht-feedback-active-background-color: var(--utrecht-feedback-safe-background-color);
|
|
1496
|
-
--utrecht-feedback-inactive-border-color: var(--utrecht-feedback-danger-border-color);
|
|
1497
|
-
--utrecht-feedback-inactive-background-color: var(--utrecht-feedback-danger-background-color);
|
|
1498
|
-
--utrecht-feedback-success-border-color: var(--utrecht-feedback-safe-border-color);
|
|
1499
|
-
--utrecht-feedback-success-background-color: var(--utrecht-feedback-safe-background-color);
|
|
1500
|
-
--utrecht-feedback-error-border-color: var(--utrecht-feedback-danger-border-color);
|
|
1501
|
-
--utrecht-feedback-error-background-color: var(--utrecht-feedback-danger-background-color);
|
|
1502
|
-
--utrecht-feedback-valid-border-color: var(--utrecht-feedback-safe-border-color);
|
|
1503
|
-
--utrecht-feedback-valid-background-color: var(--utrecht-feedback-safe-background-color);
|
|
1504
|
-
--utrecht-feedback-invalid-border-color: var(--utrecht-feedback-danger-border-color);
|
|
1505
|
-
--utrecht-feedback-invalid-background-color: var(--utrecht-feedback-danger-background-color);
|
|
1506
|
-
--utrecht-feedback-safe-fill-background-color: var(--utrecht-feedback-safe-background-color);
|
|
1507
|
-
--utrecht-feedback-warning-fill-background-color: var(--utrecht-feedback-warning-background-color);
|
|
1508
|
-
--utrecht-feedback-danger-fill-background-color: var(--utrecht-feedback-danger-background-color);
|
|
1509
|
-
--utrecht-textbox-invalid-border-color: var(--utrecht-feedback-invalid-border-color);
|
|
1510
|
-
--utrecht-textarea-invalid-border-color: var(--utrecht-feedback-invalid-border-color);
|
|
1511
|
-
--utrecht-feedback-active-fill-background-color: var(--utrecht-feedback-active-background-color);
|
|
1512
|
-
--utrecht-feedback-inactive-fill-background-color: var(--utrecht-feedback-inactive-background-color);
|
|
1513
|
-
--utrecht-feedback-success-fill-background-color: var(--utrecht-feedback-success-background-color);
|
|
1514
|
-
--utrecht-feedback-error-fill-background-color: var(--utrecht-feedback-error-background-color);
|
|
1515
|
-
--utrecht-feedback-valid-fill-background-color: var(--utrecht-feedback-valid-background-color);
|
|
1516
|
-
--utrecht-feedback-invalid-fill-background-color: var(--utrecht-feedback-invalid-background-color);
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
.utrecht-page-footer {
|
|
1520
|
-
--utrecht-heading-2-font-size: 1em;
|
|
1521
|
-
--utrecht-heading-2-text-transform: uppercase;
|
|
1522
|
-
--utrecht-heading-3-font-size: 1.125em;
|
|
1523
|
-
--utrecht-heading-3-font-weight: normal;
|
|
1524
|
-
}
|
|
1525
|
-
|
|
1526
3531
|
/**
|
|
1527
|
-
* @license
|
|
3532
|
+
* @license EUPL-1.2
|
|
3533
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
1528
3534
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
1529
|
-
* All rights reserved
|
|
1530
3535
|
*/
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
:root {
|
|
1534
|
-
--utrecht-heading-1-font-size: 28px;
|
|
1535
|
-
/* 28px on tablet min-width-35e */
|
|
1536
|
-
--utrecht-paragraph-lead-font-size: 1.25em;
|
|
1537
|
-
/* 20px on tablet min-width-35e */
|
|
1538
|
-
}
|
|
1539
|
-
}
|
|
1540
|
-
@media (min-width: 60em) {
|
|
1541
|
-
:root {
|
|
1542
|
-
--utrecht-heading-1-font-size: 32px;
|
|
1543
|
-
/* 32px on desktop min-width-60em */
|
|
1544
|
-
--utrecht-paragraph-lead-font-size: 1.25em;
|
|
1545
|
-
/* 20px on desktop min-width-60em */
|
|
1546
|
-
}
|
|
3536
|
+
.utrecht-url {
|
|
3537
|
+
font-variant-ligatures: none;
|
|
1547
3538
|
}
|