@civicactions/cmsds-open-data-components 4.1.0 → 4.1.1
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 +867 -506
- package/dist/main.css.map +1 -1
- package/dist/main.js +4263 -3597
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +143 -102
- 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,248 @@
|
|
|
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 a.ds-c-button[href$=".pdf"], .dc-c-search-list-item a.ds-c-button[href$=".csv"], .dc-c-search-list-item a.ds-c-button[href$=".xlsx"], .dc-c-search-list-item a.ds-c-button[href$=".zip"] {
|
|
192
|
+
position: relative;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.dc-c-search-list-item a.ds-c-button[href$=".pdf"]:after, .dc-c-search-list-item a.ds-c-button[href$=".csv"]:after, .dc-c-search-list-item a.ds-c-button[href$=".xlsx"]:after, .dc-c-search-list-item a.ds-c-button[href$=".zip"]:after {
|
|
196
|
+
width: 16px;
|
|
197
|
+
height: 16px;
|
|
198
|
+
margin-left: 5px;
|
|
199
|
+
font-family: "Font Awesome 6 Pro", sans-serif;
|
|
200
|
+
font-weight: lighter;
|
|
201
|
+
display: inline-block;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.dc-c-search-list-item a.ds-c-button[href$=".pdf"]:after {
|
|
205
|
+
content: "";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.dc-c-search-list-item a.ds-c-button[href$=".csv"]:after {
|
|
209
|
+
content: "";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.dc-c-search-list-item a.ds-c-button[href$=".xlsx"]:after {
|
|
213
|
+
content: "";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.dc-c-search-list-item a.ds-c-button[href$=".zip"]:after {
|
|
217
|
+
content: "";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.dc-c-search-list-item .ds-c-button {
|
|
221
|
+
text-decoration: none !important;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.dc-c-search-list-item .ds-c-button svg, .dc-c-search-list-item .ds-c-button:visited svg {
|
|
225
|
+
fill: var(--color-white);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper {
|
|
229
|
+
cursor: not-allowed;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link {
|
|
233
|
+
pointer-events: none;
|
|
234
|
+
color: #757575;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.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 {
|
|
238
|
+
color: #757575;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.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 {
|
|
242
|
+
fill: #757575;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.dc-c-search-list-item .dkan-disabled-link-wrapper .dkan-disabled-link svg {
|
|
246
|
+
fill: #757575 !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.dc-c-search-list-item .theme-list {
|
|
250
|
+
display: inline-block;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.dc-c-search-list-item .theme-list li {
|
|
254
|
+
letter-spacing: .75px;
|
|
255
|
+
color: #fff;
|
|
256
|
+
margin-bottom: 4px;
|
|
257
|
+
margin-right: 8px;
|
|
258
|
+
padding: 3px 10px;
|
|
259
|
+
text-decoration: none;
|
|
260
|
+
display: inline-block;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.dc-c-search-list-item .theme-list li a {
|
|
264
|
+
color: #fff;
|
|
265
|
+
text-decoration: none !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.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 {
|
|
269
|
+
outline-offset: 12px;
|
|
270
|
+
background: unset;
|
|
271
|
+
text-decoration: underline !important;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.dc-c-search-list-item .dataset-date-item {
|
|
275
|
+
display: inline-block;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.dataset-date .dataset-date-item {
|
|
279
|
+
white-space: nowrap;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.dataset-date .dataset-date-item > span {
|
|
283
|
+
line-height: 1.8rem;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.dataset-date .dataset-date-item .ds-c-tooltip__container {
|
|
287
|
+
width: 20px;
|
|
288
|
+
display: inline-block;
|
|
289
|
+
position: relative;
|
|
290
|
+
bottom: 10px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.dataset-date > .bullet-point {
|
|
294
|
+
font-size: 1.2rem;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
@media screen and (width <= 543px) {
|
|
298
|
+
.dataset-date .bullet-point {
|
|
299
|
+
display: none;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.dkan-dataset-search {
|
|
304
|
+
position: relative;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@media only screen and (width >= 544px) {
|
|
308
|
+
.dkan-dataset-search input {
|
|
309
|
+
padding-left: 32px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@media only screen and (width <= 544px) {
|
|
314
|
+
.dkan-dataset-search div.--alt-style input {
|
|
315
|
+
--text-input__border-radius: 50px;
|
|
316
|
+
--text-input__border-color: #c6b7b7;
|
|
317
|
+
height: 61px;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.dkan-dataset-search .dc-c-search-button-mobile {
|
|
322
|
+
z-index: 1000;
|
|
323
|
+
border-top-left-radius: 0;
|
|
324
|
+
border-bottom-left-radius: 0;
|
|
325
|
+
height: 3.563rem;
|
|
326
|
+
position: absolute;
|
|
327
|
+
top: 2px;
|
|
328
|
+
right: 18px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.dkan-dataset-search--facet-container ul {
|
|
332
|
+
padding-left: 0;
|
|
333
|
+
list-style: none;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.dkan-dataset-search--clear-all-filters {
|
|
337
|
+
width: 100%;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.dc-c-search-list-item li a svg, .dc-c-search-list-item li span svg {
|
|
341
|
+
fill: var(--link__color);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.dc-c-search-list-item li a:visited svg {
|
|
345
|
+
fill: var(--link__color--visited);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.dc-dataset-search-list {
|
|
349
|
+
list-style: none;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.dc-search-header {
|
|
353
|
+
display: relative;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.dc-search-header:after {
|
|
357
|
+
content: "";
|
|
358
|
+
background-color: var(--color-primary-light);
|
|
359
|
+
width: 48px;
|
|
360
|
+
height: 4px;
|
|
361
|
+
margin: 16px 0;
|
|
362
|
+
display: block;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.dataset-results-count {
|
|
366
|
+
font-weight: bold;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.dkan-dataset-search--facet-container .ds-c-accordion__content {
|
|
370
|
+
max-height: 32rem;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.dc-dataset-search--clear-all-filters {
|
|
374
|
+
width: 100%;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.dkan-dataset-search {
|
|
378
|
+
align-items: flex-start;
|
|
379
|
+
position: relative;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.dkan-dataset-search input {
|
|
383
|
+
min-width: 100%;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@media only screen and (width >= 544px) {
|
|
387
|
+
.dkan-dataset-search input {
|
|
388
|
+
padding-left: 32px;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.dkan-dataset-search .ds-c-field__before {
|
|
393
|
+
top: 12px;
|
|
394
|
+
left: 16px;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.dkan-dataset-search .ds-c-inline-error {
|
|
398
|
+
max-width: none;
|
|
399
|
+
}
|
|
400
|
+
|
|
159
401
|
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button span {
|
|
160
402
|
border-bottom: 2px solid #0000;
|
|
161
403
|
}
|
|
@@ -420,6 +662,10 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
420
662
|
display: inherit;
|
|
421
663
|
}
|
|
422
664
|
|
|
665
|
+
.dc-c-hero .ds-c-inline-error {
|
|
666
|
+
max-width: none;
|
|
667
|
+
}
|
|
668
|
+
|
|
423
669
|
.dc-c-list-item {
|
|
424
670
|
list-style: none;
|
|
425
671
|
}
|
|
@@ -468,245 +714,154 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
468
714
|
fill: var(--color-white);
|
|
469
715
|
}
|
|
470
716
|
|
|
471
|
-
.
|
|
472
|
-
|
|
717
|
+
.dkan-manage-columns-wrapper .fa-columns:before {
|
|
718
|
+
font-size: .75em !important;
|
|
473
719
|
}
|
|
474
720
|
|
|
475
|
-
.
|
|
476
|
-
|
|
721
|
+
dialog.dkan-manage-columns-dialog {
|
|
722
|
+
width: 100%;
|
|
723
|
+
height: 80vh;
|
|
477
724
|
}
|
|
478
725
|
|
|
479
|
-
.
|
|
480
|
-
|
|
726
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
727
|
+
min-width: 768px;
|
|
728
|
+
padding: 0;
|
|
481
729
|
}
|
|
482
730
|
|
|
483
|
-
.
|
|
484
|
-
padding
|
|
731
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
732
|
+
padding: 24px;
|
|
485
733
|
}
|
|
486
734
|
|
|
487
|
-
.
|
|
488
|
-
|
|
735
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
736
|
+
gap: 0;
|
|
737
|
+
max-height: 350px;
|
|
738
|
+
margin: 0;
|
|
739
|
+
padding: 0;
|
|
740
|
+
list-style: none;
|
|
741
|
+
overflow-y: auto;
|
|
489
742
|
}
|
|
490
743
|
|
|
491
|
-
.
|
|
492
|
-
|
|
744
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list li {
|
|
745
|
+
cursor: pointer;
|
|
493
746
|
}
|
|
494
747
|
|
|
495
|
-
.
|
|
496
|
-
|
|
748
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .ds-c-choice-wrapper {
|
|
749
|
+
margin-top: 0;
|
|
497
750
|
}
|
|
498
751
|
|
|
499
|
-
.
|
|
500
|
-
|
|
752
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button {
|
|
753
|
+
background: none;
|
|
754
|
+
border: none;
|
|
501
755
|
}
|
|
502
756
|
|
|
503
|
-
.
|
|
504
|
-
|
|
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;
|
|
757
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button.grabbed {
|
|
758
|
+
background-color: var(--color-primary-lighter);
|
|
530
759
|
}
|
|
531
760
|
|
|
532
|
-
|
|
533
|
-
|
|
761
|
+
@media screen and (width <= 1023px) {
|
|
762
|
+
.dkan-manage-columns-wrapper .fa-columns:before {
|
|
763
|
+
font-size: 1.4em !important;
|
|
764
|
+
}
|
|
534
765
|
}
|
|
535
766
|
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
bottom: 10px;
|
|
541
|
-
}
|
|
767
|
+
@media screen and (width <= 767px) {
|
|
768
|
+
dialog.dkan-manage-columns-dialog {
|
|
769
|
+
height: 100%;
|
|
770
|
+
}
|
|
542
771
|
|
|
543
|
-
.
|
|
544
|
-
|
|
545
|
-
|
|
772
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
773
|
+
width: 100%;
|
|
774
|
+
min-width: auto;
|
|
775
|
+
height: 100%;
|
|
776
|
+
margin-top: 0;
|
|
777
|
+
}
|
|
546
778
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
display:
|
|
779
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__body > div:not(.ds-c-dialog__actions) {
|
|
780
|
+
flex-direction: column;
|
|
781
|
+
display: flex;
|
|
550
782
|
}
|
|
551
|
-
}
|
|
552
783
|
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
padding-left: 32px;
|
|
784
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
785
|
+
max-height: calc(100vh - 435px);
|
|
556
786
|
}
|
|
557
|
-
}
|
|
558
787
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
788
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__actions {
|
|
789
|
+
background-color: #fff;
|
|
790
|
+
padding-top: 16px;
|
|
791
|
+
position: absolute;
|
|
792
|
+
bottom: 0;
|
|
564
793
|
}
|
|
565
794
|
}
|
|
566
795
|
|
|
567
|
-
.dkan-
|
|
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;
|
|
796
|
+
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
797
|
+
font-size: .75em !important;
|
|
575
798
|
}
|
|
576
799
|
|
|
577
|
-
.dkan-dataset-
|
|
578
|
-
|
|
579
|
-
list-style: none;
|
|
800
|
+
dialog.dkan-full-screen-dataset-dialog {
|
|
801
|
+
height: 100vh;
|
|
580
802
|
}
|
|
581
803
|
|
|
582
|
-
.dkan-dataset-
|
|
804
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window {
|
|
805
|
+
flex-direction: column;
|
|
583
806
|
width: 100%;
|
|
807
|
+
max-width: 100%;
|
|
808
|
+
height: 100%;
|
|
809
|
+
margin: 0;
|
|
810
|
+
display: flex;
|
|
584
811
|
}
|
|
585
812
|
|
|
586
|
-
.
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
.dc-c-search-list-item li a:visited svg {
|
|
591
|
-
fill: var(--link__color--visited);
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
:root {
|
|
595
|
-
--su-color--blue-dark: #036;
|
|
596
|
-
--su-color--brown: #884c00;
|
|
597
|
-
--su-color--green-dark: #007641;
|
|
598
|
-
--su-color--green-muted: #277564;
|
|
599
|
-
--su-color--orange-dark: #d10000;
|
|
600
|
-
--su-color--orange-light: #d100001a;
|
|
601
|
-
--su-color--red-dark: #970000;
|
|
602
|
-
--su-color--red-light: #d300001a;
|
|
603
|
-
--su-color--red: #d30000;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.swagger-ui.swagger-ui {
|
|
607
|
-
font-family: inherit;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.swagger-ui.swagger-ui .opblock .opblock-summary-method {
|
|
611
|
-
color: #333;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.swagger-ui.swagger-ui .opblock.opblock-delete {
|
|
615
|
-
background-color: var(--su-color--red-light);
|
|
616
|
-
border-color: var(--su-color--red);
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
.swagger-ui.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
|
620
|
-
color: #fff;
|
|
621
|
-
background-color: var(--su-color--red-dark);
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.swagger-ui.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
|
625
|
-
background-color: var(--su-color--brown);
|
|
626
|
-
color: #fff;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
.swagger-ui.swagger-ui .parameter__name.required span, .swagger-ui.swagger-ui .parameter__name.required:after {
|
|
630
|
-
color: var(--su-color--red);
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.swagger-ui.swagger-ui .btn.cancel {
|
|
634
|
-
border-color: var(--su-color--red);
|
|
635
|
-
color: var(--su-color--red);
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
.swagger-ui.swagger-ui .btn.authorize {
|
|
639
|
-
border-color: var(--su-color--green-muted);
|
|
640
|
-
background-color: var(--su-color--green-muted);
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
.swagger-ui.swagger-ui .btn.execute {
|
|
644
|
-
background-color: var(--su-color--blue-dark);
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
.swagger-ui.swagger-ui .information-container span.version-stamp {
|
|
648
|
-
color: #fff;
|
|
649
|
-
vertical-align: super;
|
|
650
|
-
background-color: #666;
|
|
651
|
-
border-radius: 67px;
|
|
652
|
-
margin: 0 0 0 5px;
|
|
653
|
-
padding: 2px 8px;
|
|
654
|
-
font-size: 14px;
|
|
655
|
-
display: inline-block;
|
|
656
|
-
position: relative;
|
|
657
|
-
top: -5px;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.swagger-ui.swagger-ui .information-container span.version-stamp.version-stamp--openapi {
|
|
661
|
-
background-color: #005830;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.swagger-ui.swagger-ui .information-container a {
|
|
665
|
-
color: #036;
|
|
813
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__header {
|
|
814
|
+
flex: 0;
|
|
815
|
+
width: 100%;
|
|
666
816
|
}
|
|
667
817
|
|
|
668
|
-
.
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
max-width: 100%;
|
|
672
|
-
top: 1.5em;
|
|
818
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body {
|
|
819
|
+
width: 100%;
|
|
820
|
+
height: 100%;
|
|
673
821
|
}
|
|
674
822
|
|
|
675
|
-
.
|
|
676
|
-
|
|
823
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] {
|
|
824
|
+
flex-direction: column;
|
|
825
|
+
height: 100%;
|
|
826
|
+
display: flex;
|
|
677
827
|
}
|
|
678
828
|
|
|
679
|
-
.
|
|
680
|
-
|
|
829
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode {
|
|
830
|
+
flex-direction: column;
|
|
831
|
+
width: 100%;
|
|
832
|
+
height: 100%;
|
|
833
|
+
display: flex;
|
|
834
|
+
overflow: hidden;
|
|
681
835
|
}
|
|
682
836
|
|
|
683
|
-
.
|
|
684
|
-
|
|
837
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode > div {
|
|
838
|
+
flex: 0;
|
|
839
|
+
width: 100%;
|
|
840
|
+
min-height: auto;
|
|
841
|
+
margin: 8px 0 !important;
|
|
685
842
|
}
|
|
686
843
|
|
|
687
|
-
.
|
|
688
|
-
|
|
844
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode .dc-c-datatable-wrapper {
|
|
845
|
+
flex: 1;
|
|
846
|
+
width: 100%;
|
|
847
|
+
height: 100%;
|
|
689
848
|
}
|
|
690
849
|
|
|
691
|
-
.
|
|
692
|
-
|
|
850
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode ~ div {
|
|
851
|
+
flex: 0;
|
|
852
|
+
width: 100%;
|
|
693
853
|
}
|
|
694
854
|
|
|
695
|
-
.
|
|
696
|
-
|
|
697
|
-
padding-right: 0;
|
|
855
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window form {
|
|
856
|
+
max-width: 1024px;
|
|
698
857
|
}
|
|
699
858
|
|
|
700
|
-
@media (width <=
|
|
701
|
-
.
|
|
702
|
-
|
|
859
|
+
@media screen and (width <= 1023px) {
|
|
860
|
+
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
861
|
+
font-size: 1.4em !important;
|
|
703
862
|
}
|
|
704
863
|
}
|
|
705
864
|
|
|
706
|
-
.ds-c-button.display-settings-font {
|
|
707
|
-
font: inherit;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
865
|
.dc-c-datatable {
|
|
711
866
|
border-spacing: 0;
|
|
712
867
|
width: 100%;
|
|
@@ -865,198 +1020,274 @@ div.dc-c-datadictionary-table thead.dc-thead--truncated th > div > div, div.dc-c
|
|
|
865
1020
|
}
|
|
866
1021
|
}
|
|
867
1022
|
|
|
868
|
-
.dkan-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
width: 100%;
|
|
874
|
-
height: 80vh;
|
|
1023
|
+
.dkan-filter-dataset-control {
|
|
1024
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 42px;
|
|
1025
|
+
align-items: center;
|
|
1026
|
+
gap: 1rem;
|
|
1027
|
+
display: grid;
|
|
875
1028
|
}
|
|
876
1029
|
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
1030
|
+
button.dkan-delete-dataset-filter-button {
|
|
1031
|
+
width: 32px;
|
|
1032
|
+
height: 32px;
|
|
1033
|
+
border-radius: 50% !important;
|
|
880
1034
|
}
|
|
881
1035
|
|
|
882
|
-
|
|
883
|
-
|
|
1036
|
+
@media screen and (width <= 767px) {
|
|
1037
|
+
button.dkan-delete-dataset-filter-button {
|
|
1038
|
+
margin-bottom: 4px;
|
|
1039
|
+
margin-left: 16px !important;
|
|
1040
|
+
}
|
|
884
1041
|
}
|
|
885
1042
|
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
1043
|
+
.dkan-clear-dataset-filters-button {
|
|
1044
|
+
color: var(--color-primary);
|
|
1045
|
+
text-decoration: underline;
|
|
1046
|
+
background-color: #0000 !important;
|
|
1047
|
+
border: 0 !important;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.dkan-clear-dataset-filters-button:hover, .dkan-clear-dataset-filters-button:focus {
|
|
1051
|
+
text-decoration: none;
|
|
1052
|
+
color: var(--color-primary) !important;
|
|
1053
|
+
background-color: #0000 !important;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.dkan-filter-dataset-wrapper .fa-filter:before {
|
|
1057
|
+
font-size: .75em !important;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
dialog.dkan-filter-dataset-dialog {
|
|
1061
|
+
width: 100%;
|
|
1062
|
+
height: 80vh;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window {
|
|
1066
|
+
min-width: 768px;
|
|
890
1067
|
padding: 0;
|
|
891
|
-
list-style: none;
|
|
892
|
-
overflow-y: auto;
|
|
893
1068
|
}
|
|
894
1069
|
|
|
895
|
-
dialog.dkan-
|
|
896
|
-
|
|
1070
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
1071
|
+
padding: 24px 24px 10px;
|
|
897
1072
|
}
|
|
898
1073
|
|
|
899
|
-
dialog.dkan-
|
|
900
|
-
|
|
1074
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-label {
|
|
1075
|
+
border: 0 !important;
|
|
1076
|
+
width: 0 !important;
|
|
1077
|
+
height: 0 !important;
|
|
1078
|
+
margin: 0 !important;
|
|
1079
|
+
padding: 0 !important;
|
|
1080
|
+
display: block !important;
|
|
1081
|
+
overflow: hidden !important;
|
|
901
1082
|
}
|
|
902
1083
|
|
|
903
|
-
dialog.dkan-
|
|
904
|
-
|
|
905
|
-
border: none;
|
|
1084
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
1085
|
+
margin: 0;
|
|
906
1086
|
}
|
|
907
1087
|
|
|
908
|
-
|
|
909
|
-
|
|
1088
|
+
.dkan-filter-dataset-controls-header {
|
|
1089
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 42px;
|
|
1090
|
+
align-items: center;
|
|
1091
|
+
gap: 1rem;
|
|
1092
|
+
display: grid;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.dkan-filter-dataset-controls-header-gutter {
|
|
1096
|
+
width: 42px;
|
|
910
1097
|
}
|
|
911
1098
|
|
|
912
1099
|
@media screen and (width <= 1023px) {
|
|
913
|
-
.dkan-
|
|
1100
|
+
.dkan-filter-dataset-wrapper .fa-filter:before {
|
|
914
1101
|
font-size: 1.4em !important;
|
|
915
1102
|
}
|
|
916
1103
|
}
|
|
917
1104
|
|
|
918
1105
|
@media screen and (width <= 767px) {
|
|
919
|
-
dialog.dkan-
|
|
1106
|
+
dialog.dkan-filter-dataset-dialog {
|
|
920
1107
|
height: 100%;
|
|
921
1108
|
}
|
|
922
1109
|
|
|
923
|
-
dialog.dkan-
|
|
1110
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window {
|
|
1111
|
+
flex-direction: column;
|
|
924
1112
|
width: 100%;
|
|
925
1113
|
min-width: auto;
|
|
926
1114
|
height: 100%;
|
|
927
1115
|
margin-top: 0;
|
|
1116
|
+
display: flex;
|
|
928
1117
|
}
|
|
929
1118
|
|
|
930
|
-
dialog.dkan-
|
|
1119
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .dkan-filter-dataset-controls-header {
|
|
1120
|
+
display: none;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
1124
|
+
flex: 0;
|
|
1125
|
+
width: 100%;
|
|
1126
|
+
padding: 24px 16px 10px;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body, dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] {
|
|
931
1130
|
flex-direction: column;
|
|
1131
|
+
flex: 1;
|
|
1132
|
+
width: 100%;
|
|
1133
|
+
height: 100%;
|
|
932
1134
|
display: flex;
|
|
1135
|
+
overflow: hidden;
|
|
933
1136
|
}
|
|
934
1137
|
|
|
935
|
-
dialog.dkan-
|
|
936
|
-
|
|
1138
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div {
|
|
1139
|
+
flex-direction: column;
|
|
1140
|
+
height: 100%;
|
|
1141
|
+
display: flex;
|
|
937
1142
|
}
|
|
938
1143
|
|
|
939
|
-
dialog.dkan-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
position: absolute;
|
|
943
|
-
bottom: 0;
|
|
1144
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div > * {
|
|
1145
|
+
flex: 0;
|
|
1146
|
+
width: 100%;
|
|
944
1147
|
}
|
|
945
|
-
}
|
|
946
1148
|
|
|
947
|
-
.dkan-
|
|
948
|
-
|
|
949
|
-
|
|
1149
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] > div .dkan-filter-dataset-form-container {
|
|
1150
|
+
flex: 1;
|
|
1151
|
+
height: 100%;
|
|
1152
|
+
overflow: hidden;
|
|
1153
|
+
}
|
|
950
1154
|
|
|
951
|
-
dialog.dkan-
|
|
952
|
-
|
|
953
|
-
|
|
1155
|
+
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 {
|
|
1156
|
+
flex-direction: column;
|
|
1157
|
+
width: 100%;
|
|
1158
|
+
height: 100%;
|
|
1159
|
+
display: flex;
|
|
1160
|
+
overflow: hidden;
|
|
1161
|
+
}
|
|
954
1162
|
|
|
955
|
-
dialog.dkan-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
1163
|
+
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 {
|
|
1164
|
+
flex: 1;
|
|
1165
|
+
height: 100%;
|
|
1166
|
+
overflow: auto;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
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 {
|
|
1170
|
+
background-color: #f2f2f2;
|
|
1171
|
+
flex-wrap: wrap;
|
|
1172
|
+
align-items: flex-end;
|
|
1173
|
+
gap: 0;
|
|
1174
|
+
display: flex;
|
|
1175
|
+
border: 0 !important;
|
|
1176
|
+
max-width: none !important;
|
|
1177
|
+
margin-block-start: 16px !important;
|
|
1178
|
+
padding-block: 16px !important;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
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) {
|
|
1182
|
+
width: calc(100% - 48px);
|
|
1183
|
+
max-width: none !important;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
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) {
|
|
1187
|
+
margin-bottom: 16px;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
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 {
|
|
1191
|
+
width: auto !important;
|
|
1192
|
+
max-width: none !important;
|
|
1193
|
+
height: auto !important;
|
|
1194
|
+
overflow: visible !important;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
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 {
|
|
1198
|
+
max-width: none !important;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
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 {
|
|
1202
|
+
flex: 0;
|
|
1203
|
+
width: 100%;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
1207
|
+
border-top: 1px solid #d9d9d9;
|
|
1208
|
+
flex: 0;
|
|
1209
|
+
width: 100%;
|
|
1210
|
+
}
|
|
962
1211
|
}
|
|
963
1212
|
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
1213
|
+
.dkan-filter-chip {
|
|
1214
|
+
background: var(--filter-chip__background-color);
|
|
1215
|
+
border: solid 1px var(--filter-chip__border-color);
|
|
1216
|
+
border-radius: var(--filter-chip__border-radius);
|
|
1217
|
+
color: var(--filter-chip__color);
|
|
1218
|
+
white-space: nowrap;
|
|
967
1219
|
}
|
|
968
1220
|
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
height: 100%;
|
|
1221
|
+
.dkan-filter-chip .fa.fa-x {
|
|
1222
|
+
color: var(--filter-chip-icon__color);
|
|
972
1223
|
}
|
|
973
1224
|
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
height: 100%;
|
|
977
|
-
display: flex;
|
|
1225
|
+
.dkan-table-density-button {
|
|
1226
|
+
border: solid 1px var(--color-gray-light);
|
|
978
1227
|
}
|
|
979
1228
|
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
height: 100%;
|
|
984
|
-
display: flex;
|
|
985
|
-
overflow: hidden;
|
|
1229
|
+
.dkan-table-density-button svg {
|
|
1230
|
+
width: 22px;
|
|
1231
|
+
height: auto;
|
|
986
1232
|
}
|
|
987
1233
|
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
width: 100%;
|
|
991
|
-
min-height: auto;
|
|
992
|
-
margin: 8px 0 !important;
|
|
1234
|
+
.dkan-table-density-button svg > path {
|
|
1235
|
+
fill: var(--color-gray-light);
|
|
993
1236
|
}
|
|
994
1237
|
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
width: 100%;
|
|
998
|
-
height: 100%;
|
|
1238
|
+
.dkan-table-density-button.active {
|
|
1239
|
+
border-color: var(--color-primary);
|
|
999
1240
|
}
|
|
1000
1241
|
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
width: 100%;
|
|
1242
|
+
.dkan-table-density-button.active svg > path {
|
|
1243
|
+
fill: var(--color-primary);
|
|
1004
1244
|
}
|
|
1005
1245
|
|
|
1006
|
-
|
|
1007
|
-
|
|
1246
|
+
.dkan-filter-dataset-toolbar-button {
|
|
1247
|
+
color: var(--color-primary);
|
|
1008
1248
|
}
|
|
1009
1249
|
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
font-size: 1.4em !important;
|
|
1013
|
-
}
|
|
1250
|
+
.dkan-filter-dataset-toolbar-button span {
|
|
1251
|
+
text-decoration: underline;
|
|
1014
1252
|
}
|
|
1015
1253
|
|
|
1016
|
-
.dkan-filter-dataset-
|
|
1017
|
-
|
|
1018
|
-
align-items: center;
|
|
1019
|
-
gap: 1rem;
|
|
1020
|
-
display: grid;
|
|
1254
|
+
.dkan-filter-dataset-toolbar-button:hover span, .dkan-filter-dataset-toolbar-button:focus span {
|
|
1255
|
+
text-decoration: none;
|
|
1021
1256
|
}
|
|
1022
1257
|
|
|
1023
|
-
.dkan-
|
|
1024
|
-
|
|
1025
|
-
height:
|
|
1258
|
+
.dkan-filter-dataset-toolbar-button .fa-chevron-up, .dkan-filter-dataset-toolbar-button .fa-chevron-down {
|
|
1259
|
+
font-size: 10px;
|
|
1260
|
+
line-height: normal;
|
|
1026
1261
|
}
|
|
1027
1262
|
|
|
1028
|
-
.dkan-
|
|
1029
|
-
|
|
1030
|
-
text-decoration: underline;
|
|
1031
|
-
background-color: #0000 !important;
|
|
1032
|
-
border: 0 !important;
|
|
1263
|
+
.dkan-filter-dataset-toolbar-button .fa-chevron-down, .dkan-filter-dataset-toolbar-button.dkan-data-table-display-settings-tooltip-open .fa-chevron-up {
|
|
1264
|
+
display: none;
|
|
1033
1265
|
}
|
|
1034
1266
|
|
|
1035
|
-
.dkan-
|
|
1036
|
-
|
|
1037
|
-
color: var(--color-primary) !important;
|
|
1038
|
-
background-color: #0000 !important;
|
|
1267
|
+
.dkan-filter-dataset-toolbar-button.dkan-data-table-display-settings-tooltip-open .fa-chevron-down {
|
|
1268
|
+
display: block;
|
|
1039
1269
|
}
|
|
1040
1270
|
|
|
1041
|
-
.dkan-
|
|
1042
|
-
|
|
1271
|
+
.dkan-display-settings-wrapper .ds-c-tooltip {
|
|
1272
|
+
border-color: var(--color-gray-lighter);
|
|
1273
|
+
box-shadow: 0 0 3px 0 var(--color-gray-light);
|
|
1274
|
+
border-radius: 0;
|
|
1043
1275
|
}
|
|
1044
1276
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
height: 80vh;
|
|
1277
|
+
.dkan-display-settings-wrapper .ds-c-tooltip__arrow {
|
|
1278
|
+
display: none;
|
|
1048
1279
|
}
|
|
1049
1280
|
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
padding:
|
|
1281
|
+
.dkan-display-settings-wrapper .ds-c-tooltip__content {
|
|
1282
|
+
border-radius: 0;
|
|
1283
|
+
padding: 8px 24px;
|
|
1053
1284
|
}
|
|
1054
1285
|
|
|
1055
|
-
|
|
1056
|
-
|
|
1286
|
+
.dkan-display-settings-wrapper .ds-c-dropdown__button.ds-c-field {
|
|
1287
|
+
margin: 0;
|
|
1057
1288
|
}
|
|
1058
1289
|
|
|
1059
|
-
|
|
1290
|
+
.dkan-display-settings-wrapper .ds-c-dropdown__label {
|
|
1060
1291
|
border: 0 !important;
|
|
1061
1292
|
width: 0 !important;
|
|
1062
1293
|
height: 0 !important;
|
|
@@ -1066,248 +1297,427 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-label {
|
|
|
1066
1297
|
overflow: hidden !important;
|
|
1067
1298
|
}
|
|
1068
1299
|
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
.dkan-filter-dataset-controls-header {
|
|
1074
|
-
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 42px;
|
|
1300
|
+
.dkan-display-settings-wrapper .dkan-data-table-display-settings-row {
|
|
1301
|
+
grid-template-columns: 1fr 1fr;
|
|
1075
1302
|
align-items: center;
|
|
1076
|
-
gap:
|
|
1303
|
+
gap: .5rem;
|
|
1077
1304
|
display: grid;
|
|
1078
1305
|
}
|
|
1079
1306
|
|
|
1080
|
-
|
|
1081
|
-
|
|
1307
|
+
@media screen and (width <= 1023px) {
|
|
1308
|
+
.dkan-display-settings-wrapper .fa-sliders-h:before {
|
|
1309
|
+
font-size: 1.4em !important;
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.dkan-filter-dataset-toolbar {
|
|
1314
|
+
box-shadow: 0 0 3px #a6a6a6;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.dkan-filter-dataset-toolbar .dkan-filter-dataset-toolbar-button {
|
|
1318
|
+
color: var(--color-primary);
|
|
1319
|
+
border: 0;
|
|
1320
|
+
line-height: normal;
|
|
1321
|
+
text-decoration: none !important;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.dkan-filter-dataset-toolbar .dkan-filter-dataset-toolbar-button:focus {
|
|
1325
|
+
box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
|
|
1326
|
+
outline-offset: 3px;
|
|
1327
|
+
outline: 3px solid #0000;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.dkan-filter-dataset-toolbar .dkan-filter-dataset-toolbar-button > span {
|
|
1331
|
+
text-decoration: underline;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.dkan-filter-dataset-toolbar .dkan-filter-dataset-toolbar-button:hover > span, .dkan-filter-dataset-toolbar .dkan-filter-dataset-toolbar-button:focus > span {
|
|
1335
|
+
text-decoration: none;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.dkan-clear-all-filters-button:hover, .dkan-clear-all-filters-button:focus {
|
|
1339
|
+
color: var(--color-primary) !important;
|
|
1082
1340
|
}
|
|
1083
1341
|
|
|
1084
1342
|
@media screen and (width <= 1023px) {
|
|
1085
|
-
.dkan-
|
|
1086
|
-
|
|
1343
|
+
.dkan-dataset-toolbar-button-label {
|
|
1344
|
+
clip: rect(0, 0, 0, 0);
|
|
1345
|
+
word-wrap: normal;
|
|
1346
|
+
border: 0;
|
|
1347
|
+
width: 1px;
|
|
1348
|
+
height: 1px;
|
|
1349
|
+
padding: 0;
|
|
1350
|
+
position: absolute;
|
|
1351
|
+
overflow: hidden;
|
|
1087
1352
|
}
|
|
1088
1353
|
}
|
|
1089
1354
|
|
|
1090
1355
|
@media screen and (width <= 767px) {
|
|
1091
|
-
|
|
1092
|
-
|
|
1356
|
+
.dkan-data-table-toolbar-controls {
|
|
1357
|
+
border-top: 1px solid var(--color-gray-lighter);
|
|
1358
|
+
justify-content: space-between;
|
|
1093
1359
|
}
|
|
1360
|
+
}
|
|
1094
1361
|
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1362
|
+
:root {
|
|
1363
|
+
--su-color--blue-dark: #036;
|
|
1364
|
+
--su-color--brown: #884c00;
|
|
1365
|
+
--su-color--green-dark: #007641;
|
|
1366
|
+
--su-color--green-muted: #277564;
|
|
1367
|
+
--su-color--orange-dark: #d10000;
|
|
1368
|
+
--su-color--orange-light: #d100001a;
|
|
1369
|
+
--su-color--red-dark: #970000;
|
|
1370
|
+
--su-color--red-light: #d300001a;
|
|
1371
|
+
--su-color--red: #d30000;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.swagger-ui.swagger-ui {
|
|
1375
|
+
font-family: inherit;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
.swagger-ui.swagger-ui .opblock .opblock-summary-method {
|
|
1379
|
+
color: #333;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete {
|
|
1383
|
+
background-color: var(--su-color--red-light);
|
|
1384
|
+
border-color: var(--su-color--red);
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
|
1388
|
+
color: #fff;
|
|
1389
|
+
background-color: var(--su-color--red-dark);
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
.swagger-ui.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
|
1393
|
+
background-color: var(--su-color--brown);
|
|
1394
|
+
color: #fff;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.swagger-ui.swagger-ui .parameter__name.required span, .swagger-ui.swagger-ui .parameter__name.required:after {
|
|
1398
|
+
color: var(--su-color--red);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.swagger-ui.swagger-ui .btn.cancel {
|
|
1402
|
+
border-color: var(--su-color--red);
|
|
1403
|
+
color: var(--su-color--red);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.swagger-ui.swagger-ui .btn.authorize {
|
|
1407
|
+
border-color: var(--su-color--green-muted);
|
|
1408
|
+
background-color: var(--su-color--green-muted);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.swagger-ui.swagger-ui .btn.execute {
|
|
1412
|
+
background-color: var(--su-color--blue-dark);
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.swagger-ui.swagger-ui .information-container span.version-stamp {
|
|
1416
|
+
color: #fff;
|
|
1417
|
+
vertical-align: super;
|
|
1418
|
+
background-color: #666;
|
|
1419
|
+
border-radius: 67px;
|
|
1420
|
+
margin: 0 0 0 5px;
|
|
1421
|
+
padding: 2px 8px;
|
|
1422
|
+
font-size: 14px;
|
|
1423
|
+
display: inline-block;
|
|
1424
|
+
position: relative;
|
|
1425
|
+
top: -5px;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.swagger-ui.swagger-ui .information-container span.version-stamp.version-stamp--openapi {
|
|
1429
|
+
background-color: #005830;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.swagger-ui.swagger-ui .information-container a {
|
|
1433
|
+
color: var(--link__color);
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.swagger-ui.swagger-ui .information-container a:visited {
|
|
1437
|
+
color: var(--link__color--visited);
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.swagger-ui.swagger-ui .information-container a:hover {
|
|
1441
|
+
color: var(--link__color);
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.swagger-ui.swagger-ui .information-container a:active {
|
|
1445
|
+
color: var(--link__color--active);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.swagger-ui.swagger-ui .model-hint {
|
|
1449
|
+
word-wrap: break-word;
|
|
1450
|
+
white-space: normal;
|
|
1451
|
+
max-width: 100%;
|
|
1452
|
+
top: 1.5em;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.swagger-ui.swagger-ui section.models .model-container {
|
|
1456
|
+
overflow-x: auto;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.swagger-ui.swagger-ui table {
|
|
1460
|
+
min-width: 500px;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.swagger-ui.swagger-ui table.model tbody tr td:first-of-type {
|
|
1464
|
+
min-width: 174px;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
.swagger-ui.swagger-ui .table-container, .swagger-ui.swagger-ui .responses-inner {
|
|
1468
|
+
overflow: scroll;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.swagger-ui h2, .swagger-ui h3, .swagger-ui h4 {
|
|
1472
|
+
font-weight: bold !important;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.swagger-ui div.wrapper {
|
|
1476
|
+
padding-left: 0;
|
|
1477
|
+
padding-right: 0;
|
|
1478
|
+
}
|
|
1103
1479
|
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
padding: 24px 16px 10px;
|
|
1480
|
+
@media (width <= 544px) {
|
|
1481
|
+
.swagger-ui .opblock-tag-section .opblock-tag small {
|
|
1482
|
+
flex: initial;
|
|
1108
1483
|
}
|
|
1484
|
+
}
|
|
1109
1485
|
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
width: 100%;
|
|
1114
|
-
height: 100%;
|
|
1115
|
-
display: flex;
|
|
1116
|
-
overflow: hidden;
|
|
1117
|
-
}
|
|
1486
|
+
#api-docs-swagger-ui-plugin .model .property {
|
|
1487
|
+
color: #6b6b6b !important;
|
|
1488
|
+
}
|
|
1118
1489
|
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
display: flex;
|
|
1123
|
-
}
|
|
1490
|
+
#api-docs-swagger-ui-plugin pre.errors-wrapper {
|
|
1491
|
+
display: none;
|
|
1492
|
+
}
|
|
1124
1493
|
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
}
|
|
1494
|
+
#api-docs-swagger-ui-plugin .btn {
|
|
1495
|
+
transition: none;
|
|
1496
|
+
}
|
|
1129
1497
|
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
}
|
|
1498
|
+
#api-docs-swagger-ui-plugin .parameters input {
|
|
1499
|
+
color: #323a45;
|
|
1500
|
+
font-size: .8em;
|
|
1501
|
+
}
|
|
1135
1502
|
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
overflow: hidden;
|
|
1142
|
-
}
|
|
1503
|
+
#api-docs-swagger-ui-plugin .execute-wrapper, #api-docs-swagger-ui-plugin .btn-group {
|
|
1504
|
+
justify-content: flex-start;
|
|
1505
|
+
padding: 12px 24px 24px;
|
|
1506
|
+
display: flex;
|
|
1507
|
+
}
|
|
1143
1508
|
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
overflow: auto;
|
|
1148
|
-
}
|
|
1509
|
+
#api-docs-swagger-ui-plugin .wrapper > .block {
|
|
1510
|
+
padding: 0;
|
|
1511
|
+
}
|
|
1149
1512
|
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
}
|
|
1513
|
+
#api-docs-swagger-ui-plugin .wrapper:has( + .wrapper:last-child .block:empty) {
|
|
1514
|
+
display: flow-root;
|
|
1515
|
+
}
|
|
1154
1516
|
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
flex: 0;
|
|
1158
|
-
width: 100%;
|
|
1159
|
-
}
|
|
1517
|
+
#api-docs-swagger-ui-plugin .information-container svg:not(:root) {
|
|
1518
|
+
overflow: visible;
|
|
1160
1519
|
}
|
|
1161
1520
|
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
border
|
|
1166
|
-
color: var(--filter-chip__color);
|
|
1167
|
-
white-space: nowrap;
|
|
1521
|
+
#api-docs-swagger-ui-plugin .opblock {
|
|
1522
|
+
box-shadow: none;
|
|
1523
|
+
background: none;
|
|
1524
|
+
border: none;
|
|
1168
1525
|
}
|
|
1169
1526
|
|
|
1170
|
-
|
|
1171
|
-
|
|
1527
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section {
|
|
1528
|
+
margin-top: 25px;
|
|
1172
1529
|
}
|
|
1173
1530
|
|
|
1174
|
-
|
|
1175
|
-
|
|
1531
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-description-wrapper {
|
|
1532
|
+
margin: 0;
|
|
1533
|
+
padding: 16px;
|
|
1176
1534
|
}
|
|
1177
1535
|
|
|
1178
|
-
.
|
|
1179
|
-
|
|
1180
|
-
|
|
1536
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section, #api-docs-swagger-ui-plugin .opblock .responses-wrapper {
|
|
1537
|
+
background: #fff;
|
|
1538
|
+
border: 1px solid #d6d7d9;
|
|
1539
|
+
border-radius: 2px;
|
|
1540
|
+
margin-left: 24px;
|
|
1181
1541
|
}
|
|
1182
1542
|
|
|
1183
|
-
.
|
|
1184
|
-
|
|
1543
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header {
|
|
1544
|
+
box-shadow: none;
|
|
1545
|
+
background: #f6f9fd;
|
|
1546
|
+
padding: 16px;
|
|
1185
1547
|
}
|
|
1186
1548
|
|
|
1187
|
-
.
|
|
1188
|
-
|
|
1549
|
+
#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 {
|
|
1550
|
+
color: #0c2499;
|
|
1551
|
+
text-transform: uppercase;
|
|
1552
|
+
letter-spacing: 1px;
|
|
1553
|
+
cursor: default;
|
|
1554
|
+
font-size: .9em;
|
|
1555
|
+
font-weight: 800;
|
|
1556
|
+
line-height: 16px;
|
|
1189
1557
|
}
|
|
1190
1558
|
|
|
1191
|
-
.
|
|
1192
|
-
|
|
1559
|
+
#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 {
|
|
1560
|
+
background: none !important;
|
|
1561
|
+
display: none !important;
|
|
1193
1562
|
}
|
|
1194
1563
|
|
|
1195
|
-
|
|
1196
|
-
|
|
1564
|
+
#api-docs-swagger-ui-plugin .OperationTag:not(:first-of-type) .toggle-block {
|
|
1565
|
+
border-top: 1px solid #e1e2e3;
|
|
1197
1566
|
}
|
|
1198
1567
|
|
|
1199
|
-
.
|
|
1568
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button {
|
|
1569
|
+
width: 100%;
|
|
1570
|
+
font-weight: inherit;
|
|
1571
|
+
flex: auto;
|
|
1572
|
+
min-height: 64px;
|
|
1573
|
+
position: relative;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
#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 {
|
|
1200
1577
|
text-decoration: underline;
|
|
1201
1578
|
}
|
|
1202
1579
|
|
|
1203
|
-
.
|
|
1580
|
+
#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 {
|
|
1204
1581
|
text-decoration: none;
|
|
1205
1582
|
}
|
|
1206
1583
|
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1584
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button .toggle-block-title-description {
|
|
1585
|
+
color: #3b4151;
|
|
1586
|
+
margin-top: 1px;
|
|
1210
1587
|
}
|
|
1211
1588
|
|
|
1212
|
-
|
|
1213
|
-
|
|
1589
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button > svg {
|
|
1590
|
+
pointer-events: none;
|
|
1591
|
+
width: 20px;
|
|
1592
|
+
height: 20px;
|
|
1593
|
+
position: absolute;
|
|
1594
|
+
top: 50%;
|
|
1595
|
+
left: 0;
|
|
1596
|
+
transform: translateY(-50%);
|
|
1214
1597
|
}
|
|
1215
1598
|
|
|
1216
|
-
|
|
1217
|
-
|
|
1599
|
+
#api-docs-swagger-ui-plugin .OperationTag .wrapper:not(:last-child) .block-desktop {
|
|
1600
|
+
margin-bottom: 32px;
|
|
1218
1601
|
}
|
|
1219
1602
|
|
|
1220
|
-
|
|
1221
|
-
border
|
|
1222
|
-
|
|
1223
|
-
border-radius: 0;
|
|
1603
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container {
|
|
1604
|
+
border: 1px solid #eaebec;
|
|
1605
|
+
flex: 1;
|
|
1224
1606
|
}
|
|
1225
1607
|
|
|
1226
|
-
|
|
1227
|
-
|
|
1608
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1609
|
+
background: #6f7570;
|
|
1610
|
+
min-width: 80px;
|
|
1611
|
+
height: calc(100% - 8px);
|
|
1228
1612
|
}
|
|
1229
1613
|
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1614
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1615
|
+
color: #3b4151;
|
|
1616
|
+
word-break: break-word;
|
|
1617
|
+
max-width: 280px;
|
|
1233
1618
|
}
|
|
1234
1619
|
|
|
1235
|
-
|
|
1236
|
-
|
|
1620
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1621
|
+
box-shadow: none;
|
|
1622
|
+
color: #323a45;
|
|
1623
|
+
background: none;
|
|
1624
|
+
flex: 1;
|
|
1625
|
+
height: 48px;
|
|
1237
1626
|
}
|
|
1238
1627
|
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
margin: 0 !important;
|
|
1244
|
-
padding: 0 !important;
|
|
1245
|
-
display: block !important;
|
|
1246
|
-
overflow: hidden !important;
|
|
1628
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input:focus {
|
|
1629
|
+
box-shadow: none;
|
|
1630
|
+
background: none;
|
|
1631
|
+
border: none;
|
|
1247
1632
|
}
|
|
1248
1633
|
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1634
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1635
|
+
box-shadow: none;
|
|
1636
|
+
background: #0c249905;
|
|
1637
|
+
border: 1px solid #0c249914;
|
|
1638
|
+
width: 40px;
|
|
1639
|
+
height: 40px;
|
|
1254
1640
|
}
|
|
1255
1641
|
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
}
|
|
1642
|
+
#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 {
|
|
1643
|
+
background: #0c249914;
|
|
1644
|
+
border: 1px solid #0c24991f;
|
|
1260
1645
|
}
|
|
1261
1646
|
|
|
1262
|
-
|
|
1263
|
-
|
|
1647
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels {
|
|
1648
|
+
width: 100%;
|
|
1264
1649
|
}
|
|
1265
1650
|
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
border: 0;
|
|
1269
|
-
line-height: normal;
|
|
1270
|
-
text-decoration: none !important;
|
|
1651
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels > h3 {
|
|
1652
|
+
margin: 16px 0;
|
|
1271
1653
|
}
|
|
1272
1654
|
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1655
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box {
|
|
1656
|
+
background: #fff;
|
|
1657
|
+
border: 1px solid #eaebec;
|
|
1658
|
+
border-radius: 2px;
|
|
1659
|
+
width: 100%;
|
|
1277
1660
|
}
|
|
1278
1661
|
|
|
1279
|
-
|
|
1280
|
-
|
|
1662
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box {
|
|
1663
|
+
background-color: #fff;
|
|
1664
|
+
padding: 0;
|
|
1281
1665
|
}
|
|
1282
1666
|
|
|
1283
|
-
|
|
1284
|
-
|
|
1667
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control {
|
|
1668
|
+
border: none;
|
|
1285
1669
|
}
|
|
1286
1670
|
|
|
1287
|
-
|
|
1288
|
-
|
|
1671
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box {
|
|
1672
|
+
background: #fff;
|
|
1673
|
+
padding: 0;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box {
|
|
1677
|
+
background: #fff;
|
|
1678
|
+
border: 1px solid #eaebec;
|
|
1679
|
+
border-radius: 2px;
|
|
1680
|
+
width: 100%;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
#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 {
|
|
1684
|
+
font-weight: 600;
|
|
1685
|
+
display: block;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
#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 {
|
|
1689
|
+
display: none;
|
|
1289
1690
|
}
|
|
1290
1691
|
|
|
1291
1692
|
@media screen and (width <= 1023px) {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
word-wrap: normal;
|
|
1295
|
-
border: 0;
|
|
1296
|
-
width: 1px;
|
|
1297
|
-
height: 1px;
|
|
1298
|
-
padding: 0;
|
|
1299
|
-
position: absolute;
|
|
1300
|
-
overflow: hidden;
|
|
1693
|
+
#api-docs-swagger-ui-plugin .OperationSummary__try-it-out-btn {
|
|
1694
|
+
align-self: flex-start;
|
|
1301
1695
|
}
|
|
1302
1696
|
}
|
|
1303
1697
|
|
|
1304
1698
|
@media screen and (width <= 767px) {
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1699
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1700
|
+
width: calc(100% - 8px);
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1704
|
+
width: 100%;
|
|
1705
|
+
max-width: none;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1709
|
+
width: 100%;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1713
|
+
align-self: flex-end;
|
|
1308
1714
|
}
|
|
1309
1715
|
}
|
|
1310
1716
|
|
|
1717
|
+
.ds-c-button.display-settings-font {
|
|
1718
|
+
font: inherit;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1311
1721
|
.dc-c-breadcrumb__list {
|
|
1312
1722
|
margin-top: 0;
|
|
1313
1723
|
margin-bottom: 0;
|
|
@@ -1474,54 +1884,6 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
|
1474
1884
|
overflow-wrap: anywhere;
|
|
1475
1885
|
}
|
|
1476
1886
|
|
|
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
1887
|
ul.dc-c-resource-full-width {
|
|
1526
1888
|
width: 100%;
|
|
1527
1889
|
}
|
|
@@ -1595,8 +1957,7 @@ ul.dc-c-resource-full-width {
|
|
|
1595
1957
|
|
|
1596
1958
|
:root {
|
|
1597
1959
|
--mobile-nav-animation-time: 1s;
|
|
1598
|
-
--
|
|
1599
|
-
--main-nav-height: 100px;
|
|
1960
|
+
--main-nav-height: 6.25rem;
|
|
1600
1961
|
--header-bg-color: var(--color-primary);
|
|
1601
1962
|
--header-bg-image: linear-gradient(90deg, var(--color-primary-darkest) 10%, var(--color-primary) 90%);
|
|
1602
1963
|
--header-nav-link--color: var(--color-white);
|
|
@@ -1610,7 +1971,7 @@ ul.dc-c-resource-full-width {
|
|
|
1610
1971
|
}
|
|
1611
1972
|
|
|
1612
1973
|
.dkan-c-main-navigation > div > div {
|
|
1613
|
-
height: var(--main-nav-height);
|
|
1974
|
+
min-height: var(--main-nav-height);
|
|
1614
1975
|
}
|
|
1615
1976
|
|
|
1616
1977
|
.dkan-c-header .dkan-c-main-navigation {
|