@civicactions/cmsds-open-data-components 3.6.0-rc.2 → 3.6.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.css +567 -575
- package/dist/main.css.map +1 -1
- package/dist/main.js +180 -200
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +64 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -1,3 +1,104 @@
|
|
|
1
|
+
.dkan-c-cms-topnav--tagline {
|
|
2
|
+
color: var(--tag-line--color);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.dkan-c-header--mobile .dkan-c-cms-topnav--tagline {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.dkan-c-header--desktop .dkan-c-cms-topnav--tagline {
|
|
10
|
+
border-left: 1px solid var(--tag-line--border-color);
|
|
11
|
+
align-items: center;
|
|
12
|
+
display: inline-flex;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:root {
|
|
16
|
+
--header-nav-icon-link--desktop-width: 240px;
|
|
17
|
+
--header-nav-icon-link--mobile-width: 90px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.dkan-c-header-nav-icon-link {
|
|
21
|
+
border-right: none;
|
|
22
|
+
align-items: center;
|
|
23
|
+
display: inline-flex;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dkan-c-header-nav-icon-link a {
|
|
27
|
+
border-bottom: none;
|
|
28
|
+
text-decoration: none;
|
|
29
|
+
display: inline-block;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.dkan-c-header-nav-icon-link a:focus, .dkan-c-header-nav-icon-link a:hover {
|
|
33
|
+
background-color: #0000;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.dkan-c-header-nav-icon-link.show-back-arrow a:before {
|
|
37
|
+
content: "";
|
|
38
|
+
color: #323a45;
|
|
39
|
+
text-align: center;
|
|
40
|
+
vertical-align: middle;
|
|
41
|
+
width: 18px;
|
|
42
|
+
height: 18px;
|
|
43
|
+
margin-left: 10px;
|
|
44
|
+
padding-right: 10px;
|
|
45
|
+
font-family: "Font Awesome 6 Pro";
|
|
46
|
+
font-size: 18px;
|
|
47
|
+
font-weight: lighter;
|
|
48
|
+
line-height: 18px;
|
|
49
|
+
display: inline-block;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.dkan-c-header-nav-icon-link img {
|
|
53
|
+
vertical-align: middle;
|
|
54
|
+
height: auto;
|
|
55
|
+
display: inline-block;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.dkan-c-header--mobile .dkan-c-header-nav-icon-link img {
|
|
59
|
+
width: var(--header-nav-icon-link--mobile-width);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.dkan-c-header--desktop .dkan-c-header-nav-icon-link img {
|
|
63
|
+
width: var(--header-nav-icon-link--desktop-width);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.dkan-c-cms-topnav {
|
|
67
|
+
height: 51px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.dkan-c-cms-topnav > div {
|
|
71
|
+
height: 100%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.dkan-c-cms-topnav .dkan-c-cms-topnav-menu a {
|
|
75
|
+
margin: 3px 7px;
|
|
76
|
+
display: inline-block;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.dkan-c-cms-topnav--menu ul {
|
|
80
|
+
margin: 0;
|
|
81
|
+
padding: 0;
|
|
82
|
+
list-style: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.dkan-c-cms-topnav .dkan-c-cms-topnav--tagline {
|
|
86
|
+
height: 100%;
|
|
87
|
+
margin-left: 16px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@media screen and (width <= 544px) {
|
|
91
|
+
.dkan-c-cms-topnav {
|
|
92
|
+
display: none;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@media screen and (width >= 1024px) {
|
|
97
|
+
.dkan-c-cms-topnav {
|
|
98
|
+
height: 85px;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
1
102
|
.dkan-c-site-menu--sub-menu {
|
|
2
103
|
list-style: none;
|
|
3
104
|
display: none;
|
|
@@ -41,122 +142,379 @@
|
|
|
41
142
|
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
42
143
|
}
|
|
43
144
|
|
|
44
|
-
.dkan-c-
|
|
45
|
-
|
|
46
|
-
margin: 0;
|
|
47
|
-
padding: 0;
|
|
48
|
-
list-style: none;
|
|
145
|
+
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button span {
|
|
146
|
+
border-bottom: 2px solid #0000;
|
|
49
147
|
}
|
|
50
148
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
--su-color--brown: #884c00;
|
|
54
|
-
--su-color--green-dark: #007641;
|
|
55
|
-
--su-color--green-muted: #277564;
|
|
56
|
-
--su-color--orange-dark: #d10000;
|
|
57
|
-
--su-color--orange-light: #d100001a;
|
|
58
|
-
--su-color--red-dark: #970000;
|
|
59
|
-
--su-color--red-light: #d300001a;
|
|
60
|
-
--su-color--red: #d30000;
|
|
149
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--mobile {
|
|
150
|
+
display: none;
|
|
61
151
|
}
|
|
62
152
|
|
|
63
|
-
.
|
|
64
|
-
color:
|
|
153
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button {
|
|
154
|
+
color: var(--header-nav-link--mobile-color);
|
|
155
|
+
text-decoration: none;
|
|
65
156
|
}
|
|
66
157
|
|
|
67
|
-
.
|
|
68
|
-
|
|
69
|
-
border-color: var(--su-color--red);
|
|
158
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus {
|
|
159
|
+
color: var(--header-nav-link--mobile-color);
|
|
70
160
|
}
|
|
71
161
|
|
|
72
|
-
.
|
|
73
|
-
color:
|
|
74
|
-
background-color: var(--su-color--red-dark);
|
|
162
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover span, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus span {
|
|
163
|
+
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
75
164
|
}
|
|
76
165
|
|
|
77
|
-
.
|
|
78
|
-
|
|
79
|
-
|
|
166
|
+
.dkan-c-header-search--modal-button:before {
|
|
167
|
+
content: "";
|
|
168
|
+
text-align: center;
|
|
169
|
+
vertical-align: middle;
|
|
170
|
+
box-sizing: content-box;
|
|
171
|
+
width: 18px;
|
|
172
|
+
height: 18px;
|
|
173
|
+
margin-left: 10px;
|
|
174
|
+
padding-right: 10px;
|
|
175
|
+
font-family: "Font Awesome 6 Pro";
|
|
176
|
+
font-size: 18px;
|
|
177
|
+
font-weight: lighter;
|
|
178
|
+
line-height: 18px;
|
|
179
|
+
display: inline-block;
|
|
80
180
|
}
|
|
81
181
|
|
|
82
|
-
.
|
|
83
|
-
color: var(--
|
|
182
|
+
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button {
|
|
183
|
+
color: var(--header-nav-search--color);
|
|
184
|
+
text-decoration: none;
|
|
84
185
|
}
|
|
85
186
|
|
|
86
|
-
.
|
|
87
|
-
|
|
88
|
-
color: var(--su-color--red);
|
|
187
|
+
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button:focus, .dkan-c-main-navigation--search .dkan-c-header-search--modal-button:hover {
|
|
188
|
+
color: var(--header-nav-search--color);
|
|
89
189
|
}
|
|
90
190
|
|
|
91
|
-
.
|
|
92
|
-
border-color: var(--
|
|
93
|
-
background-color: var(--su-color--green-muted);
|
|
191
|
+
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button:focus span, .dkan-c-main-navigation--search .dkan-c-header-search--modal-button:hover span {
|
|
192
|
+
border-bottom-color: var(--header-nav-search--color);
|
|
94
193
|
}
|
|
95
194
|
|
|
96
|
-
.
|
|
97
|
-
|
|
195
|
+
.dkan-c-header--desktop .dkan-c-main-navigation--search {
|
|
196
|
+
border-left: 2px solid var(--header-nav-search--color);
|
|
98
197
|
}
|
|
99
198
|
|
|
100
|
-
.
|
|
101
|
-
|
|
199
|
+
.dkan-c-header--desktop .dkan-c-nav-menu--desktop .dkan-c-main-navigation--search {
|
|
200
|
+
display: none;
|
|
102
201
|
}
|
|
103
202
|
|
|
104
|
-
.
|
|
105
|
-
|
|
203
|
+
.dkan-c-header--link-list {
|
|
204
|
+
list-style: none;
|
|
106
205
|
}
|
|
107
206
|
|
|
108
|
-
.
|
|
109
|
-
|
|
207
|
+
.dkan-c-header--wrapper {
|
|
208
|
+
flex-wrap: nowrap !important;
|
|
110
209
|
}
|
|
111
210
|
|
|
112
|
-
.
|
|
113
|
-
|
|
114
|
-
white-space: normal;
|
|
115
|
-
max-width: 100%;
|
|
116
|
-
top: 1.5em;
|
|
211
|
+
.dkan-c-header--link-list .dkan-c-header--link span, .dkan-c-header--link-list .dkan-c-header--link + ul a span {
|
|
212
|
+
border-bottom: 2px solid #0000;
|
|
117
213
|
}
|
|
118
214
|
|
|
119
|
-
.
|
|
120
|
-
|
|
215
|
+
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a {
|
|
216
|
+
color: var(--header-nav-link--mobile-color);
|
|
217
|
+
text-decoration: none;
|
|
121
218
|
}
|
|
122
219
|
|
|
123
|
-
.
|
|
124
|
-
|
|
220
|
+
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:hover, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:focus, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:hover, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:focus {
|
|
221
|
+
color: var(--header-nav-link--mobile-color);
|
|
125
222
|
}
|
|
126
223
|
|
|
127
|
-
.
|
|
128
|
-
|
|
224
|
+
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:hover span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:focus span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:hover span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:focus span {
|
|
225
|
+
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
129
226
|
}
|
|
130
227
|
|
|
131
|
-
.
|
|
132
|
-
|
|
228
|
+
.dkan-c-header--mobile .dkan-c-nav-menu ul {
|
|
229
|
+
padding-inline-start: 0;
|
|
133
230
|
}
|
|
134
231
|
|
|
135
|
-
.
|
|
136
|
-
|
|
232
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--close {
|
|
233
|
+
display: none;
|
|
137
234
|
}
|
|
138
235
|
|
|
139
|
-
.
|
|
140
|
-
|
|
141
|
-
|
|
236
|
+
.dkan-c-header--mobile .dkan-c-nav-menu--open {
|
|
237
|
+
background-color: var(--header-mobile-bg-color);
|
|
238
|
+
z-index: 500;
|
|
239
|
+
transition-property: left;
|
|
240
|
+
transition-duration: var(--mobile-nav-animation-time);
|
|
241
|
+
flex: none;
|
|
242
|
+
width: 100%;
|
|
243
|
+
max-width: 100%;
|
|
244
|
+
height: 100%;
|
|
245
|
+
padding: 50px 0;
|
|
246
|
+
display: block;
|
|
247
|
+
position: fixed;
|
|
248
|
+
top: 0;
|
|
249
|
+
bottom: 0;
|
|
250
|
+
left: 0;
|
|
142
251
|
}
|
|
143
252
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
253
|
+
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav {
|
|
254
|
+
display: inherit;
|
|
255
|
+
padding-top: 8px;
|
|
148
256
|
}
|
|
149
257
|
|
|
150
|
-
.
|
|
151
|
-
|
|
258
|
+
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav:before {
|
|
259
|
+
background: var(--color-primary-light);
|
|
260
|
+
content: "";
|
|
261
|
+
width: 48px;
|
|
262
|
+
height: 2px;
|
|
263
|
+
margin-left: 24px;
|
|
264
|
+
display: block;
|
|
265
|
+
position: absolute;
|
|
152
266
|
}
|
|
153
267
|
|
|
154
|
-
.
|
|
155
|
-
|
|
268
|
+
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav ul {
|
|
269
|
+
padding-top: 16px;
|
|
156
270
|
}
|
|
157
271
|
|
|
158
|
-
.
|
|
159
|
-
|
|
272
|
+
.dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link, .dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link + ul a {
|
|
273
|
+
color: var(--header-nav-link--color);
|
|
274
|
+
padding: var(--space, 8px 8px);
|
|
275
|
+
text-decoration: none;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link:hover span, .dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link + ul a:hover span {
|
|
279
|
+
border-bottom-color: var(--header-nav-link--color);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.dkan-c-header--desktop .dkan-c-header--link-list {
|
|
283
|
+
margin-block: 0;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.dkan-c-header--desktop .dkan-c-main-nav {
|
|
287
|
+
flex-direction: row;
|
|
288
|
+
justify-content: end;
|
|
289
|
+
display: flex;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.dkan-c-header--desktop .dkan-c-nav-menu--mobile-close-button {
|
|
293
|
+
display: none;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.dkan-c-header--desktop .dkan-c-header--link-list {
|
|
297
|
+
flex-direction: row;
|
|
298
|
+
display: flex;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.dkan-c-header--desktop .dkan-c-nav-menu .dkan-c-top-nav {
|
|
302
|
+
display: none;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
:root {
|
|
306
|
+
--mobile-menu-button--color: var(--color-white);
|
|
307
|
+
--mobile-menu-button--hover-color: var(--color-white);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.dkan-c-header--desktop .dkan-c-mobile-menu-button {
|
|
311
|
+
display: none;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.dkan-c-header--mobile .dkan-c-mobile-menu-button {
|
|
315
|
+
display: inherit;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
button.dkan-c-mobile-menu-button {
|
|
319
|
+
color: var(--mobile-menu-button--color);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
button.dkan-c-mobile-menu-button:before {
|
|
323
|
+
color: var(--mobile-menu-button--color);
|
|
324
|
+
text-align: center;
|
|
325
|
+
vertical-align: middle;
|
|
326
|
+
box-sizing: content-box;
|
|
327
|
+
width: 18px;
|
|
328
|
+
height: 18px;
|
|
329
|
+
margin-left: 10px;
|
|
330
|
+
padding-right: 10px;
|
|
331
|
+
font-family: "Font Awesome 6 Pro";
|
|
332
|
+
font-size: 18px;
|
|
333
|
+
font-weight: lighter;
|
|
334
|
+
line-height: 18px;
|
|
335
|
+
display: inline-block;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
button.dkan-c-mobile-menu-button:hover, button.dkan-c-mobile-menu-button:hover:before {
|
|
339
|
+
color: var(--mobile-menu-button--hover-color);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
button.dkan-c-mobile-menu-button--open:before {
|
|
343
|
+
content: "";
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.dkan-c-cms-topnav-menu ul {
|
|
347
|
+
justify-content: end;
|
|
348
|
+
margin: 0;
|
|
349
|
+
padding: 0;
|
|
350
|
+
list-style: none;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
354
|
+
border-radius: 4px;
|
|
355
|
+
border-top: 8px solid var(--color-secondary) !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.dkan-c-sidebar-nav ul {
|
|
359
|
+
margin: 0;
|
|
360
|
+
padding: 0;
|
|
361
|
+
list-style: none;
|
|
362
|
+
display: block;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.dkan-c-sidebar-nav-link, .dkan-c-sidebar-nav-link:visited {
|
|
366
|
+
color: var(--color-base);
|
|
367
|
+
text-decoration: none;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.dkan-c-sidebar-nav-link:hover, .dkan-c-sidebar-nav-link:visited:hover {
|
|
371
|
+
text-decoration: underline;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.dkan-c-sidebar-nav-link-status {
|
|
375
|
+
border: 2px solid var(--color-gray-lighter);
|
|
376
|
+
border-radius: 2px;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.active .dkan-c-sidebar-nav-link-status {
|
|
380
|
+
border: 2px solid var(--color-primary-darker);
|
|
381
|
+
border-radius: 2px;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.dkan-c-sidebar-nav--mobile {
|
|
385
|
+
margin-bottom: 32px;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav-menu--open {
|
|
389
|
+
display: inherit;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav-menu--close {
|
|
393
|
+
display: none;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav--mobile-header {
|
|
397
|
+
margin-top: -32px;
|
|
398
|
+
display: flex;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.dkan-c-sidebar-nav--desktop .dkan-c-sidebar-nav--mobile-header {
|
|
402
|
+
display: none;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.dkan-c-sidebar-nav--mobile {
|
|
406
|
+
display: inherit;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
:root {
|
|
410
|
+
--su-color--blue-dark: #036;
|
|
411
|
+
--su-color--brown: #884c00;
|
|
412
|
+
--su-color--green-dark: #007641;
|
|
413
|
+
--su-color--green-muted: #277564;
|
|
414
|
+
--su-color--orange-dark: #d10000;
|
|
415
|
+
--su-color--orange-light: #d100001a;
|
|
416
|
+
--su-color--red-dark: #970000;
|
|
417
|
+
--su-color--red-light: #d300001a;
|
|
418
|
+
--su-color--red: #d30000;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.swagger-ui.swagger-ui .opblock .opblock-summary-method {
|
|
422
|
+
color: #333;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete {
|
|
426
|
+
background-color: var(--su-color--red-light);
|
|
427
|
+
border-color: var(--su-color--red);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
|
431
|
+
color: #fff;
|
|
432
|
+
background-color: var(--su-color--red-dark);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.swagger-ui.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
|
436
|
+
background-color: var(--su-color--brown);
|
|
437
|
+
color: #fff;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.swagger-ui.swagger-ui .parameter__name.required span, .swagger-ui.swagger-ui .parameter__name.required:after {
|
|
441
|
+
color: var(--su-color--red);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.swagger-ui.swagger-ui .btn.cancel {
|
|
445
|
+
border-color: var(--su-color--red);
|
|
446
|
+
color: var(--su-color--red);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.swagger-ui.swagger-ui .btn.authorize {
|
|
450
|
+
border-color: var(--su-color--green-muted);
|
|
451
|
+
background-color: var(--su-color--green-muted);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.swagger-ui.swagger-ui .btn.execute {
|
|
455
|
+
background-color: var(--su-color--blue-dark);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.swagger-ui.swagger-ui .info .title small {
|
|
459
|
+
background-color: #666;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.swagger-ui.swagger-ui .info .title small.version-stamp {
|
|
463
|
+
background-color: #005830;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.swagger-ui.swagger-ui .info a {
|
|
467
|
+
color: #036;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.swagger-ui.swagger-ui .model-hint {
|
|
471
|
+
word-wrap: break-word;
|
|
472
|
+
white-space: normal;
|
|
473
|
+
max-width: 100%;
|
|
474
|
+
top: 1.5em;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.swagger-ui.swagger-ui section.models .model-container {
|
|
478
|
+
overflow-x: auto;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.swagger-ui.swagger-ui table {
|
|
482
|
+
min-width: 500px;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.swagger-ui.swagger-ui table.model tbody tr td:first-of-type {
|
|
486
|
+
min-width: 174px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.swagger-ui.swagger-ui .table-container, .swagger-ui.swagger-ui .responses-inner {
|
|
490
|
+
overflow: scroll;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.swagger-ui h2, .swagger-ui h3, .swagger-ui h4 {
|
|
494
|
+
font-weight: bold !important;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.swagger-ui div.wrapper {
|
|
498
|
+
padding-left: 0;
|
|
499
|
+
padding-right: 0;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
@media (width <= 544px) {
|
|
503
|
+
.swagger-ui .opblock-tag-section .opblock-tag small {
|
|
504
|
+
flex: initial;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.dc-c-search-list-item, .dc-c-search-list-item li {
|
|
509
|
+
list-style: none;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.dc-c-search-list-item li a, .dc-c-search-list-item li button {
|
|
513
|
+
text-decoration: underline !important;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.dc-c-search-list-item svg {
|
|
517
|
+
margin-right: 8px;
|
|
160
518
|
}
|
|
161
519
|
|
|
162
520
|
.dc-c-search-list-item span > span > button {
|
|
@@ -599,528 +957,168 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
599
957
|
height: 18px;
|
|
600
958
|
padding-right: 10px;
|
|
601
959
|
font-family: "Font Awesome 6 Pro";
|
|
602
|
-
font-size: 18px;
|
|
603
|
-
font-weight: lighter;
|
|
604
|
-
line-height: 18px;
|
|
605
|
-
display: inline-block;
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
.dc-c-mobile-header--menu {
|
|
609
|
-
background-color: var(--color-gray-dark);
|
|
610
|
-
z-index: 500;
|
|
611
|
-
visibility: hidden;
|
|
612
|
-
width: 100%;
|
|
613
|
-
height: 100%;
|
|
614
|
-
padding: 50px 0;
|
|
615
|
-
transition: left .7s;
|
|
616
|
-
position: fixed;
|
|
617
|
-
top: 0;
|
|
618
|
-
bottom: 0;
|
|
619
|
-
left: -100%;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.dc-c-cmsheader {
|
|
623
|
-
background: var(--color-white);
|
|
624
|
-
position: relative;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
.dc-c-cms-mobile-header-menu:before {
|
|
628
|
-
background: var(--color-primary-light);
|
|
629
|
-
content: "";
|
|
630
|
-
width: 48px;
|
|
631
|
-
height: 2px;
|
|
632
|
-
margin-bottom: 16px;
|
|
633
|
-
margin-left: 8px;
|
|
634
|
-
display: block;
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
.dc-c-cms-mobile-header-menu ul {
|
|
638
|
-
margin: 0;
|
|
639
|
-
padding: 0;
|
|
640
|
-
list-style: none;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
.dc-c-cms-mobile-header-menu a, .dc-c-cms-mobile-header-menu a:hover, .dc-c-cms-mobile-header-menu a:focus, .dc-c-cms-mobile-header-menu a:visited {
|
|
644
|
-
color: var(--color-white);
|
|
645
|
-
background-color: #0000;
|
|
646
|
-
border-bottom: 2px solid #0000;
|
|
647
|
-
text-decoration: none;
|
|
648
|
-
display: inline-block;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.dc-c-cms-mobile-header-menu a:hover, .dc-c-cms-mobile-header-menu a:active {
|
|
652
|
-
border-bottom: 2px solid var(--color-primary-light);
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.dc-c-header--mobile-links button {
|
|
656
|
-
padding: 0;
|
|
657
|
-
font-weight: 700;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.dc-c-header--mobile-links a {
|
|
661
|
-
display: block;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.dc-c-mobile-header.menu-open .dc-c-cmsheader {
|
|
665
|
-
z-index: 501;
|
|
666
|
-
background-color: #0000;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.dc-c-mobile-header.menu-open .dc-c-cmsheader-menu a, .dc-c-mobile-header.menu-open button, .dc-c-mobile-header.menu-open .cms-link-container a:before {
|
|
670
|
-
color: var(--color-white);
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.dc-c-mobile-header.menu-open .dc-c-mobile-header--menu {
|
|
674
|
-
visibility: visible;
|
|
675
|
-
left: 0;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.cms-text-container {
|
|
679
|
-
color: #6f757c;
|
|
680
|
-
padding-top: 28px;
|
|
681
|
-
display: block;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.dc-c-cmsheader-menu {
|
|
685
|
-
margin: 0;
|
|
686
|
-
padding: 0;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.dc-c-cmsheader-menu li {
|
|
690
|
-
list-style: none;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.dc-c-cmsheader-menu a {
|
|
694
|
-
color: #323a45;
|
|
695
|
-
border-bottom: 1px solid #fff3;
|
|
696
|
-
margin: 3px 7px;
|
|
697
|
-
padding: 0;
|
|
698
|
-
text-decoration: none;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.dc-c-cmsheader-menu a:hover, .dc-c-cmsheader-menu a:active {
|
|
702
|
-
border-bottom: 2px solid #323a45;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
@media (width >= 544px) {
|
|
706
|
-
.dc-c-main-navigation--search, .dc-c-mobile-menu--search {
|
|
707
|
-
border-left: 1px solid var(--color-white);
|
|
708
|
-
}
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
nav.dc-c-site-menu .dc-c-header--links {
|
|
712
|
-
margin: 0;
|
|
713
|
-
padding: 0;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
nav.dc-c-site-menu .dc-c-header--links li {
|
|
717
|
-
height: 100%;
|
|
718
|
-
list-style: none;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
nav.dc-c-site-menu .dc-c-header--links button {
|
|
722
|
-
border: none;
|
|
723
|
-
font-size: 16px;
|
|
724
|
-
text-decoration: none;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
nav.dc-c-site-menu .dc-c-header--links button span {
|
|
728
|
-
border-bottom: 2px solid #0000;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
nav.dc-c-site-menu .dc-c-header--links a {
|
|
732
|
-
padding: var(--space, 8px 24px);
|
|
733
|
-
text-decoration: none;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
nav.dc-c-site-menu .dc-c-header--links a span {
|
|
737
|
-
border-bottom: 2px solid #0000;
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
nav.dc-c-site-menu .dc-c-header--links > li:hover > button span, nav.dc-c-site-menu .dc-c-header--links > li button:focus span, nav.dc-c-site-menu .dc-c-header--links > li button:hover span, nav.dc-c-site-menu .dc-c-header--links > li:hover > a span, nav.dc-c-site-menu .dc-c-header--links > li:focus > a span, nav.dc-c-site-menu .dc-c-header--links > li a:hover span, nav.dc-c-site-menu .dc-c-header--links > li a:focus span {
|
|
741
|
-
border-bottom: 2px solid var(--color-primary-light);
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
nav.dc-c-site-menu .dc-c-header--links a:focus, .dc-c-site-title a:focus {
|
|
745
|
-
box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
|
|
746
|
-
outline-offset: 3px;
|
|
747
|
-
border-radius: var(--button__border-radius);
|
|
748
|
-
background-color: #0000;
|
|
749
|
-
outline: 3px solid #0000;
|
|
750
|
-
text-decoration: none;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.dc-c-site-title a {
|
|
754
|
-
text-decoration: none;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
.dc-c-mobile-menu--search {
|
|
758
|
-
display: inherit;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.dc-c-search-modal--button:before {
|
|
762
|
-
content: "";
|
|
763
|
-
color: var(--color-white);
|
|
764
|
-
text-align: center;
|
|
765
|
-
vertical-align: middle;
|
|
766
|
-
box-sizing: content-box;
|
|
767
|
-
width: 18px;
|
|
768
|
-
height: 18px;
|
|
769
|
-
margin-left: 10px;
|
|
770
|
-
padding-right: 10px;
|
|
771
|
-
font-family: "Font Awesome 6 Pro";
|
|
772
|
-
font-size: 18px;
|
|
773
|
-
font-weight: lighter;
|
|
774
|
-
line-height: 18px;
|
|
775
|
-
display: inline-block;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
nav.dc-c-site-menu .dc-c-header--links a.dc-c-active-link span {
|
|
779
|
-
border-bottom: 2px solid var(--color-primary-light);
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
.ds-c-button.display-settings-font {
|
|
783
|
-
font: inherit;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.dc-c-breadcrumb__list {
|
|
787
|
-
margin-top: 0;
|
|
788
|
-
margin-bottom: 0;
|
|
789
|
-
padding-left: 0;
|
|
790
|
-
list-style-type: none;
|
|
791
|
-
display: block;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.dc-c-breadcrumb__list > li {
|
|
795
|
-
max-width: unset;
|
|
796
|
-
margin-bottom: 0;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.dc-c-breadcrumb__list > li:after {
|
|
800
|
-
content: "";
|
|
801
|
-
margin: 0 10px;
|
|
802
|
-
font-family: "Font Awesome 6 Pro";
|
|
803
|
-
font-size: 10px;
|
|
804
|
-
font-weight: 600;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.dc-c-breadcrumb__list > li:last-child:after {
|
|
808
|
-
content: "";
|
|
809
|
-
margin: 0;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
.dc-c-breadcrumb__list-item {
|
|
813
|
-
display: inline-block;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
.dc-c-breadcrumb__link {
|
|
817
|
-
display: inline;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.dc-query-builder > .ds-c-accordion > .ds-c-accordion__content {
|
|
821
|
-
overflow: visible;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.dc-query-builder .react-datepicker select {
|
|
825
|
-
background-image: none;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.dc-c-resource-action {
|
|
829
|
-
min-height: 100%;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.dc-filtered-resource-toggle {
|
|
833
|
-
align-self: center;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.dc-c-filterd-resouce-drawer .ds-c-help-drawer__footer h4 {
|
|
837
|
-
display: none;
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
.dc-c-resource-header--buttons {
|
|
841
|
-
display: flex;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
.dkan-c-cms-topnav--tagline {
|
|
845
|
-
color: var(--tag-line--color);
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.dkan-c-header--mobile .dkan-c-cms-topnav--tagline {
|
|
849
|
-
display: none;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.dkan-c-header--desktop .dkan-c-cms-topnav--tagline {
|
|
853
|
-
border-left: 1px solid var(--tag-line--border-color);
|
|
854
|
-
align-items: center;
|
|
855
|
-
display: inline-flex;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
:root {
|
|
859
|
-
--header-nav-icon-link--desktop-width: 240px;
|
|
860
|
-
--header-nav-icon-link--mobile-width: 90px;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.dkan-c-header-nav-icon-link {
|
|
864
|
-
border-right: none;
|
|
865
|
-
align-items: center;
|
|
866
|
-
display: inline-flex;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.dkan-c-header-nav-icon-link a {
|
|
870
|
-
border-bottom: none;
|
|
871
|
-
text-decoration: none;
|
|
872
|
-
display: inline-block;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.dkan-c-header-nav-icon-link a:focus, .dkan-c-header-nav-icon-link a:hover {
|
|
876
|
-
background-color: #0000;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.dkan-c-header-nav-icon-link.show-back-arrow a:before {
|
|
880
|
-
content: "";
|
|
881
|
-
color: #323a45;
|
|
882
|
-
text-align: center;
|
|
883
|
-
vertical-align: middle;
|
|
884
|
-
width: 18px;
|
|
885
|
-
height: 18px;
|
|
886
|
-
margin-left: 10px;
|
|
887
|
-
padding-right: 10px;
|
|
888
|
-
font-family: "Font Awesome 6 Pro";
|
|
889
|
-
font-size: 18px;
|
|
890
|
-
font-weight: lighter;
|
|
891
|
-
line-height: 18px;
|
|
892
|
-
display: inline-block;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.dkan-c-header-nav-icon-link img {
|
|
896
|
-
vertical-align: middle;
|
|
897
|
-
height: auto;
|
|
898
|
-
display: inline-block;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.dkan-c-header--mobile .dkan-c-header-nav-icon-link img {
|
|
902
|
-
width: var(--header-nav-icon-link--mobile-width);
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.dkan-c-header--desktop .dkan-c-header-nav-icon-link img {
|
|
906
|
-
width: var(--header-nav-icon-link--desktop-width);
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.dkan-c-cms-topnav {
|
|
910
|
-
height: 51px;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.dkan-c-cms-topnav > div {
|
|
914
|
-
height: 100%;
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.dkan-c-cms-topnav .dkan-c-cms-topnav-menu a {
|
|
918
|
-
margin: 3px 7px;
|
|
919
|
-
display: inline-block;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.dkan-c-cms-topnav--menu ul {
|
|
923
|
-
margin: 0;
|
|
924
|
-
padding: 0;
|
|
925
|
-
list-style: none;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
.dkan-c-cms-topnav .dkan-c-cms-topnav--tagline {
|
|
929
|
-
height: 100%;
|
|
930
|
-
margin-left: 16px;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
@media screen and (width <= 544px) {
|
|
934
|
-
.dkan-c-cms-topnav {
|
|
935
|
-
display: none;
|
|
936
|
-
}
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
@media screen and (width >= 1024px) {
|
|
940
|
-
.dkan-c-cms-topnav {
|
|
941
|
-
height: 85px;
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button span {
|
|
946
|
-
border-bottom: 2px solid #0000;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile {
|
|
950
|
-
display: none;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button {
|
|
954
|
-
color: var(--header-nav-link--mobile-color);
|
|
955
|
-
text-decoration: none;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus {
|
|
959
|
-
color: var(--header-nav-link--mobile-color);
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover span, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus span {
|
|
963
|
-
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
.dkan-c-header-search--modal-button:before {
|
|
967
|
-
content: "";
|
|
968
|
-
text-align: center;
|
|
969
|
-
vertical-align: middle;
|
|
970
|
-
box-sizing: content-box;
|
|
971
|
-
width: 18px;
|
|
972
|
-
height: 18px;
|
|
973
|
-
margin-left: 10px;
|
|
974
|
-
padding-right: 10px;
|
|
975
|
-
font-family: "Font Awesome 6 Pro";
|
|
976
|
-
font-size: 18px;
|
|
977
|
-
font-weight: lighter;
|
|
978
|
-
line-height: 18px;
|
|
979
|
-
display: inline-block;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button {
|
|
983
|
-
color: var(--header-nav-search--color);
|
|
984
|
-
text-decoration: none;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button:focus, .dkan-c-main-navigation--search .dkan-c-header-search--modal-button:hover {
|
|
988
|
-
color: var(--header-nav-search--color);
|
|
960
|
+
font-size: 18px;
|
|
961
|
+
font-weight: lighter;
|
|
962
|
+
line-height: 18px;
|
|
963
|
+
display: inline-block;
|
|
989
964
|
}
|
|
990
965
|
|
|
991
|
-
.
|
|
992
|
-
|
|
966
|
+
.dc-c-mobile-header--menu {
|
|
967
|
+
background-color: var(--color-gray-dark);
|
|
968
|
+
z-index: 500;
|
|
969
|
+
visibility: hidden;
|
|
970
|
+
width: 100%;
|
|
971
|
+
height: 100%;
|
|
972
|
+
padding: 50px 0;
|
|
973
|
+
transition: left .7s;
|
|
974
|
+
position: fixed;
|
|
975
|
+
top: 0;
|
|
976
|
+
bottom: 0;
|
|
977
|
+
left: -100%;
|
|
993
978
|
}
|
|
994
979
|
|
|
995
|
-
.
|
|
996
|
-
|
|
980
|
+
.dc-c-cmsheader {
|
|
981
|
+
background: var(--color-white);
|
|
982
|
+
position: relative;
|
|
997
983
|
}
|
|
998
984
|
|
|
999
|
-
.
|
|
1000
|
-
|
|
985
|
+
.dc-c-cms-mobile-header-menu:before {
|
|
986
|
+
background: var(--color-primary-light);
|
|
987
|
+
content: "";
|
|
988
|
+
width: 48px;
|
|
989
|
+
height: 2px;
|
|
990
|
+
margin-bottom: 16px;
|
|
991
|
+
margin-left: 8px;
|
|
992
|
+
display: block;
|
|
1001
993
|
}
|
|
1002
994
|
|
|
1003
|
-
.
|
|
995
|
+
.dc-c-cms-mobile-header-menu ul {
|
|
996
|
+
margin: 0;
|
|
997
|
+
padding: 0;
|
|
1004
998
|
list-style: none;
|
|
1005
999
|
}
|
|
1006
1000
|
|
|
1007
|
-
.
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
.dkan-c-header--link-list .dkan-c-header--link span, .dkan-c-header--link-list .dkan-c-header--link + ul a span {
|
|
1001
|
+
.dc-c-cms-mobile-header-menu a, .dc-c-cms-mobile-header-menu a:hover, .dc-c-cms-mobile-header-menu a:focus, .dc-c-cms-mobile-header-menu a:visited {
|
|
1002
|
+
color: var(--color-white);
|
|
1003
|
+
background-color: #0000;
|
|
1012
1004
|
border-bottom: 2px solid #0000;
|
|
1005
|
+
text-decoration: none;
|
|
1006
|
+
display: inline-block;
|
|
1013
1007
|
}
|
|
1014
1008
|
|
|
1015
|
-
.
|
|
1016
|
-
|
|
1017
|
-
text-decoration: none;
|
|
1009
|
+
.dc-c-cms-mobile-header-menu a:hover, .dc-c-cms-mobile-header-menu a:active {
|
|
1010
|
+
border-bottom: 2px solid var(--color-primary-light);
|
|
1018
1011
|
}
|
|
1019
1012
|
|
|
1020
|
-
.
|
|
1021
|
-
|
|
1013
|
+
.dc-c-header--mobile-links button {
|
|
1014
|
+
padding: 0;
|
|
1015
|
+
font-weight: 700;
|
|
1022
1016
|
}
|
|
1023
1017
|
|
|
1024
|
-
.
|
|
1025
|
-
|
|
1018
|
+
.dc-c-header--mobile-links a {
|
|
1019
|
+
display: block;
|
|
1026
1020
|
}
|
|
1027
1021
|
|
|
1028
|
-
.
|
|
1029
|
-
|
|
1022
|
+
.dc-c-mobile-header.menu-open .dc-c-cmsheader {
|
|
1023
|
+
z-index: 501;
|
|
1024
|
+
background-color: #0000;
|
|
1030
1025
|
}
|
|
1031
1026
|
|
|
1032
|
-
.
|
|
1033
|
-
|
|
1027
|
+
.dc-c-mobile-header.menu-open .dc-c-cmsheader-menu a, .dc-c-mobile-header.menu-open button, .dc-c-mobile-header.menu-open .cms-link-container a:before {
|
|
1028
|
+
color: var(--color-white);
|
|
1034
1029
|
}
|
|
1035
1030
|
|
|
1036
|
-
.
|
|
1037
|
-
|
|
1038
|
-
z-index: 500;
|
|
1039
|
-
transition-property: left;
|
|
1040
|
-
transition-duration: var(--mobile-nav-animation-time);
|
|
1041
|
-
flex: none;
|
|
1042
|
-
width: 100%;
|
|
1043
|
-
max-width: 100%;
|
|
1044
|
-
height: 100%;
|
|
1045
|
-
padding: 50px 0;
|
|
1046
|
-
display: block;
|
|
1047
|
-
position: fixed;
|
|
1048
|
-
top: 0;
|
|
1049
|
-
bottom: 0;
|
|
1031
|
+
.dc-c-mobile-header.menu-open .dc-c-mobile-header--menu {
|
|
1032
|
+
visibility: visible;
|
|
1050
1033
|
left: 0;
|
|
1051
1034
|
}
|
|
1052
1035
|
|
|
1053
|
-
.
|
|
1054
|
-
|
|
1055
|
-
padding-top:
|
|
1036
|
+
.cms-text-container {
|
|
1037
|
+
color: #6f757c;
|
|
1038
|
+
padding-top: 28px;
|
|
1039
|
+
display: block;
|
|
1056
1040
|
}
|
|
1057
1041
|
|
|
1058
|
-
.
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
width: 48px;
|
|
1062
|
-
height: 2px;
|
|
1063
|
-
margin-left: 24px;
|
|
1064
|
-
display: block;
|
|
1065
|
-
position: absolute;
|
|
1042
|
+
.dc-c-cmsheader-menu {
|
|
1043
|
+
margin: 0;
|
|
1044
|
+
padding: 0;
|
|
1066
1045
|
}
|
|
1067
1046
|
|
|
1068
|
-
.
|
|
1069
|
-
|
|
1047
|
+
.dc-c-cmsheader-menu li {
|
|
1048
|
+
list-style: none;
|
|
1070
1049
|
}
|
|
1071
1050
|
|
|
1072
|
-
.
|
|
1073
|
-
color:
|
|
1074
|
-
|
|
1051
|
+
.dc-c-cmsheader-menu a {
|
|
1052
|
+
color: #323a45;
|
|
1053
|
+
border-bottom: 1px solid #fff3;
|
|
1054
|
+
margin: 3px 7px;
|
|
1055
|
+
padding: 0;
|
|
1075
1056
|
text-decoration: none;
|
|
1076
1057
|
}
|
|
1077
1058
|
|
|
1078
|
-
.
|
|
1079
|
-
border-bottom
|
|
1059
|
+
.dc-c-cmsheader-menu a:hover, .dc-c-cmsheader-menu a:active {
|
|
1060
|
+
border-bottom: 2px solid #323a45;
|
|
1080
1061
|
}
|
|
1081
1062
|
|
|
1082
|
-
|
|
1083
|
-
|
|
1063
|
+
@media (width >= 544px) {
|
|
1064
|
+
.dc-c-main-navigation--search, .dc-c-mobile-menu--search {
|
|
1065
|
+
border-left: 1px solid var(--color-white);
|
|
1066
|
+
}
|
|
1084
1067
|
}
|
|
1085
1068
|
|
|
1086
|
-
.
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
display: flex;
|
|
1069
|
+
nav.dc-c-site-menu .dc-c-header--links {
|
|
1070
|
+
margin: 0;
|
|
1071
|
+
padding: 0;
|
|
1090
1072
|
}
|
|
1091
1073
|
|
|
1092
|
-
.
|
|
1093
|
-
|
|
1074
|
+
nav.dc-c-site-menu .dc-c-header--links li {
|
|
1075
|
+
height: 100%;
|
|
1076
|
+
list-style: none;
|
|
1094
1077
|
}
|
|
1095
1078
|
|
|
1096
|
-
.
|
|
1097
|
-
|
|
1098
|
-
|
|
1079
|
+
nav.dc-c-site-menu .dc-c-header--links button {
|
|
1080
|
+
border: none;
|
|
1081
|
+
font-size: 16px;
|
|
1082
|
+
text-decoration: none;
|
|
1099
1083
|
}
|
|
1100
1084
|
|
|
1101
|
-
.
|
|
1102
|
-
|
|
1085
|
+
nav.dc-c-site-menu .dc-c-header--links button span {
|
|
1086
|
+
border-bottom: 2px solid #0000;
|
|
1103
1087
|
}
|
|
1104
1088
|
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1089
|
+
nav.dc-c-site-menu .dc-c-header--links a {
|
|
1090
|
+
padding: var(--space, 8px 24px);
|
|
1091
|
+
text-decoration: none;
|
|
1108
1092
|
}
|
|
1109
1093
|
|
|
1110
|
-
.
|
|
1111
|
-
|
|
1094
|
+
nav.dc-c-site-menu .dc-c-header--links a span {
|
|
1095
|
+
border-bottom: 2px solid #0000;
|
|
1112
1096
|
}
|
|
1113
1097
|
|
|
1114
|
-
.
|
|
1115
|
-
|
|
1098
|
+
nav.dc-c-site-menu .dc-c-header--links > li:hover > button span, nav.dc-c-site-menu .dc-c-header--links > li button:focus span, nav.dc-c-site-menu .dc-c-header--links > li button:hover span, nav.dc-c-site-menu .dc-c-header--links > li:hover > a span, nav.dc-c-site-menu .dc-c-header--links > li:focus > a span, nav.dc-c-site-menu .dc-c-header--links > li a:hover span, nav.dc-c-site-menu .dc-c-header--links > li a:focus span {
|
|
1099
|
+
border-bottom: 2px solid var(--color-primary-light);
|
|
1116
1100
|
}
|
|
1117
1101
|
|
|
1118
|
-
|
|
1119
|
-
|
|
1102
|
+
nav.dc-c-site-menu .dc-c-header--links a:focus, .dc-c-site-title a:focus {
|
|
1103
|
+
box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
|
|
1104
|
+
outline-offset: 3px;
|
|
1105
|
+
border-radius: var(--button__border-radius);
|
|
1106
|
+
background-color: #0000;
|
|
1107
|
+
outline: 3px solid #0000;
|
|
1108
|
+
text-decoration: none;
|
|
1120
1109
|
}
|
|
1121
1110
|
|
|
1122
|
-
|
|
1123
|
-
|
|
1111
|
+
.dc-c-site-title a {
|
|
1112
|
+
text-decoration: none;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.dc-c-mobile-menu--search {
|
|
1116
|
+
display: inherit;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.dc-c-search-modal--button:before {
|
|
1120
|
+
content: "";
|
|
1121
|
+
color: var(--color-white);
|
|
1124
1122
|
text-align: center;
|
|
1125
1123
|
vertical-align: middle;
|
|
1126
1124
|
box-sizing: content-box;
|
|
@@ -1135,67 +1133,61 @@ button.dkan-c-mobile-menu-button:before {
|
|
|
1135
1133
|
display: inline-block;
|
|
1136
1134
|
}
|
|
1137
1135
|
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
button.dkan-c-mobile-menu-button--open:before {
|
|
1143
|
-
content: "";
|
|
1136
|
+
nav.dc-c-site-menu .dc-c-header--links a.dc-c-active-link span {
|
|
1137
|
+
border-bottom: 2px solid var(--color-primary-light);
|
|
1144
1138
|
}
|
|
1145
1139
|
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
border-top: 8px solid var(--color-secondary) !important;
|
|
1140
|
+
.ds-c-button.display-settings-font {
|
|
1141
|
+
font: inherit;
|
|
1149
1142
|
}
|
|
1150
1143
|
|
|
1151
|
-
.
|
|
1152
|
-
margin: 0;
|
|
1153
|
-
|
|
1154
|
-
|
|
1144
|
+
.dc-c-breadcrumb__list {
|
|
1145
|
+
margin-top: 0;
|
|
1146
|
+
margin-bottom: 0;
|
|
1147
|
+
padding-left: 0;
|
|
1148
|
+
list-style-type: none;
|
|
1155
1149
|
display: block;
|
|
1156
1150
|
}
|
|
1157
1151
|
|
|
1158
|
-
.
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.dkan-c-sidebar-nav-link:hover, .dkan-c-sidebar-nav-link:visited:hover {
|
|
1164
|
-
text-decoration: underline;
|
|
1152
|
+
.dc-c-breadcrumb__list > li {
|
|
1153
|
+
max-width: unset;
|
|
1154
|
+
margin-bottom: 0;
|
|
1165
1155
|
}
|
|
1166
1156
|
|
|
1167
|
-
.
|
|
1168
|
-
|
|
1169
|
-
|
|
1157
|
+
.dc-c-breadcrumb__list > li:after {
|
|
1158
|
+
content: "";
|
|
1159
|
+
margin: 0 10px;
|
|
1160
|
+
font-family: "Font Awesome 6 Pro";
|
|
1161
|
+
font-size: 10px;
|
|
1162
|
+
font-weight: 600;
|
|
1170
1163
|
}
|
|
1171
1164
|
|
|
1172
|
-
.
|
|
1173
|
-
|
|
1174
|
-
|
|
1165
|
+
.dc-c-breadcrumb__list > li:last-child:after {
|
|
1166
|
+
content: "";
|
|
1167
|
+
margin: 0;
|
|
1175
1168
|
}
|
|
1176
1169
|
|
|
1177
|
-
.
|
|
1178
|
-
|
|
1170
|
+
.dc-c-breadcrumb__list-item {
|
|
1171
|
+
display: inline-block;
|
|
1179
1172
|
}
|
|
1180
1173
|
|
|
1181
|
-
.
|
|
1182
|
-
display:
|
|
1174
|
+
.dc-c-breadcrumb__link {
|
|
1175
|
+
display: inline;
|
|
1183
1176
|
}
|
|
1184
1177
|
|
|
1185
|
-
.
|
|
1186
|
-
|
|
1178
|
+
.dc-query-builder > .ds-c-accordion > .ds-c-accordion__content {
|
|
1179
|
+
overflow: visible;
|
|
1187
1180
|
}
|
|
1188
1181
|
|
|
1189
|
-
.
|
|
1190
|
-
|
|
1191
|
-
display: flex;
|
|
1182
|
+
.dc-query-builder .react-datepicker select {
|
|
1183
|
+
background-image: none;
|
|
1192
1184
|
}
|
|
1193
1185
|
|
|
1194
|
-
.
|
|
1195
|
-
|
|
1186
|
+
.dc-c-resource-header .data-table-results {
|
|
1187
|
+
margin: 0;
|
|
1196
1188
|
}
|
|
1197
1189
|
|
|
1198
|
-
.
|
|
1199
|
-
display:
|
|
1190
|
+
.dc-c-resource-header--buttons {
|
|
1191
|
+
display: flex;
|
|
1200
1192
|
}
|
|
1201
1193
|
/*# sourceMappingURL=main.css.map */
|