@civicactions/cmsds-open-data-components 4.1.0-alpha.7 → 4.1.0-alpha.9
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 +525 -197
- package/dist/main.css.map +1 -1
- package/dist/main.js +4451 -3814
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +87 -73
- package/dist/types.d.ts.map +1 -1
- package/package.json +9 -7
- package/scripts/generate-usage-report.cjs +0 -0
package/dist/main.css
CHANGED
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.dkan-c-cms-topnav {
|
|
67
|
-
height:
|
|
67
|
+
height: 3.188rem;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.dkan-c-cms-topnav > div {
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
|
|
96
96
|
@media screen and (width >= 1024px) {
|
|
97
97
|
.dkan-c-cms-topnav {
|
|
98
|
-
height:
|
|
98
|
+
height: 5.313rem;
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -156,6 +156,215 @@
|
|
|
156
156
|
z-index: 999;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
+
.dc-c-search-list-item {
|
|
160
|
+
list-style: none;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.dc-c-search-list-item ul {
|
|
164
|
+
gap: 0;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.dc-c-search-list-item li {
|
|
168
|
+
list-style: none;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.dc-c-search-list-item li:first-child > span {
|
|
172
|
+
padding-left: 0;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.dc-c-search-list-item li a, .dc-c-search-list-item li button {
|
|
176
|
+
text-decoration: underline !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.dc-c-search-list-item svg {
|
|
180
|
+
margin-right: 8px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.dc-c-search-list-item button, .dc-c-search-list-item span > a {
|
|
184
|
+
font-weight: normal !important;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.dc-c-search-list-item a:visited svg {
|
|
188
|
+
fill: var(--link__color--visited);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.dc-c-search-list-item .ds-c-button {
|
|
192
|
+
text-decoration: none !important;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.dc-c-search-list-item .ds-c-button svg, .dc-c-search-list-item .ds-c-button:visited svg {
|
|
196
|
+
fill: var(--color-white);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper {
|
|
200
|
+
cursor: not-allowed;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link {
|
|
204
|
+
pointer-events: none;
|
|
205
|
+
color: #757575;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:active, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:hover, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:focus {
|
|
209
|
+
color: #757575;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:active svg, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:hover svg, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:focus svg {
|
|
213
|
+
fill: #757575;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link svg {
|
|
217
|
+
fill: #757575 !important;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.dc-c-search-list-item .theme-list {
|
|
221
|
+
display: inline-block;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.dc-c-search-list-item .theme-list li {
|
|
225
|
+
letter-spacing: .75px;
|
|
226
|
+
color: #fff;
|
|
227
|
+
margin-bottom: 4px;
|
|
228
|
+
margin-right: 8px;
|
|
229
|
+
padding: 3px 10px;
|
|
230
|
+
font-size: 1.2rem;
|
|
231
|
+
text-decoration: none;
|
|
232
|
+
display: inline-block;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.dc-c-search-list-item .theme-list li a {
|
|
236
|
+
color: #fff;
|
|
237
|
+
text-decoration: none !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.dc-c-search-list-item .theme-list li a:hover, .dc-c-search-list-item .theme-list li a:focus, .dc-c-search-list-item .theme-list li a:visited:focus {
|
|
241
|
+
outline-offset: 12px;
|
|
242
|
+
text-decoration: underline !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.dataset-date .dataset-date-item {
|
|
246
|
+
white-space: nowrap;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.dataset-date .dataset-date-item > span {
|
|
250
|
+
line-height: 1.8rem;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.dataset-date .dataset-date-item .ds-c-tooltip__container {
|
|
254
|
+
width: 20px;
|
|
255
|
+
display: inline-block;
|
|
256
|
+
position: relative;
|
|
257
|
+
bottom: 10px;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.dataset-date > .bullet-point {
|
|
261
|
+
font-size: 1.2rem;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
@media screen and (width <= 543px) {
|
|
265
|
+
.dataset-date .bullet-point {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.dkan-dataset-search {
|
|
271
|
+
position: relative;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
@media only screen and (width >= 544px) {
|
|
275
|
+
.dkan-dataset-search input {
|
|
276
|
+
padding-left: 32px;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
@media only screen and (width <= 544px) {
|
|
281
|
+
.dkan-dataset-search div.--alt-style input {
|
|
282
|
+
--text-input__border-radius: 50px;
|
|
283
|
+
--text-input__border-color: #c6b7b7;
|
|
284
|
+
height: 61px;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.dkan-dataset-search .dc-c-search-button-mobile {
|
|
289
|
+
z-index: 1000;
|
|
290
|
+
border-top-left-radius: 0;
|
|
291
|
+
border-bottom-left-radius: 0;
|
|
292
|
+
height: 3.563rem;
|
|
293
|
+
position: absolute;
|
|
294
|
+
top: 2px;
|
|
295
|
+
right: 18px;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.dkan-dataset-search--facet-container ul {
|
|
299
|
+
padding-left: 0;
|
|
300
|
+
list-style: none;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.dkan-dataset-search--clear-all-filters {
|
|
304
|
+
width: 100%;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.dc-c-search-list-item li a svg, .dc-c-search-list-item li span svg {
|
|
308
|
+
fill: var(--link__color);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.dc-c-search-list-item li a:visited svg {
|
|
312
|
+
fill: var(--link__color--visited);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.dc-dataset-search-list {
|
|
316
|
+
list-style: none;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.dc-search-header {
|
|
320
|
+
display: relative;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.dc-search-header:after {
|
|
324
|
+
content: "";
|
|
325
|
+
background-color: var(--color-primary-light);
|
|
326
|
+
width: 48px;
|
|
327
|
+
height: 4px;
|
|
328
|
+
margin: 16px 0;
|
|
329
|
+
display: block;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.dataset-results-count {
|
|
333
|
+
font-weight: bold;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.dkan-dataset-search--facet-container .ds-c-accordion__content {
|
|
337
|
+
max-height: 32rem;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.dc-dataset-search--clear-all-filters {
|
|
341
|
+
width: 100%;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.dkan-dataset-search {
|
|
345
|
+
align-items: flex-start;
|
|
346
|
+
position: relative;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.dkan-dataset-search input {
|
|
350
|
+
min-width: 100%;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
@media only screen and (width >= 544px) {
|
|
354
|
+
.dkan-dataset-search input {
|
|
355
|
+
padding-left: 32px;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.dkan-dataset-search .ds-c-field__before {
|
|
360
|
+
top: 12px;
|
|
361
|
+
left: 16px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.dkan-dataset-search .ds-c-inline-error {
|
|
365
|
+
max-width: none;
|
|
366
|
+
}
|
|
367
|
+
|
|
159
368
|
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button span {
|
|
160
369
|
border-bottom: 2px solid #0000;
|
|
161
370
|
}
|
|
@@ -420,6 +629,10 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
420
629
|
display: inherit;
|
|
421
630
|
}
|
|
422
631
|
|
|
632
|
+
.dc-c-hero .ds-c-inline-error {
|
|
633
|
+
max-width: none;
|
|
634
|
+
}
|
|
635
|
+
|
|
423
636
|
.dc-c-list-item {
|
|
424
637
|
list-style: none;
|
|
425
638
|
}
|
|
@@ -431,164 +644,41 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
431
644
|
.dc-c-list-item li {
|
|
432
645
|
list-style: none;
|
|
433
646
|
}
|
|
434
|
-
|
|
435
|
-
.dc-c-list-item li:first-child > span {
|
|
436
|
-
padding-left: 0;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.dc-c-list-item li a, .dc-c-list-item li button {
|
|
440
|
-
text-decoration: underline !important;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
.dc-c-list-item li a svg, .dc-c-list-item li span svg {
|
|
444
|
-
fill: var(--link__color);
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.dc-c-list-item svg {
|
|
448
|
-
margin-right: 8px;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.dc-c-list-item button, .dc-c-list-item span > a {
|
|
452
|
-
font-weight: normal !important;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.dc-c-list-item a:visited svg {
|
|
456
|
-
fill: var(--link__color--visited);
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.dc-c-list-item span[id^="dataset-"] + h2 {
|
|
460
|
-
margin-top: 0;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
.dc-c-list-item .ds-c-button {
|
|
464
|
-
text-decoration: none !important;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.dc-c-list-item .ds-c-button svg, .dc-c-list-item .ds-c-button:visited svg {
|
|
468
|
-
fill: var(--color-white);
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.dc-c-search-list-item {
|
|
472
|
-
list-style: none;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
.dc-c-search-list-item ul {
|
|
476
|
-
gap: 0;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.dc-c-search-list-item li {
|
|
480
|
-
list-style: none;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.dc-c-search-list-item li:first-child > span {
|
|
484
|
-
padding-left: 0;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.dc-c-search-list-item li a, .dc-c-search-list-item li button {
|
|
488
|
-
text-decoration: underline !important;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
.dc-c-search-list-item svg {
|
|
492
|
-
margin-right: 8px;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.dc-c-search-list-item button, .dc-c-search-list-item span > a {
|
|
496
|
-
font-weight: normal !important;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.dc-c-search-list-item a:visited svg {
|
|
500
|
-
fill: var(--link__color--visited);
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.dc-c-search-list-item .ds-c-button {
|
|
504
|
-
text-decoration: none !important;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.dc-c-search-list-item .ds-c-button svg, .dc-c-search-list-item .ds-c-button:visited svg {
|
|
508
|
-
fill: var(--color-white);
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
.dc-c-search-list-item .dkan-disabled-link-wrapper {
|
|
512
|
-
cursor: not-allowed;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link {
|
|
516
|
-
pointer-events: none;
|
|
517
|
-
color: #757575;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:active, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:hover, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:focus {
|
|
521
|
-
color: #757575;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:active svg, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:hover svg, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link:focus svg, .dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link svg {
|
|
525
|
-
fill: #757575;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.dataset-date .dataset-date-item {
|
|
529
|
-
white-space: nowrap;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.dataset-date .dataset-date-item > span {
|
|
533
|
-
line-height: 1.8rem;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.dataset-date .dataset-date-item .ds-c-tooltip__container {
|
|
537
|
-
width: 20px;
|
|
538
|
-
display: inline-block;
|
|
539
|
-
position: relative;
|
|
540
|
-
bottom: 10px;
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
.dataset-date > .bullet-point {
|
|
544
|
-
font-size: 1.2rem;
|
|
647
|
+
|
|
648
|
+
.dc-c-list-item li:first-child > span {
|
|
649
|
+
padding-left: 0;
|
|
545
650
|
}
|
|
546
651
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
display: none;
|
|
550
|
-
}
|
|
652
|
+
.dc-c-list-item li a, .dc-c-list-item li button {
|
|
653
|
+
text-decoration: underline !important;
|
|
551
654
|
}
|
|
552
655
|
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
padding-left: 32px;
|
|
556
|
-
}
|
|
656
|
+
.dc-c-list-item li a svg, .dc-c-list-item li span svg {
|
|
657
|
+
fill: var(--link__color);
|
|
557
658
|
}
|
|
558
659
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
--text-input__border-radius: 50px;
|
|
562
|
-
--text-input__border-color: #c6b7b7;
|
|
563
|
-
height: 61px;
|
|
564
|
-
}
|
|
660
|
+
.dc-c-list-item svg {
|
|
661
|
+
margin-right: 8px;
|
|
565
662
|
}
|
|
566
663
|
|
|
567
|
-
.
|
|
568
|
-
|
|
569
|
-
border-top-left-radius: 0;
|
|
570
|
-
border-bottom-left-radius: 0;
|
|
571
|
-
height: 57px;
|
|
572
|
-
position: absolute;
|
|
573
|
-
top: 2px;
|
|
574
|
-
right: 18px;
|
|
664
|
+
.dc-c-list-item button, .dc-c-list-item span > a {
|
|
665
|
+
font-weight: normal !important;
|
|
575
666
|
}
|
|
576
667
|
|
|
577
|
-
.
|
|
578
|
-
|
|
579
|
-
list-style: none;
|
|
668
|
+
.dc-c-list-item a:visited svg {
|
|
669
|
+
fill: var(--link__color--visited);
|
|
580
670
|
}
|
|
581
671
|
|
|
582
|
-
.
|
|
583
|
-
|
|
672
|
+
.dc-c-list-item span[id^="dataset-"] + h2 {
|
|
673
|
+
margin-top: 0;
|
|
584
674
|
}
|
|
585
675
|
|
|
586
|
-
.dc-c-
|
|
587
|
-
|
|
676
|
+
.dc-c-list-item .ds-c-button {
|
|
677
|
+
text-decoration: none !important;
|
|
588
678
|
}
|
|
589
679
|
|
|
590
|
-
.dc-c-
|
|
591
|
-
fill: var(--
|
|
680
|
+
.dc-c-list-item .ds-c-button svg, .dc-c-list-item .ds-c-button:visited svg {
|
|
681
|
+
fill: var(--color-white);
|
|
592
682
|
}
|
|
593
683
|
|
|
594
684
|
:root {
|
|
@@ -662,7 +752,19 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
662
752
|
}
|
|
663
753
|
|
|
664
754
|
.swagger-ui.swagger-ui .information-container a {
|
|
665
|
-
color:
|
|
755
|
+
color: var(--link__color);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.swagger-ui.swagger-ui .information-container a:visited {
|
|
759
|
+
color: var(--link__color--visited);
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.swagger-ui.swagger-ui .information-container a:hover {
|
|
763
|
+
color: var(--link__color);
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.swagger-ui.swagger-ui .information-container a:active {
|
|
767
|
+
color: var(--link__color--active);
|
|
666
768
|
}
|
|
667
769
|
|
|
668
770
|
.swagger-ui.swagger-ui .model-hint {
|
|
@@ -703,6 +805,237 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
703
805
|
}
|
|
704
806
|
}
|
|
705
807
|
|
|
808
|
+
#api-docs-swagger-ui-plugin .model .property {
|
|
809
|
+
color: #6b6b6b !important;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
#api-docs-swagger-ui-plugin pre.errors-wrapper {
|
|
813
|
+
display: none;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
#api-docs-swagger-ui-plugin .btn {
|
|
817
|
+
transition: none;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
#api-docs-swagger-ui-plugin .parameters input {
|
|
821
|
+
color: #323a45;
|
|
822
|
+
font-size: .8em;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
#api-docs-swagger-ui-plugin .execute-wrapper, #api-docs-swagger-ui-plugin .btn-group {
|
|
826
|
+
justify-content: flex-start;
|
|
827
|
+
padding: 12px 24px 24px;
|
|
828
|
+
display: flex;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
#api-docs-swagger-ui-plugin .wrapper > .block {
|
|
832
|
+
padding: 0;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
#api-docs-swagger-ui-plugin .wrapper:has( + .wrapper:last-child .block:empty) {
|
|
836
|
+
display: flow-root;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
#api-docs-swagger-ui-plugin .information-container svg:not(:root) {
|
|
840
|
+
overflow: visible;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
#api-docs-swagger-ui-plugin .opblock {
|
|
844
|
+
box-shadow: none;
|
|
845
|
+
background: none;
|
|
846
|
+
border: none;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section {
|
|
850
|
+
margin-top: 25px;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-description-wrapper {
|
|
854
|
+
margin: 0;
|
|
855
|
+
padding: 16px;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section, #api-docs-swagger-ui-plugin .opblock .responses-wrapper {
|
|
859
|
+
background: #fff;
|
|
860
|
+
border: 1px solid #d6d7d9;
|
|
861
|
+
border-radius: 2px;
|
|
862
|
+
margin-left: 24px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header {
|
|
866
|
+
box-shadow: none;
|
|
867
|
+
background: #f6f9fd;
|
|
868
|
+
padding: 16px;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 {
|
|
872
|
+
color: #0c2499;
|
|
873
|
+
text-transform: uppercase;
|
|
874
|
+
letter-spacing: 1px;
|
|
875
|
+
cursor: default;
|
|
876
|
+
font-size: .9em;
|
|
877
|
+
font-weight: 800;
|
|
878
|
+
line-height: 16px;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4 > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 > span:after {
|
|
882
|
+
background: none !important;
|
|
883
|
+
display: none !important;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
#api-docs-swagger-ui-plugin .OperationTag:not(:first-of-type) .toggle-block {
|
|
887
|
+
border-top: 1px solid #e1e2e3;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button {
|
|
891
|
+
width: 100%;
|
|
892
|
+
font-weight: inherit;
|
|
893
|
+
flex: auto;
|
|
894
|
+
min-height: 64px;
|
|
895
|
+
position: relative;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-text, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-text {
|
|
899
|
+
text-decoration: underline;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-description, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-description {
|
|
903
|
+
text-decoration: none;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button .toggle-block-title-description {
|
|
907
|
+
color: #3b4151;
|
|
908
|
+
margin-top: 1px;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button > svg {
|
|
912
|
+
pointer-events: none;
|
|
913
|
+
width: 20px;
|
|
914
|
+
height: 20px;
|
|
915
|
+
position: absolute;
|
|
916
|
+
top: 50%;
|
|
917
|
+
left: 0;
|
|
918
|
+
transform: translateY(-50%);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
#api-docs-swagger-ui-plugin .OperationTag .wrapper:not(:last-child) .block-desktop {
|
|
922
|
+
margin-bottom: 32px;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container {
|
|
926
|
+
border: 1px solid #eaebec;
|
|
927
|
+
flex: 1;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
931
|
+
background: #6f7570;
|
|
932
|
+
min-width: 80px;
|
|
933
|
+
height: calc(100% - 8px);
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
937
|
+
color: #3b4151;
|
|
938
|
+
word-break: break-word;
|
|
939
|
+
max-width: 280px;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
943
|
+
box-shadow: none;
|
|
944
|
+
color: #323a45;
|
|
945
|
+
background: none;
|
|
946
|
+
flex: 1;
|
|
947
|
+
height: 48px;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input:focus {
|
|
951
|
+
box-shadow: none;
|
|
952
|
+
background: none;
|
|
953
|
+
border: none;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
957
|
+
box-shadow: none;
|
|
958
|
+
background: #0c249905;
|
|
959
|
+
border: 1px solid #0c249914;
|
|
960
|
+
width: 40px;
|
|
961
|
+
height: 40px;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:hover, #api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:focus {
|
|
965
|
+
background: #0c249914;
|
|
966
|
+
border: 1px solid #0c24991f;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels {
|
|
970
|
+
width: 100%;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels > h3 {
|
|
974
|
+
margin: 16px 0;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box {
|
|
978
|
+
background: #fff;
|
|
979
|
+
border: 1px solid #eaebec;
|
|
980
|
+
border-radius: 2px;
|
|
981
|
+
width: 100%;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box {
|
|
985
|
+
background-color: #fff;
|
|
986
|
+
padding: 0;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control {
|
|
990
|
+
border: none;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box {
|
|
994
|
+
background: #fff;
|
|
995
|
+
padding: 0;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box {
|
|
999
|
+
background: #fff;
|
|
1000
|
+
border: 1px solid #eaebec;
|
|
1001
|
+
border-radius: 2px;
|
|
1002
|
+
width: 100%;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-title {
|
|
1006
|
+
font-weight: 600;
|
|
1007
|
+
display: block;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-toggle {
|
|
1011
|
+
display: none;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
@media screen and (width <= 1023px) {
|
|
1015
|
+
#api-docs-swagger-ui-plugin .OperationSummary__try-it-out-btn {
|
|
1016
|
+
align-self: flex-start;
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
@media screen and (width <= 767px) {
|
|
1021
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1022
|
+
width: calc(100% - 8px);
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1026
|
+
width: 100%;
|
|
1027
|
+
max-width: none;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1031
|
+
width: 100%;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1035
|
+
align-self: flex-end;
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
|
|
706
1039
|
.ds-c-button.display-settings-font {
|
|
707
1040
|
font: inherit;
|
|
708
1041
|
}
|
|
@@ -1020,9 +1353,17 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window form {
|
|
|
1020
1353
|
display: grid;
|
|
1021
1354
|
}
|
|
1022
1355
|
|
|
1023
|
-
.dkan-delete-dataset-filter-button {
|
|
1356
|
+
button.dkan-delete-dataset-filter-button {
|
|
1024
1357
|
width: 32px;
|
|
1025
1358
|
height: 32px;
|
|
1359
|
+
border-radius: 50% !important;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
@media screen and (width <= 767px) {
|
|
1363
|
+
button.dkan-delete-dataset-filter-button {
|
|
1364
|
+
margin-bottom: 4px;
|
|
1365
|
+
margin-left: 16px !important;
|
|
1366
|
+
}
|
|
1026
1367
|
}
|
|
1027
1368
|
|
|
1028
1369
|
.dkan-clear-dataset-filters-button {
|
|
@@ -1101,6 +1442,10 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
|
1101
1442
|
display: flex;
|
|
1102
1443
|
}
|
|
1103
1444
|
|
|
1445
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .dkan-filter-dataset-controls-header {
|
|
1446
|
+
display: none;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1104
1449
|
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
1105
1450
|
flex: 0;
|
|
1106
1451
|
width: 100%;
|
|
@@ -1147,6 +1492,38 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
|
1147
1492
|
overflow: auto;
|
|
1148
1493
|
}
|
|
1149
1494
|
|
|
1495
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset {
|
|
1496
|
+
background-color: #f2f2f2;
|
|
1497
|
+
flex-wrap: wrap;
|
|
1498
|
+
align-items: flex-end;
|
|
1499
|
+
gap: 0;
|
|
1500
|
+
display: flex;
|
|
1501
|
+
border: 0 !important;
|
|
1502
|
+
max-width: none !important;
|
|
1503
|
+
margin-block-start: 16px !important;
|
|
1504
|
+
padding-block: 16px !important;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset > div:first-child, dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset > div:nth-child(2), dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset > div:nth-child(3) {
|
|
1508
|
+
width: calc(100% - 48px);
|
|
1509
|
+
max-width: none !important;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset > div:first-child, dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset > div:nth-child(2) {
|
|
1513
|
+
margin-bottom: 16px;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset .ds-c-label {
|
|
1517
|
+
width: auto !important;
|
|
1518
|
+
max-width: none !important;
|
|
1519
|
+
height: auto !important;
|
|
1520
|
+
overflow: visible !important;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div .dkan-filter-dataset-controls > fieldset .ds-c-field {
|
|
1524
|
+
max-width: none !important;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1150
1527
|
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container > div > div {
|
|
1151
1528
|
flex: 0;
|
|
1152
1529
|
width: 100%;
|
|
@@ -1474,54 +1851,6 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
|
1474
1851
|
overflow-wrap: anywhere;
|
|
1475
1852
|
}
|
|
1476
1853
|
|
|
1477
|
-
.dc-dataset-search-list {
|
|
1478
|
-
list-style: none;
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
|
-
.dc-search-header {
|
|
1482
|
-
display: relative;
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
.dc-search-header:after {
|
|
1486
|
-
content: "";
|
|
1487
|
-
background-color: var(--color-primary-light);
|
|
1488
|
-
width: 48px;
|
|
1489
|
-
height: 4px;
|
|
1490
|
-
margin: 16px 0;
|
|
1491
|
-
display: block;
|
|
1492
|
-
}
|
|
1493
|
-
|
|
1494
|
-
.dataset-results-count {
|
|
1495
|
-
font-weight: bold;
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
.dkan-dataset-search--facet-container .ds-c-accordion__content {
|
|
1499
|
-
max-height: 32rem;
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
.dc-dataset-search--clear-all-filters {
|
|
1503
|
-
width: 100%;
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
.dkan-dataset-search {
|
|
1507
|
-
position: relative;
|
|
1508
|
-
}
|
|
1509
|
-
|
|
1510
|
-
.dkan-dataset-search input {
|
|
1511
|
-
min-width: 100%;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
@media only screen and (width >= 544px) {
|
|
1515
|
-
.dkan-dataset-search input {
|
|
1516
|
-
padding-left: 32px;
|
|
1517
|
-
}
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
.dkan-dataset-search .ds-c-field__before {
|
|
1521
|
-
top: 12px;
|
|
1522
|
-
left: 16px;
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
1854
|
ul.dc-c-resource-full-width {
|
|
1526
1855
|
width: 100%;
|
|
1527
1856
|
}
|
|
@@ -1595,8 +1924,7 @@ ul.dc-c-resource-full-width {
|
|
|
1595
1924
|
|
|
1596
1925
|
:root {
|
|
1597
1926
|
--mobile-nav-animation-time: 1s;
|
|
1598
|
-
--
|
|
1599
|
-
--main-nav-height: 100px;
|
|
1927
|
+
--main-nav-height: 6.25rem;
|
|
1600
1928
|
--header-bg-color: var(--color-primary);
|
|
1601
1929
|
--header-bg-image: linear-gradient(90deg, var(--color-primary-darkest) 10%, var(--color-primary) 90%);
|
|
1602
1930
|
--header-nav-link--color: var(--color-white);
|
|
@@ -1610,7 +1938,7 @@ ul.dc-c-resource-full-width {
|
|
|
1610
1938
|
}
|
|
1611
1939
|
|
|
1612
1940
|
.dkan-c-main-navigation > div > div {
|
|
1613
|
-
height: var(--main-nav-height);
|
|
1941
|
+
min-height: var(--main-nav-height);
|
|
1614
1942
|
}
|
|
1615
1943
|
|
|
1616
1944
|
.dkan-c-header .dkan-c-main-navigation {
|