dso-toolkit 84.1.0 → 85.0.0
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/CHANGELOG.md +13 -0
- package/dist/dso.css +308 -365
- package/dist/dso.css.map +1 -1
- package/dist/dso.min.css +1 -1
- package/dist/dso.min.css.map +1 -1
- package/package.json +8 -8
- package/src/components/alert/alert.mixins.scss +5 -16
- package/src/components/alert/alert.scss +5 -8
- package/src/components/attachments-counter/attachments-counter.scss +2 -5
- package/src/components/badge/badge.mixins.scss +2 -6
- package/src/components/banner/banner.mixins.scss +4 -12
- package/src/components/breadcrumbs/breadcrumbs.mixins.scss +5 -7
- package/src/components/button/button.mixins.scss +33 -46
- package/src/components/context/context.scss +7 -10
- package/src/components/definition-list/definition-list.scss +1 -4
- package/src/components/delete/delete.mixins.scss +4 -8
- package/src/components/description/description.scss +2 -4
- package/src/components/document-header/document-header.scss +7 -15
- package/src/components/dropdown-menu/dropdown-menu.mixins.scss +9 -12
- package/src/components/dropdown-menu/dropdown-menu.scss +14 -26
- package/src/components/footer/footer.scss +5 -8
- package/src/components/form/form-group-collection.scss +2 -4
- package/src/components/form-control/form-control.mixins.scss +15 -17
- package/src/components/form-group/form-group.scss +4 -7
- package/src/components/form-group/select/form-group-select.scss +6 -9
- package/src/components/grid/grid.scss +3 -10
- package/src/components/heading/heading.mixins.scss +2 -6
- package/src/components/highlight-box/highlight-box.mixins.scss +3 -9
- package/src/components/highlight-box/highlight-box.scss +3 -6
- package/src/components/info/info.scss +2 -5
- package/src/components/insert/insert.mixins.scss +2 -4
- package/src/components/label/label.mixins.scss +4 -12
- package/src/components/link/link.mixins.scss +23 -10
- package/src/components/link-list/link-list.mixins.scss +1 -4
- package/src/components/link-list/link-list.scss +3 -6
- package/src/components/modal/modal.mixins.scss +10 -19
- package/src/components/modal/modal.scss +4 -7
- package/src/components/navbar/navbar.mixins.scss +9 -15
- package/src/components/search-bar/search-bar.scss +21 -31
- package/src/components/shopping-cart/shopping-cart.scss +15 -25
- package/src/components/viewer-grid/viewer-grid.scss +1 -4
- package/src/di.scss +6 -10
- package/src/global/functions/contrast-color.functions.scss +14 -11
- package/src/global/mixins/set-colors.mixin.scss +40 -40
package/dist/dso.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--dso-toolkit-version: "
|
|
2
|
+
--dso-toolkit-version: "85.0.0";
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
@font-face {
|
|
@@ -232,12 +232,6 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
232
232
|
--link-color: currentColor;
|
|
233
233
|
--link-hover-color: currentColor;
|
|
234
234
|
--link-visited-color: currentColor;
|
|
235
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
236
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
237
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
238
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
239
|
-
background-color: #e4f1d4;
|
|
240
|
-
color: #191919;
|
|
241
235
|
}
|
|
242
236
|
.alert.alert-success a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
243
237
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -252,6 +246,12 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
252
246
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
253
247
|
}
|
|
254
248
|
.alert.alert-success {
|
|
249
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
250
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
251
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
252
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
253
|
+
background-color: #e4f1d4;
|
|
254
|
+
color: #191919;
|
|
255
255
|
border-color: var(--_dso-alert-success-border-color, #e4f1d4);
|
|
256
256
|
}
|
|
257
257
|
.alert.alert-success.dso-compact::before {
|
|
@@ -261,12 +261,6 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
261
261
|
--link-color: currentColor;
|
|
262
262
|
--link-hover-color: currentColor;
|
|
263
263
|
--link-visited-color: currentColor;
|
|
264
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
265
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
266
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
267
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
268
|
-
background-color: #f5d8dc;
|
|
269
|
-
color: #191919;
|
|
270
264
|
}
|
|
271
265
|
.alert.alert-error a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
272
266
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -281,6 +275,12 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
281
275
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
282
276
|
}
|
|
283
277
|
.alert.alert-error {
|
|
278
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
279
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
280
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
281
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
282
|
+
background-color: #f5d8dc;
|
|
283
|
+
color: #191919;
|
|
284
284
|
border-color: var(--_dso-alert-error-border-color, #f5d8dc);
|
|
285
285
|
}
|
|
286
286
|
.alert.alert-error.dso-compact::before {
|
|
@@ -290,12 +290,6 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
290
290
|
--link-color: currentColor;
|
|
291
291
|
--link-hover-color: currentColor;
|
|
292
292
|
--link-visited-color: currentColor;
|
|
293
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
294
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
295
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
296
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
297
|
-
background-color: #f8f6cc;
|
|
298
|
-
color: #191919;
|
|
299
293
|
}
|
|
300
294
|
.alert.alert-warning a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
301
295
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -310,6 +304,12 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
310
304
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
311
305
|
}
|
|
312
306
|
.alert.alert-warning {
|
|
307
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
308
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
309
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
310
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
311
|
+
background-color: #f8f6cc;
|
|
312
|
+
color: #191919;
|
|
313
313
|
border-color: var(--_dso-alert-warning-border-color, #f8f6cc);
|
|
314
314
|
}
|
|
315
315
|
.alert.alert-warning.dso-compact::before {
|
|
@@ -319,12 +319,6 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
319
319
|
--link-color: currentColor;
|
|
320
320
|
--link-hover-color: currentColor;
|
|
321
321
|
--link-visited-color: currentColor;
|
|
322
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
323
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
324
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
325
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
326
|
-
background-color: #e1ecf7;
|
|
327
|
-
color: #191919;
|
|
328
322
|
}
|
|
329
323
|
.alert.alert-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
330
324
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -339,6 +333,12 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
339
333
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
340
334
|
}
|
|
341
335
|
.alert.alert-info {
|
|
336
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
337
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
338
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
339
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
340
|
+
background-color: #e1ecf7;
|
|
341
|
+
color: #191919;
|
|
342
342
|
border-color: var(--_dso-alert-info-border-color, #e1ecf7);
|
|
343
343
|
}
|
|
344
344
|
.alert.alert-info.dso-compact::before {
|
|
@@ -382,6 +382,15 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
382
382
|
margin: 0;
|
|
383
383
|
overflow: visible;
|
|
384
384
|
text-transform: none;
|
|
385
|
+
}
|
|
386
|
+
.alert .dso-close[disabled] {
|
|
387
|
+
cursor: default;
|
|
388
|
+
}
|
|
389
|
+
.alert .dso-close::-moz-focus-inner {
|
|
390
|
+
border: 0;
|
|
391
|
+
padding: 0;
|
|
392
|
+
}
|
|
393
|
+
.alert .dso-close {
|
|
385
394
|
position: absolute;
|
|
386
395
|
inset-block-start: 3px;
|
|
387
396
|
inset-inline-end: 3px;
|
|
@@ -392,24 +401,14 @@ dso-action-list .dso-rich-content .h5 {
|
|
|
392
401
|
border: 0;
|
|
393
402
|
text-align: center;
|
|
394
403
|
}
|
|
395
|
-
.alert .dso-close[disabled] {
|
|
396
|
-
cursor: default;
|
|
397
|
-
}
|
|
398
|
-
.alert .dso-close::-moz-focus-inner {
|
|
399
|
-
border: 0;
|
|
400
|
-
padding: 0;
|
|
401
|
-
}
|
|
402
404
|
.alert .dso-close::before {
|
|
403
405
|
background: url("./di.svg#times-zwart") no-repeat center;
|
|
404
406
|
background-size: cover;
|
|
405
407
|
block-size: 24px;
|
|
406
|
-
vertical-align:
|
|
408
|
+
vertical-align: middle;
|
|
407
409
|
inline-size: 24px;
|
|
408
|
-
}
|
|
409
|
-
.alert .dso-close::before {
|
|
410
410
|
content: "";
|
|
411
411
|
display: inline-block;
|
|
412
|
-
vertical-align: middle;
|
|
413
412
|
}
|
|
414
413
|
.alert:not(.dso-compact)::before {
|
|
415
414
|
inset-block-start: 15px;
|
|
@@ -509,8 +508,6 @@ dso-alert a:active {
|
|
|
509
508
|
block-size: 24px;
|
|
510
509
|
vertical-align: top;
|
|
511
510
|
inline-size: 24px;
|
|
512
|
-
}
|
|
513
|
-
.dso-attachments::after {
|
|
514
511
|
content: "";
|
|
515
512
|
display: inline-block;
|
|
516
513
|
}
|
|
@@ -526,8 +523,6 @@ dso-alert a:active {
|
|
|
526
523
|
padding-block: 4px;
|
|
527
524
|
padding-inline: 8px;
|
|
528
525
|
text-align: center;
|
|
529
|
-
}
|
|
530
|
-
.dso-badge {
|
|
531
526
|
--_dso-alert-success-border-color: #39870c;
|
|
532
527
|
--_dso-alert-error-border-color: #ce3f51;
|
|
533
528
|
--_dso-alert-info-border-color: #6ca4d9;
|
|
@@ -535,9 +530,6 @@ dso-alert a:active {
|
|
|
535
530
|
--link-color: currentColor;
|
|
536
531
|
--link-hover-color: currentColor;
|
|
537
532
|
--link-visited-color: currentColor;
|
|
538
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
539
|
-
background-color: #666;
|
|
540
|
-
color: #fff;
|
|
541
533
|
}
|
|
542
534
|
.dso-badge a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
543
535
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -552,6 +544,9 @@ dso-alert a:active {
|
|
|
552
544
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
553
545
|
}
|
|
554
546
|
.dso-badge {
|
|
547
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
548
|
+
background-color: #666;
|
|
549
|
+
color: #fff;
|
|
555
550
|
border-color: #666;
|
|
556
551
|
}
|
|
557
552
|
.dso-badge.badge-info {
|
|
@@ -562,9 +557,6 @@ dso-alert a:active {
|
|
|
562
557
|
--link-color: currentColor;
|
|
563
558
|
--link-hover-color: currentColor;
|
|
564
559
|
--link-visited-color: currentColor;
|
|
565
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
566
|
-
background-color: #2b5780;
|
|
567
|
-
color: #fff;
|
|
568
560
|
}
|
|
569
561
|
.dso-badge.badge-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
570
562
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -579,6 +571,9 @@ dso-alert a:active {
|
|
|
579
571
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
580
572
|
}
|
|
581
573
|
.dso-badge.badge-info {
|
|
574
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
575
|
+
background-color: #2b5780;
|
|
576
|
+
color: #fff;
|
|
582
577
|
border-color: #2b5780;
|
|
583
578
|
}
|
|
584
579
|
.dso-badge.badge-primary {
|
|
@@ -589,9 +584,6 @@ dso-alert a:active {
|
|
|
589
584
|
--link-color: currentColor;
|
|
590
585
|
--link-hover-color: currentColor;
|
|
591
586
|
--link-visited-color: currentColor;
|
|
592
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
593
|
-
background-color: #275937;
|
|
594
|
-
color: #fff;
|
|
595
587
|
}
|
|
596
588
|
.dso-badge.badge-primary a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
597
589
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -606,6 +598,9 @@ dso-alert a:active {
|
|
|
606
598
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
607
599
|
}
|
|
608
600
|
.dso-badge.badge-primary {
|
|
601
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
602
|
+
background-color: #275937;
|
|
603
|
+
color: #fff;
|
|
609
604
|
border-color: #275937;
|
|
610
605
|
}
|
|
611
606
|
.dso-badge.badge-success {
|
|
@@ -616,9 +611,6 @@ dso-alert a:active {
|
|
|
616
611
|
--link-color: currentColor;
|
|
617
612
|
--link-hover-color: currentColor;
|
|
618
613
|
--link-visited-color: currentColor;
|
|
619
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
620
|
-
background-color: #39870c;
|
|
621
|
-
color: #fff;
|
|
622
614
|
}
|
|
623
615
|
.dso-badge.badge-success a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
624
616
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -633,6 +625,9 @@ dso-alert a:active {
|
|
|
633
625
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
634
626
|
}
|
|
635
627
|
.dso-badge.badge-success {
|
|
628
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
629
|
+
background-color: #39870c;
|
|
630
|
+
color: #fff;
|
|
636
631
|
border-color: #39870c;
|
|
637
632
|
}
|
|
638
633
|
.dso-badge.badge-warning {
|
|
@@ -643,12 +638,6 @@ dso-alert a:active {
|
|
|
643
638
|
--link-color: currentColor;
|
|
644
639
|
--link-hover-color: currentColor;
|
|
645
640
|
--link-visited-color: currentColor;
|
|
646
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
647
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
648
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
649
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
650
|
-
background-color: #dcd400;
|
|
651
|
-
color: #191919;
|
|
652
641
|
}
|
|
653
642
|
.dso-badge.badge-warning a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
654
643
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -663,6 +652,12 @@ dso-alert a:active {
|
|
|
663
652
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
664
653
|
}
|
|
665
654
|
.dso-badge.badge-warning {
|
|
655
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
656
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
657
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
658
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
659
|
+
background-color: #dcd400;
|
|
660
|
+
color: #191919;
|
|
666
661
|
border-color: #dcd400;
|
|
667
662
|
}
|
|
668
663
|
.dso-badge.badge-error {
|
|
@@ -673,9 +668,6 @@ dso-alert a:active {
|
|
|
673
668
|
--link-color: currentColor;
|
|
674
669
|
--link-hover-color: currentColor;
|
|
675
670
|
--link-visited-color: currentColor;
|
|
676
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
677
|
-
background-color: #ce3f51;
|
|
678
|
-
color: #fff;
|
|
679
671
|
}
|
|
680
672
|
.dso-badge.badge-error a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
681
673
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -690,6 +682,9 @@ dso-alert a:active {
|
|
|
690
682
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
691
683
|
}
|
|
692
684
|
.dso-badge.badge-error {
|
|
685
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
686
|
+
background-color: #ce3f51;
|
|
687
|
+
color: #fff;
|
|
693
688
|
border-color: #ce3f51;
|
|
694
689
|
}
|
|
695
690
|
.dso-badge.badge-outline {
|
|
@@ -699,8 +694,6 @@ dso-alert a:active {
|
|
|
699
694
|
--_dso-alert-warning-border-color: initial;
|
|
700
695
|
background-color: #fff;
|
|
701
696
|
color: #191919;
|
|
702
|
-
}
|
|
703
|
-
.dso-badge.badge-outline {
|
|
704
697
|
border-color: #191919;
|
|
705
698
|
}
|
|
706
699
|
.dso-badge.badge-attention {
|
|
@@ -711,9 +704,6 @@ dso-alert a:active {
|
|
|
711
704
|
--link-color: currentColor;
|
|
712
705
|
--link-hover-color: currentColor;
|
|
713
706
|
--link-visited-color: currentColor;
|
|
714
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
715
|
-
background-color: #8b4a6a;
|
|
716
|
-
color: #fff;
|
|
717
707
|
}
|
|
718
708
|
.dso-badge.badge-attention a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
719
709
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -728,6 +718,9 @@ dso-alert a:active {
|
|
|
728
718
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
729
719
|
}
|
|
730
720
|
.dso-badge.badge-attention {
|
|
721
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
722
|
+
background-color: #8b4a6a;
|
|
723
|
+
color: #fff;
|
|
731
724
|
border-color: #8b4a6a;
|
|
732
725
|
}
|
|
733
726
|
|
|
@@ -845,12 +838,6 @@ dso-alert a:active {
|
|
|
845
838
|
--link-color: currentColor;
|
|
846
839
|
--link-hover-color: currentColor;
|
|
847
840
|
--link-visited-color: currentColor;
|
|
848
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
849
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
850
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
851
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
852
|
-
background-color: #e4f1d4;
|
|
853
|
-
color: #191919;
|
|
854
841
|
}
|
|
855
842
|
.dso-banner.alert-success a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
856
843
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -865,6 +852,12 @@ dso-alert a:active {
|
|
|
865
852
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
866
853
|
}
|
|
867
854
|
.dso-banner.alert-success {
|
|
855
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
856
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
857
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
858
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
859
|
+
background-color: #e4f1d4;
|
|
860
|
+
color: #191919;
|
|
868
861
|
border-color: #e4f1d4;
|
|
869
862
|
}
|
|
870
863
|
.dso-banner.alert-success.dso-icon .dso-banner-inner::before {
|
|
@@ -882,12 +875,6 @@ dso-alert a:active {
|
|
|
882
875
|
--link-color: currentColor;
|
|
883
876
|
--link-hover-color: currentColor;
|
|
884
877
|
--link-visited-color: currentColor;
|
|
885
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
886
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
887
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
888
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
889
|
-
background-color: #f5d8dc;
|
|
890
|
-
color: #191919;
|
|
891
878
|
}
|
|
892
879
|
.dso-banner.alert-error a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
893
880
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -902,6 +889,12 @@ dso-alert a:active {
|
|
|
902
889
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
903
890
|
}
|
|
904
891
|
.dso-banner.alert-error {
|
|
892
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
893
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
894
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
895
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
896
|
+
background-color: #f5d8dc;
|
|
897
|
+
color: #191919;
|
|
905
898
|
border-color: #f5d8dc;
|
|
906
899
|
}
|
|
907
900
|
.dso-banner.alert-error.dso-icon .dso-banner-inner::before {
|
|
@@ -919,12 +912,6 @@ dso-alert a:active {
|
|
|
919
912
|
--link-color: currentColor;
|
|
920
913
|
--link-hover-color: currentColor;
|
|
921
914
|
--link-visited-color: currentColor;
|
|
922
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
923
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
924
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
925
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
926
|
-
background-color: #e1ecf7;
|
|
927
|
-
color: #191919;
|
|
928
915
|
}
|
|
929
916
|
.dso-banner.alert-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
930
917
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -939,6 +926,12 @@ dso-alert a:active {
|
|
|
939
926
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
940
927
|
}
|
|
941
928
|
.dso-banner.alert-info {
|
|
929
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
930
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
931
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
932
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
933
|
+
background-color: #e1ecf7;
|
|
934
|
+
color: #191919;
|
|
942
935
|
border-color: #e1ecf7;
|
|
943
936
|
}
|
|
944
937
|
.dso-banner.alert-info.dso-icon .dso-banner-inner::before {
|
|
@@ -956,12 +949,6 @@ dso-alert a:active {
|
|
|
956
949
|
--link-color: currentColor;
|
|
957
950
|
--link-hover-color: currentColor;
|
|
958
951
|
--link-visited-color: currentColor;
|
|
959
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
960
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
961
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
962
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
963
|
-
background-color: #f8f6cc;
|
|
964
|
-
color: #191919;
|
|
965
952
|
}
|
|
966
953
|
.dso-banner.alert-warning a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
967
954
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -976,6 +963,12 @@ dso-alert a:active {
|
|
|
976
963
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
977
964
|
}
|
|
978
965
|
.dso-banner.alert-warning {
|
|
966
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
967
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
968
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
969
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
970
|
+
background-color: #f8f6cc;
|
|
971
|
+
color: #191919;
|
|
979
972
|
border-color: #f8f6cc;
|
|
980
973
|
}
|
|
981
974
|
.dso-banner.alert-warning.dso-icon .dso-banner-inner::before {
|
|
@@ -1097,12 +1090,6 @@ dso-banner[status=success] {
|
|
|
1097
1090
|
--link-color: currentColor;
|
|
1098
1091
|
--link-hover-color: currentColor;
|
|
1099
1092
|
--link-visited-color: currentColor;
|
|
1100
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
1101
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1102
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1103
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1104
|
-
background-color: #e4f1d4;
|
|
1105
|
-
color: #191919;
|
|
1106
1093
|
}
|
|
1107
1094
|
dso-banner[status=success] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
1108
1095
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -1117,6 +1104,12 @@ dso-banner[status=success] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is
|
|
|
1117
1104
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
1118
1105
|
}
|
|
1119
1106
|
dso-banner[status=success] {
|
|
1107
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
1108
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1109
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1110
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1111
|
+
background-color: #e4f1d4;
|
|
1112
|
+
color: #191919;
|
|
1120
1113
|
border-color: #e4f1d4;
|
|
1121
1114
|
}
|
|
1122
1115
|
dso-banner[status=success][icon] .dso-banner-inner::before {
|
|
@@ -1134,12 +1127,6 @@ dso-banner[status=error] {
|
|
|
1134
1127
|
--link-color: currentColor;
|
|
1135
1128
|
--link-hover-color: currentColor;
|
|
1136
1129
|
--link-visited-color: currentColor;
|
|
1137
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
1138
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1139
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1140
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1141
|
-
background-color: #f5d8dc;
|
|
1142
|
-
color: #191919;
|
|
1143
1130
|
}
|
|
1144
1131
|
dso-banner[status=error] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
1145
1132
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -1154,6 +1141,12 @@ dso-banner[status=error] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([
|
|
|
1154
1141
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
1155
1142
|
}
|
|
1156
1143
|
dso-banner[status=error] {
|
|
1144
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
1145
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1146
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1147
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1148
|
+
background-color: #f5d8dc;
|
|
1149
|
+
color: #191919;
|
|
1157
1150
|
border-color: #f5d8dc;
|
|
1158
1151
|
}
|
|
1159
1152
|
dso-banner[status=error][icon] .dso-banner-inner::before {
|
|
@@ -1171,12 +1164,6 @@ dso-banner[status=info] {
|
|
|
1171
1164
|
--link-color: currentColor;
|
|
1172
1165
|
--link-hover-color: currentColor;
|
|
1173
1166
|
--link-visited-color: currentColor;
|
|
1174
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
1175
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1176
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1177
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1178
|
-
background-color: #e1ecf7;
|
|
1179
|
-
color: #191919;
|
|
1180
1167
|
}
|
|
1181
1168
|
dso-banner[status=info] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
1182
1169
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -1191,6 +1178,12 @@ dso-banner[status=info] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([h
|
|
|
1191
1178
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
1192
1179
|
}
|
|
1193
1180
|
dso-banner[status=info] {
|
|
1181
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
1182
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1183
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1184
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1185
|
+
background-color: #e1ecf7;
|
|
1186
|
+
color: #191919;
|
|
1194
1187
|
border-color: #e1ecf7;
|
|
1195
1188
|
}
|
|
1196
1189
|
dso-banner[status=info][icon] .dso-banner-inner::before {
|
|
@@ -1208,12 +1201,6 @@ dso-banner[status=warning] {
|
|
|
1208
1201
|
--link-color: currentColor;
|
|
1209
1202
|
--link-hover-color: currentColor;
|
|
1210
1203
|
--link-visited-color: currentColor;
|
|
1211
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
1212
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1213
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1214
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1215
|
-
background-color: #f8f6cc;
|
|
1216
|
-
color: #191919;
|
|
1217
1204
|
}
|
|
1218
1205
|
dso-banner[status=warning] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
1219
1206
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -1228,6 +1215,12 @@ dso-banner[status=warning] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is
|
|
|
1228
1215
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
1229
1216
|
}
|
|
1230
1217
|
dso-banner[status=warning] {
|
|
1218
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
1219
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
1220
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
1221
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
1222
|
+
background-color: #f8f6cc;
|
|
1223
|
+
color: #191919;
|
|
1231
1224
|
border-color: #f8f6cc;
|
|
1232
1225
|
}
|
|
1233
1226
|
dso-banner[status=warning][icon] .dso-banner-inner::before {
|
|
@@ -1352,10 +1345,6 @@ label.dso-primary {
|
|
|
1352
1345
|
background-color: var(--_dso-button-primary-background-color, #39870c);
|
|
1353
1346
|
border-color: var(--_dso-button-primary-border-color, #39870c);
|
|
1354
1347
|
color: var(--_dso-button-primary-color, #fff);
|
|
1355
|
-
}
|
|
1356
|
-
a.dso-primary,
|
|
1357
|
-
button.dso-primary,
|
|
1358
|
-
label.dso-primary {
|
|
1359
1348
|
border-width: 1px;
|
|
1360
1349
|
border-style: solid;
|
|
1361
1350
|
border-radius: 4px;
|
|
@@ -1557,10 +1546,6 @@ label.dso-secondary {
|
|
|
1557
1546
|
background-color: var(--_dso-button-secondary-background-color, #fff);
|
|
1558
1547
|
border-color: var(--_dso-button-secondary-border-color, #39870c);
|
|
1559
1548
|
color: var(--_dso-button-secondary-color, #39870c);
|
|
1560
|
-
}
|
|
1561
|
-
a.dso-secondary,
|
|
1562
|
-
button.dso-secondary,
|
|
1563
|
-
label.dso-secondary {
|
|
1564
1549
|
border-width: 1px;
|
|
1565
1550
|
border-style: solid;
|
|
1566
1551
|
border-radius: 4px;
|
|
@@ -1996,10 +1981,6 @@ label.dso-map {
|
|
|
1996
1981
|
background-color: var(--_dso-button-secondary-background-color, #fff);
|
|
1997
1982
|
border-color: var(--_dso-button-secondary-border-color, #39870c);
|
|
1998
1983
|
color: var(--_dso-button-secondary-color, #39870c);
|
|
1999
|
-
}
|
|
2000
|
-
a.dso-map,
|
|
2001
|
-
button.dso-map,
|
|
2002
|
-
label.dso-map {
|
|
2003
1984
|
border-width: 1px;
|
|
2004
1985
|
border-style: solid;
|
|
2005
1986
|
border-radius: 4px;
|
|
@@ -2431,8 +2412,6 @@ pre code {
|
|
|
2431
2412
|
}
|
|
2432
2413
|
.dso-context-wrapper .dso-context-select select {
|
|
2433
2414
|
background-image: var(--_dso-di-background-image, url("./di.svg#caret-down"));
|
|
2434
|
-
}
|
|
2435
|
-
.dso-context-wrapper .dso-context-select select {
|
|
2436
2415
|
-moz-appearance: none;
|
|
2437
2416
|
-webkit-appearance: none;
|
|
2438
2417
|
background-position: calc(100% - 8px);
|
|
@@ -2711,12 +2690,6 @@ del {
|
|
|
2711
2690
|
--link-color: currentColor;
|
|
2712
2691
|
--link-hover-color: currentColor;
|
|
2713
2692
|
--link-visited-color: currentColor;
|
|
2714
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
2715
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2716
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2717
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2718
|
-
background-color: #f5d8dc;
|
|
2719
|
-
color: #191919;
|
|
2720
2693
|
}
|
|
2721
2694
|
del a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
2722
2695
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -2731,6 +2704,12 @@ del a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [hr
|
|
|
2731
2704
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
2732
2705
|
}
|
|
2733
2706
|
del {
|
|
2707
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
2708
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2709
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2710
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2711
|
+
background-color: #f5d8dc;
|
|
2712
|
+
color: #191919;
|
|
2734
2713
|
--_dso-ozon-content-toggletip-color: colors.$zwart;
|
|
2735
2714
|
text-decoration: line-through;
|
|
2736
2715
|
--_dso-ozon-content-toggletip-text-decoration: underline line-through;
|
|
@@ -2811,8 +2790,6 @@ del {
|
|
|
2811
2790
|
block-size: 24px;
|
|
2812
2791
|
vertical-align: top;
|
|
2813
2792
|
inline-size: 24px;
|
|
2814
|
-
}
|
|
2815
|
-
.dso-description-term + .dso-description-content > a::before {
|
|
2816
2793
|
content: "";
|
|
2817
2794
|
display: block;
|
|
2818
2795
|
}
|
|
@@ -2866,12 +2843,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2866
2843
|
--link-color: currentColor;
|
|
2867
2844
|
--link-hover-color: currentColor;
|
|
2868
2845
|
--link-visited-color: currentColor;
|
|
2869
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
2870
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2871
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2872
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2873
|
-
background-color: #f2f2f2;
|
|
2874
|
-
color: #191919;
|
|
2875
2846
|
}
|
|
2876
2847
|
.dso-document-header a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
2877
2848
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -2886,9 +2857,15 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2886
2857
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
2887
2858
|
}
|
|
2888
2859
|
.dso-document-header {
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2860
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
2861
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2862
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2863
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2864
|
+
background-color: #f2f2f2;
|
|
2865
|
+
color: #191919;
|
|
2866
|
+
padding-block: 8px 16px;
|
|
2867
|
+
padding-inline: 24px;
|
|
2868
|
+
margin-inline: -16px -16px;
|
|
2892
2869
|
}
|
|
2893
2870
|
.dso-document-header:has(.dso-document-header-status) {
|
|
2894
2871
|
padding-block-start: 0;
|
|
@@ -2913,12 +2890,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2913
2890
|
--link-color: currentColor;
|
|
2914
2891
|
--link-hover-color: currentColor;
|
|
2915
2892
|
--link-visited-color: currentColor;
|
|
2916
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
2917
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2918
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2919
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2920
|
-
background-color: #dcd400;
|
|
2921
|
-
color: #191919;
|
|
2922
2893
|
}
|
|
2923
2894
|
.dso-document-header.dso-variant-ontwerp .dso-document-header-status a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
2924
2895
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -2932,6 +2903,14 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2932
2903
|
.dso-document-header.dso-variant-ontwerp .dso-document-header-status a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
2933
2904
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
2934
2905
|
}
|
|
2906
|
+
.dso-document-header.dso-variant-ontwerp .dso-document-header-status {
|
|
2907
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
2908
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
2909
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
2910
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
2911
|
+
background-color: #dcd400;
|
|
2912
|
+
color: #191919;
|
|
2913
|
+
}
|
|
2935
2914
|
.dso-document-header.dso-variant-ontwerp .dso-document-header-status dso-icon[icon=pencil] {
|
|
2936
2915
|
padding: 5px;
|
|
2937
2916
|
}
|
|
@@ -2943,9 +2922,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2943
2922
|
--link-color: currentColor;
|
|
2944
2923
|
--link-hover-color: currentColor;
|
|
2945
2924
|
--link-visited-color: currentColor;
|
|
2946
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
2947
|
-
background-color: #275937;
|
|
2948
|
-
color: #fff;
|
|
2949
2925
|
}
|
|
2950
2926
|
.dso-document-header.dso-variant-besluitversie .dso-document-header-status a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
2951
2927
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -2959,6 +2935,11 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2959
2935
|
.dso-document-header.dso-variant-besluitversie .dso-document-header-status a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
2960
2936
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
2961
2937
|
}
|
|
2938
|
+
.dso-document-header.dso-variant-besluitversie .dso-document-header-status {
|
|
2939
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
2940
|
+
background-color: #275937;
|
|
2941
|
+
color: #fff;
|
|
2942
|
+
}
|
|
2962
2943
|
.dso-document-header.dso-variant-besluitversie .dso-document-header-status dso-icon[icon=hammer] {
|
|
2963
2944
|
padding-block: 3px;
|
|
2964
2945
|
padding-inline: 2px;
|
|
@@ -2993,8 +2974,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
2993
2974
|
block-size: 24px;
|
|
2994
2975
|
vertical-align: top;
|
|
2995
2976
|
inline-size: 24px;
|
|
2996
|
-
}
|
|
2997
|
-
.dso-document-header.dso-document-header-sticky h1 button::after, .dso-document-header.dso-document-header-sticky h2 button::after, .dso-document-header.dso-document-header-sticky h3 button::after, .dso-document-header.dso-document-header-sticky h4 button::after, .dso-document-header.dso-document-header-sticky h5 button::after, .dso-document-header.dso-document-header-sticky h6 button::after, .dso-document-header.dso-document-header-sticky .h1 button::after, .dso-document-header.dso-document-header-sticky .h2 button::after, .dso-document-header.dso-document-header-sticky .h3 button::after, .dso-document-header.dso-document-header-sticky .h4 button::after, .dso-document-header.dso-document-header-sticky .h5 button::after, .dso-document-header.dso-document-header-sticky .h6 button::after {
|
|
2998
2977
|
content: "";
|
|
2999
2978
|
display: inline-block;
|
|
3000
2979
|
}
|
|
@@ -3320,9 +3299,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
3320
3299
|
block-size: 24px;
|
|
3321
3300
|
vertical-align: top;
|
|
3322
3301
|
inline-size: 24px;
|
|
3323
|
-
}
|
|
3324
|
-
.dso-dropdown-menu > button:not(.dso-primary):not(.dso-secondary):not(.dso-tertiary)::after,
|
|
3325
|
-
.dso-dropdown-menu > .dso-tertiary::after {
|
|
3326
3302
|
margin-inline-start: 4px;
|
|
3327
3303
|
position: relative;
|
|
3328
3304
|
inset-block-start: -2px;
|
|
@@ -3371,9 +3347,6 @@ dso-document-component[not-applicable] dso-document-component[not-applicable] {
|
|
|
3371
3347
|
block-size: 24px;
|
|
3372
3348
|
vertical-align: top;
|
|
3373
3349
|
inline-size: 24px;
|
|
3374
|
-
}
|
|
3375
|
-
.dso-dropdown-menu.dso-checkable li.dso-checked a::before,
|
|
3376
|
-
.dso-dropdown-menu.dso-checkable li.dso-checked button::before {
|
|
3377
3350
|
content: "";
|
|
3378
3351
|
display: block;
|
|
3379
3352
|
float: inline-start;
|
|
@@ -3505,9 +3478,6 @@ dso-dropdown-menu > .dso-tertiary::after {
|
|
|
3505
3478
|
block-size: 24px;
|
|
3506
3479
|
vertical-align: top;
|
|
3507
3480
|
inline-size: 24px;
|
|
3508
|
-
}
|
|
3509
|
-
dso-dropdown-menu > button:not(.dso-primary):not(.dso-secondary):not(.dso-tertiary)::after,
|
|
3510
|
-
dso-dropdown-menu > .dso-tertiary::after {
|
|
3511
3481
|
margin-inline-start: 4px;
|
|
3512
3482
|
position: relative;
|
|
3513
3483
|
inset-block-start: -2px;
|
|
@@ -3553,9 +3523,6 @@ dso-dropdown-menu[checkable] li.dso-checked button::before {
|
|
|
3553
3523
|
block-size: 24px;
|
|
3554
3524
|
vertical-align: top;
|
|
3555
3525
|
inline-size: 24px;
|
|
3556
|
-
}
|
|
3557
|
-
dso-dropdown-menu[checkable] li.dso-checked a::before,
|
|
3558
|
-
dso-dropdown-menu[checkable] li.dso-checked button::before {
|
|
3559
3526
|
content: "";
|
|
3560
3527
|
display: block;
|
|
3561
3528
|
float: inline-start;
|
|
@@ -3596,8 +3563,6 @@ footer {
|
|
|
3596
3563
|
margin-inline-end: calc(50% - 50vw);
|
|
3597
3564
|
padding-inline-start: calc(50vw - 50%);
|
|
3598
3565
|
padding-inline-end: calc(50vw - 50%);
|
|
3599
|
-
}
|
|
3600
|
-
footer {
|
|
3601
3566
|
--_dso-alert-success-border-color: #39870c;
|
|
3602
3567
|
--_dso-alert-error-border-color: #ce3f51;
|
|
3603
3568
|
--_dso-alert-info-border-color: #6ca4d9;
|
|
@@ -3605,12 +3570,6 @@ footer {
|
|
|
3605
3570
|
--link-color: currentColor;
|
|
3606
3571
|
--link-hover-color: currentColor;
|
|
3607
3572
|
--link-visited-color: currentColor;
|
|
3608
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
3609
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
3610
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
3611
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
3612
|
-
background-color: #f2f2f2;
|
|
3613
|
-
color: #191919;
|
|
3614
3573
|
}
|
|
3615
3574
|
footer a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
3616
3575
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -3625,6 +3584,12 @@ footer a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"],
|
|
|
3625
3584
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
3626
3585
|
}
|
|
3627
3586
|
footer {
|
|
3587
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
3588
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
3589
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
3590
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
3591
|
+
background-color: #f2f2f2;
|
|
3592
|
+
color: #191919;
|
|
3628
3593
|
border-block-start: 1px solid #ccc;
|
|
3629
3594
|
display: block;
|
|
3630
3595
|
margin-block-start: 48px;
|
|
@@ -3826,8 +3791,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
3826
3791
|
.form-explanation-required::after {
|
|
3827
3792
|
content: "";
|
|
3828
3793
|
display: inline-block;
|
|
3829
|
-
}
|
|
3830
|
-
.form-explanation-required::after {
|
|
3831
3794
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
3832
3795
|
background-size: cover;
|
|
3833
3796
|
block-size: 0.75rem;
|
|
@@ -3900,8 +3863,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
3900
3863
|
.form-group.dso-checkboxes.dso-required .control-label::after {
|
|
3901
3864
|
content: "";
|
|
3902
3865
|
display: inline-block;
|
|
3903
|
-
}
|
|
3904
|
-
.form-group.dso-checkboxes.dso-required .control-label::after {
|
|
3905
3866
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
3906
3867
|
background-size: cover;
|
|
3907
3868
|
block-size: 0.75rem;
|
|
@@ -3920,8 +3881,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
3920
3881
|
.form-group.dso-confirm.dso-required .control-label::after {
|
|
3921
3882
|
content: "";
|
|
3922
3883
|
display: inline-block;
|
|
3923
|
-
}
|
|
3924
|
-
.form-group.dso-confirm.dso-required .control-label::after {
|
|
3925
3884
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
3926
3885
|
background-size: cover;
|
|
3927
3886
|
block-size: 0.75rem;
|
|
@@ -3938,8 +3897,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
3938
3897
|
.form-group.dso-files.dso-required .control-label::after {
|
|
3939
3898
|
content: "";
|
|
3940
3899
|
display: inline-block;
|
|
3941
|
-
}
|
|
3942
|
-
.form-group.dso-files.dso-required .control-label::after {
|
|
3943
3900
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
3944
3901
|
background-size: cover;
|
|
3945
3902
|
block-size: 0.75rem;
|
|
@@ -4106,8 +4063,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4106
4063
|
.form-group.dso-input.dso-required .control-label::after {
|
|
4107
4064
|
content: "";
|
|
4108
4065
|
display: inline-block;
|
|
4109
|
-
}
|
|
4110
|
-
.form-group.dso-input.dso-required .control-label::after {
|
|
4111
4066
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
4112
4067
|
background-size: cover;
|
|
4113
4068
|
block-size: 0.75rem;
|
|
@@ -4121,8 +4076,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4121
4076
|
.form-group.dso-radios.dso-required .control-label::after {
|
|
4122
4077
|
content: "";
|
|
4123
4078
|
display: inline-block;
|
|
4124
|
-
}
|
|
4125
|
-
.form-group.dso-radios.dso-required .control-label::after {
|
|
4126
4079
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
4127
4080
|
background-size: cover;
|
|
4128
4081
|
block-size: 0.75rem;
|
|
@@ -4156,8 +4109,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4156
4109
|
.form-group.dso-select.dso-required .control-label::after {
|
|
4157
4110
|
content: "";
|
|
4158
4111
|
display: inline-block;
|
|
4159
|
-
}
|
|
4160
|
-
.form-group.dso-select.dso-required .control-label::after {
|
|
4161
4112
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
4162
4113
|
background-size: cover;
|
|
4163
4114
|
block-size: 0.75rem;
|
|
@@ -4169,8 +4120,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4169
4120
|
}
|
|
4170
4121
|
.form-group.dso-select select:not([multiple]) {
|
|
4171
4122
|
background-image: var(--_dso-di-background-image, url("./di.svg#caret-down"));
|
|
4172
|
-
}
|
|
4173
|
-
.form-group.dso-select select:not([multiple]) {
|
|
4174
4123
|
-moz-appearance: none;
|
|
4175
4124
|
-webkit-appearance: none;
|
|
4176
4125
|
background-position: calc(100% - 8px);
|
|
@@ -4211,8 +4160,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4211
4160
|
.form-group.dso-textarea.dso-required .control-label::after {
|
|
4212
4161
|
content: "";
|
|
4213
4162
|
display: inline-block;
|
|
4214
|
-
}
|
|
4215
|
-
.form-group.dso-textarea.dso-required .control-label::after {
|
|
4216
4163
|
background: url("./di.svg#asterisk") no-repeat center;
|
|
4217
4164
|
background-size: cover;
|
|
4218
4165
|
block-size: 0.75rem;
|
|
@@ -4323,8 +4270,6 @@ form .dso-form-group-collection > legend h6, .dso-section-body .dso-form-group-c
|
|
|
4323
4270
|
block-size: 24px;
|
|
4324
4271
|
vertical-align: top;
|
|
4325
4272
|
inline-size: 24px;
|
|
4326
|
-
}
|
|
4327
|
-
.form-group.dso-invalid .dso-message::before {
|
|
4328
4273
|
content: "";
|
|
4329
4274
|
display: block;
|
|
4330
4275
|
inset-inline-start: 0;
|
|
@@ -4530,15 +4475,13 @@ form > .row.dso-featured + .row div:not(.dso-rich-content) .h3:first-child {
|
|
|
4530
4475
|
position: relative;
|
|
4531
4476
|
min-block-size: 352px;
|
|
4532
4477
|
overflow: hidden;
|
|
4478
|
+
background-size: 0;
|
|
4533
4479
|
}
|
|
4534
4480
|
@media only screen and (min-width: 768px) {
|
|
4535
4481
|
.row.dso-banner {
|
|
4536
4482
|
padding-block-start: 24px;
|
|
4537
4483
|
}
|
|
4538
4484
|
}
|
|
4539
|
-
.row.dso-banner {
|
|
4540
|
-
background-size: 0;
|
|
4541
|
-
}
|
|
4542
4485
|
.row.dso-banner.no-button-banner {
|
|
4543
4486
|
min-block-size: 296px;
|
|
4544
4487
|
}
|
|
@@ -5405,12 +5348,6 @@ h6,
|
|
|
5405
5348
|
--link-color: currentColor;
|
|
5406
5349
|
--link-hover-color: currentColor;
|
|
5407
5350
|
--link-visited-color: currentColor;
|
|
5408
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5409
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5410
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5411
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5412
|
-
background-color: #f2f2f2;
|
|
5413
|
-
color: #191919;
|
|
5414
5351
|
}
|
|
5415
5352
|
.dso-highlight-box:not(.dso-white, .dso-yellow, .dso-border) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5416
5353
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5424,6 +5361,14 @@ h6,
|
|
|
5424
5361
|
.dso-highlight-box:not(.dso-white, .dso-yellow, .dso-border) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5425
5362
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5426
5363
|
}
|
|
5364
|
+
.dso-highlight-box:not(.dso-white, .dso-yellow, .dso-border) {
|
|
5365
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5366
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5367
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5368
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5369
|
+
background-color: #f2f2f2;
|
|
5370
|
+
color: #191919;
|
|
5371
|
+
}
|
|
5427
5372
|
.dso-highlight-box.dso-grey {
|
|
5428
5373
|
--_dso-alert-success-border-color: #39870c;
|
|
5429
5374
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -5432,12 +5377,6 @@ h6,
|
|
|
5432
5377
|
--link-color: currentColor;
|
|
5433
5378
|
--link-hover-color: currentColor;
|
|
5434
5379
|
--link-visited-color: currentColor;
|
|
5435
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5436
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5437
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5438
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5439
|
-
background-color: #f2f2f2;
|
|
5440
|
-
color: #191919;
|
|
5441
5380
|
}
|
|
5442
5381
|
.dso-highlight-box.dso-grey a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5443
5382
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5451,6 +5390,14 @@ h6,
|
|
|
5451
5390
|
.dso-highlight-box.dso-grey a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5452
5391
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5453
5392
|
}
|
|
5393
|
+
.dso-highlight-box.dso-grey {
|
|
5394
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5395
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5396
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5397
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5398
|
+
background-color: #f2f2f2;
|
|
5399
|
+
color: #191919;
|
|
5400
|
+
}
|
|
5454
5401
|
.dso-highlight-box.dso-white {
|
|
5455
5402
|
--_dso-alert-success-border-color: initial;
|
|
5456
5403
|
--_dso-alert-error-border-color: initial;
|
|
@@ -5467,12 +5414,6 @@ h6,
|
|
|
5467
5414
|
--link-color: currentColor;
|
|
5468
5415
|
--link-hover-color: currentColor;
|
|
5469
5416
|
--link-visited-color: currentColor;
|
|
5470
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5471
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5472
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5473
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5474
|
-
background-color: #f8f6cc;
|
|
5475
|
-
color: #191919;
|
|
5476
5417
|
}
|
|
5477
5418
|
.dso-highlight-box.dso-yellow a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5478
5419
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5486,6 +5427,14 @@ h6,
|
|
|
5486
5427
|
.dso-highlight-box.dso-yellow a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5487
5428
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5488
5429
|
}
|
|
5430
|
+
.dso-highlight-box.dso-yellow {
|
|
5431
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5432
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5433
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5434
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5435
|
+
background-color: #f8f6cc;
|
|
5436
|
+
color: #191919;
|
|
5437
|
+
}
|
|
5489
5438
|
.dso-highlight-box.dso-drop-shadow {
|
|
5490
5439
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
|
5491
5440
|
}
|
|
@@ -5500,8 +5449,6 @@ h6,
|
|
|
5500
5449
|
--_dso-alert-warning-border-color: initial;
|
|
5501
5450
|
background-color: #fff;
|
|
5502
5451
|
color: #191919;
|
|
5503
|
-
}
|
|
5504
|
-
.dso-highlight-box.dso-border:not(.dso-grey, .dso-yellow) {
|
|
5505
5452
|
border-color: #ccc;
|
|
5506
5453
|
}
|
|
5507
5454
|
.dso-highlight-box.dso-has-counter {
|
|
@@ -5613,12 +5560,6 @@ dso-highlight-box:not([white], [yellow], [border]) {
|
|
|
5613
5560
|
--link-color: currentColor;
|
|
5614
5561
|
--link-hover-color: currentColor;
|
|
5615
5562
|
--link-visited-color: currentColor;
|
|
5616
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5617
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5618
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5619
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5620
|
-
background-color: #f2f2f2;
|
|
5621
|
-
color: #191919;
|
|
5622
5563
|
}
|
|
5623
5564
|
dso-highlight-box:not([white], [yellow], [border]) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5624
5565
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5632,6 +5573,14 @@ dso-highlight-box:not([white], [yellow], [border]) a:not(.dso-primary, .dso-seco
|
|
|
5632
5573
|
dso-highlight-box:not([white], [yellow], [border]) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5633
5574
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5634
5575
|
}
|
|
5576
|
+
dso-highlight-box:not([white], [yellow], [border]) {
|
|
5577
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5578
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5579
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5580
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5581
|
+
background-color: #f2f2f2;
|
|
5582
|
+
color: #191919;
|
|
5583
|
+
}
|
|
5635
5584
|
dso-highlight-box[grey] {
|
|
5636
5585
|
--_dso-alert-success-border-color: #39870c;
|
|
5637
5586
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -5640,12 +5589,6 @@ dso-highlight-box[grey] {
|
|
|
5640
5589
|
--link-color: currentColor;
|
|
5641
5590
|
--link-hover-color: currentColor;
|
|
5642
5591
|
--link-visited-color: currentColor;
|
|
5643
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5644
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5645
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5646
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5647
|
-
background-color: #f2f2f2;
|
|
5648
|
-
color: #191919;
|
|
5649
5592
|
}
|
|
5650
5593
|
dso-highlight-box[grey] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5651
5594
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5659,6 +5602,14 @@ dso-highlight-box[grey] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([h
|
|
|
5659
5602
|
dso-highlight-box[grey] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5660
5603
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5661
5604
|
}
|
|
5605
|
+
dso-highlight-box[grey] {
|
|
5606
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5607
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5608
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5609
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5610
|
+
background-color: #f2f2f2;
|
|
5611
|
+
color: #191919;
|
|
5612
|
+
}
|
|
5662
5613
|
dso-highlight-box[white] {
|
|
5663
5614
|
--_dso-alert-success-border-color: initial;
|
|
5664
5615
|
--_dso-alert-error-border-color: initial;
|
|
@@ -5675,12 +5626,6 @@ dso-highlight-box[yellow] {
|
|
|
5675
5626
|
--link-color: currentColor;
|
|
5676
5627
|
--link-hover-color: currentColor;
|
|
5677
5628
|
--link-visited-color: currentColor;
|
|
5678
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5679
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5680
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5681
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5682
|
-
background-color: #f8f6cc;
|
|
5683
|
-
color: #191919;
|
|
5684
5629
|
}
|
|
5685
5630
|
dso-highlight-box[yellow] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5686
5631
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5694,6 +5639,14 @@ dso-highlight-box[yellow] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(
|
|
|
5694
5639
|
dso-highlight-box[yellow] a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5695
5640
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5696
5641
|
}
|
|
5642
|
+
dso-highlight-box[yellow] {
|
|
5643
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5644
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5645
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5646
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5647
|
+
background-color: #f8f6cc;
|
|
5648
|
+
color: #191919;
|
|
5649
|
+
}
|
|
5697
5650
|
dso-highlight-box[drop-shadow] {
|
|
5698
5651
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
|
5699
5652
|
}
|
|
@@ -5708,8 +5661,6 @@ dso-highlight-box[border]:not([grey], [yellow]) {
|
|
|
5708
5661
|
--_dso-alert-warning-border-color: initial;
|
|
5709
5662
|
background-color: #fff;
|
|
5710
5663
|
color: #191919;
|
|
5711
|
-
}
|
|
5712
|
-
dso-highlight-box[border]:not([grey], [yellow]) {
|
|
5713
5664
|
border-color: #ccc;
|
|
5714
5665
|
}
|
|
5715
5666
|
dso-highlight-box[has-counter] {
|
|
@@ -5838,8 +5789,6 @@ img {
|
|
|
5838
5789
|
padding-block: 16px;
|
|
5839
5790
|
padding-inline: 16px 32px;
|
|
5840
5791
|
position: relative;
|
|
5841
|
-
}
|
|
5842
|
-
.dso-info:not(.dso-accordion-section) {
|
|
5843
5792
|
--_dso-alert-success-border-color: #39870c;
|
|
5844
5793
|
--_dso-alert-error-border-color: #ce3f51;
|
|
5845
5794
|
--_dso-alert-info-border-color: #6ca4d9;
|
|
@@ -5847,12 +5796,6 @@ img {
|
|
|
5847
5796
|
--link-color: currentColor;
|
|
5848
5797
|
--link-hover-color: currentColor;
|
|
5849
5798
|
--link-visited-color: currentColor;
|
|
5850
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5851
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5852
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5853
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5854
|
-
background-color: #f2f2f2;
|
|
5855
|
-
color: #191919;
|
|
5856
5799
|
}
|
|
5857
5800
|
.dso-info:not(.dso-accordion-section) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5858
5801
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5866,6 +5809,14 @@ img {
|
|
|
5866
5809
|
.dso-info:not(.dso-accordion-section) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5867
5810
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5868
5811
|
}
|
|
5812
|
+
.dso-info:not(.dso-accordion-section) {
|
|
5813
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5814
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5815
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5816
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5817
|
+
background-color: #f2f2f2;
|
|
5818
|
+
color: #191919;
|
|
5819
|
+
}
|
|
5869
5820
|
.dso-info:not(.dso-accordion-section) .dso-rich-content *:first-child {
|
|
5870
5821
|
margin-block-start: 0;
|
|
5871
5822
|
}
|
|
@@ -5898,12 +5849,6 @@ img {
|
|
|
5898
5849
|
--link-color: currentColor;
|
|
5899
5850
|
--link-hover-color: currentColor;
|
|
5900
5851
|
--link-visited-color: currentColor;
|
|
5901
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5902
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5903
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5904
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5905
|
-
background-color: #f2f2f2;
|
|
5906
|
-
color: #191919;
|
|
5907
5852
|
}
|
|
5908
5853
|
.dso-info:not(.dso-accordion-section) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5909
5854
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5917,6 +5862,14 @@ img {
|
|
|
5917
5862
|
.dso-info:not(.dso-accordion-section) a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5918
5863
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5919
5864
|
}
|
|
5865
|
+
.dso-info:not(.dso-accordion-section) {
|
|
5866
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5867
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5868
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5869
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5870
|
+
background-color: #f2f2f2;
|
|
5871
|
+
color: #191919;
|
|
5872
|
+
}
|
|
5920
5873
|
.dso-info:not(.dso-accordion-section) > button {
|
|
5921
5874
|
background-color: transparent;
|
|
5922
5875
|
border-style: none;
|
|
@@ -5931,8 +5884,6 @@ img {
|
|
|
5931
5884
|
block-size: 24px;
|
|
5932
5885
|
vertical-align: top;
|
|
5933
5886
|
inline-size: 24px;
|
|
5934
|
-
}
|
|
5935
|
-
.dso-info:not(.dso-accordion-section) > button::before {
|
|
5936
5887
|
content: "";
|
|
5937
5888
|
display: inline-block;
|
|
5938
5889
|
}
|
|
@@ -5969,12 +5920,6 @@ dso-info {
|
|
|
5969
5920
|
--link-color: currentColor;
|
|
5970
5921
|
--link-hover-color: currentColor;
|
|
5971
5922
|
--link-visited-color: currentColor;
|
|
5972
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
5973
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5974
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5975
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5976
|
-
background-color: #f2f2f2;
|
|
5977
|
-
color: #191919;
|
|
5978
5923
|
}
|
|
5979
5924
|
dso-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
5980
5925
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -5988,6 +5933,14 @@ dso-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="tel:"], [
|
|
|
5988
5933
|
dso-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
5989
5934
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
5990
5935
|
}
|
|
5936
|
+
dso-info {
|
|
5937
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
5938
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
5939
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
5940
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
5941
|
+
background-color: #f2f2f2;
|
|
5942
|
+
color: #191919;
|
|
5943
|
+
}
|
|
5991
5944
|
|
|
5992
5945
|
.dso-info-button {
|
|
5993
5946
|
display: inline-block;
|
|
@@ -5999,11 +5952,6 @@ dso-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"]
|
|
|
5999
5952
|
text-align: start;
|
|
6000
5953
|
user-select: none;
|
|
6001
5954
|
vertical-align: middle;
|
|
6002
|
-
background-color: transparent;
|
|
6003
|
-
color: #39870c;
|
|
6004
|
-
border: 0;
|
|
6005
|
-
margin-inline-start: var(--_dt-info-button-margin-inline-start, 8px);
|
|
6006
|
-
padding: 0;
|
|
6007
5955
|
}
|
|
6008
5956
|
.dso-info-button:focus, .dso-info-button:focus-visible {
|
|
6009
5957
|
outline-offset: 2px;
|
|
@@ -6011,6 +5959,13 @@ dso-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"]
|
|
|
6011
5959
|
.dso-info-button:active {
|
|
6012
5960
|
outline: 0;
|
|
6013
5961
|
}
|
|
5962
|
+
.dso-info-button {
|
|
5963
|
+
background-color: transparent;
|
|
5964
|
+
color: #39870c;
|
|
5965
|
+
border: 0;
|
|
5966
|
+
margin-inline-start: var(--_dt-info-button-margin-inline-start, 8px);
|
|
5967
|
+
padding: 0;
|
|
5968
|
+
}
|
|
6014
5969
|
.dso-info-button.dso-info-secondary {
|
|
6015
5970
|
color: #666;
|
|
6016
5971
|
}
|
|
@@ -6077,8 +6032,6 @@ input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer
|
|
|
6077
6032
|
|
|
6078
6033
|
ins {
|
|
6079
6034
|
text-decoration: none;
|
|
6080
|
-
}
|
|
6081
|
-
ins {
|
|
6082
6035
|
--_dso-alert-success-border-color: #39870c;
|
|
6083
6036
|
--_dso-alert-error-border-color: #ce3f51;
|
|
6084
6037
|
--_dso-alert-info-border-color: #6ca4d9;
|
|
@@ -6086,12 +6039,6 @@ ins {
|
|
|
6086
6039
|
--link-color: currentColor;
|
|
6087
6040
|
--link-hover-color: currentColor;
|
|
6088
6041
|
--link-visited-color: currentColor;
|
|
6089
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6090
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6091
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6092
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6093
|
-
background-color: #e4f1d4;
|
|
6094
|
-
color: #191919;
|
|
6095
6042
|
}
|
|
6096
6043
|
ins a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6097
6044
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6106,6 +6053,12 @@ ins a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [hr
|
|
|
6106
6053
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6107
6054
|
}
|
|
6108
6055
|
ins {
|
|
6056
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6057
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6058
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6059
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6060
|
+
background-color: #e4f1d4;
|
|
6061
|
+
color: #191919;
|
|
6109
6062
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.5);
|
|
6110
6063
|
--_dso-ozon-content-toggletip-color: colors.$zwart;
|
|
6111
6064
|
}
|
|
@@ -6200,12 +6153,6 @@ ins {
|
|
|
6200
6153
|
--link-color: currentColor;
|
|
6201
6154
|
--link-hover-color: currentColor;
|
|
6202
6155
|
--link-visited-color: currentColor;
|
|
6203
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6204
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6205
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6206
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6207
|
-
background-color: #f2f2f2;
|
|
6208
|
-
color: #191919;
|
|
6209
6156
|
}
|
|
6210
6157
|
.dso-label a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6211
6158
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6219,6 +6166,14 @@ ins {
|
|
|
6219
6166
|
.dso-label a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6220
6167
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6221
6168
|
}
|
|
6169
|
+
.dso-label {
|
|
6170
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6171
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6172
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6173
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6174
|
+
background-color: #f2f2f2;
|
|
6175
|
+
color: #191919;
|
|
6176
|
+
}
|
|
6222
6177
|
.dso-label.dso-label-info {
|
|
6223
6178
|
--_dso-alert-success-border-color: #39870c;
|
|
6224
6179
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6227,12 +6182,6 @@ ins {
|
|
|
6227
6182
|
--link-color: currentColor;
|
|
6228
6183
|
--link-hover-color: currentColor;
|
|
6229
6184
|
--link-visited-color: currentColor;
|
|
6230
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6231
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6232
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6233
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6234
|
-
background-color: #6ca4d9;
|
|
6235
|
-
color: #191919;
|
|
6236
6185
|
}
|
|
6237
6186
|
.dso-label.dso-label-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6238
6187
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6246,6 +6195,14 @@ ins {
|
|
|
6246
6195
|
.dso-label.dso-label-info a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6247
6196
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6248
6197
|
}
|
|
6198
|
+
.dso-label.dso-label-info {
|
|
6199
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6200
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6201
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6202
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6203
|
+
background-color: #6ca4d9;
|
|
6204
|
+
color: #191919;
|
|
6205
|
+
}
|
|
6249
6206
|
.dso-label.dso-label-primary {
|
|
6250
6207
|
--_dso-alert-success-border-color: #39870c;
|
|
6251
6208
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6254,9 +6211,6 @@ ins {
|
|
|
6254
6211
|
--link-color: currentColor;
|
|
6255
6212
|
--link-hover-color: currentColor;
|
|
6256
6213
|
--link-visited-color: currentColor;
|
|
6257
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
6258
|
-
background-color: #275937;
|
|
6259
|
-
color: #fff;
|
|
6260
6214
|
}
|
|
6261
6215
|
.dso-label.dso-label-primary a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6262
6216
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -6270,6 +6224,11 @@ ins {
|
|
|
6270
6224
|
.dso-label.dso-label-primary a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6271
6225
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
6272
6226
|
}
|
|
6227
|
+
.dso-label.dso-label-primary {
|
|
6228
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
6229
|
+
background-color: #275937;
|
|
6230
|
+
color: #fff;
|
|
6231
|
+
}
|
|
6273
6232
|
.dso-label.dso-label-success {
|
|
6274
6233
|
--_dso-alert-success-border-color: #39870c;
|
|
6275
6234
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6278,9 +6237,6 @@ ins {
|
|
|
6278
6237
|
--link-color: currentColor;
|
|
6279
6238
|
--link-hover-color: currentColor;
|
|
6280
6239
|
--link-visited-color: currentColor;
|
|
6281
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
6282
|
-
background-color: #39870c;
|
|
6283
|
-
color: #fff;
|
|
6284
6240
|
}
|
|
6285
6241
|
.dso-label.dso-label-success a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6286
6242
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -6294,6 +6250,11 @@ ins {
|
|
|
6294
6250
|
.dso-label.dso-label-success a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6295
6251
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
6296
6252
|
}
|
|
6253
|
+
.dso-label.dso-label-success {
|
|
6254
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
6255
|
+
background-color: #39870c;
|
|
6256
|
+
color: #fff;
|
|
6257
|
+
}
|
|
6297
6258
|
.dso-label.dso-label-warning {
|
|
6298
6259
|
--_dso-alert-success-border-color: #39870c;
|
|
6299
6260
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6302,12 +6263,6 @@ ins {
|
|
|
6302
6263
|
--link-color: currentColor;
|
|
6303
6264
|
--link-hover-color: currentColor;
|
|
6304
6265
|
--link-visited-color: currentColor;
|
|
6305
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6306
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6307
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6308
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6309
|
-
background-color: #dcd400;
|
|
6310
|
-
color: #191919;
|
|
6311
6266
|
}
|
|
6312
6267
|
.dso-label.dso-label-warning a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6313
6268
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6321,6 +6276,14 @@ ins {
|
|
|
6321
6276
|
.dso-label.dso-label-warning a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6322
6277
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6323
6278
|
}
|
|
6279
|
+
.dso-label.dso-label-warning {
|
|
6280
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6281
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6282
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6283
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6284
|
+
background-color: #dcd400;
|
|
6285
|
+
color: #191919;
|
|
6286
|
+
}
|
|
6324
6287
|
.dso-label.dso-label-error {
|
|
6325
6288
|
--_dso-alert-success-border-color: #39870c;
|
|
6326
6289
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6329,9 +6292,6 @@ ins {
|
|
|
6329
6292
|
--link-color: currentColor;
|
|
6330
6293
|
--link-hover-color: currentColor;
|
|
6331
6294
|
--link-visited-color: currentColor;
|
|
6332
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
6333
|
-
background-color: #ce3f51;
|
|
6334
|
-
color: #fff;
|
|
6335
6295
|
}
|
|
6336
6296
|
.dso-label.dso-label-error a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6337
6297
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -6345,6 +6305,11 @@ ins {
|
|
|
6345
6305
|
.dso-label.dso-label-error a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6346
6306
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
6347
6307
|
}
|
|
6308
|
+
.dso-label.dso-label-error {
|
|
6309
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
6310
|
+
background-color: #ce3f51;
|
|
6311
|
+
color: #fff;
|
|
6312
|
+
}
|
|
6348
6313
|
.dso-label.dso-label-bright {
|
|
6349
6314
|
--_dso-alert-success-border-color: initial;
|
|
6350
6315
|
--_dso-alert-error-border-color: initial;
|
|
@@ -6352,8 +6317,6 @@ ins {
|
|
|
6352
6317
|
--_dso-alert-warning-border-color: initial;
|
|
6353
6318
|
background-color: #fff;
|
|
6354
6319
|
color: #191919;
|
|
6355
|
-
}
|
|
6356
|
-
.dso-label.dso-label-bright {
|
|
6357
6320
|
outline: 1px solid #ccc;
|
|
6358
6321
|
outline-offset: -1px;
|
|
6359
6322
|
}
|
|
@@ -6365,9 +6328,6 @@ ins {
|
|
|
6365
6328
|
--link-color: currentColor;
|
|
6366
6329
|
--link-hover-color: currentColor;
|
|
6367
6330
|
--link-visited-color: currentColor;
|
|
6368
|
-
--_dso-icon-button-tertiary-color: #fff;
|
|
6369
|
-
background-color: #8b4a6a;
|
|
6370
|
-
color: #fff;
|
|
6371
6331
|
}
|
|
6372
6332
|
.dso-label.dso-label-attention a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6373
6333
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-wit"));
|
|
@@ -6381,6 +6341,11 @@ ins {
|
|
|
6381
6341
|
.dso-label.dso-label-attention a:not(.dso-primary, .dso-secondary, .dso-tertiary):is([href^="mailto:"], [href^="mailto:"]:hover, [href^="mailto:"]:focus-visible) {
|
|
6382
6342
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-wit"));
|
|
6383
6343
|
}
|
|
6344
|
+
.dso-label.dso-label-attention {
|
|
6345
|
+
--_dso-icon-button-tertiary-color: #fff;
|
|
6346
|
+
background-color: #8b4a6a;
|
|
6347
|
+
color: #fff;
|
|
6348
|
+
}
|
|
6384
6349
|
.dso-label.dso-label-filter {
|
|
6385
6350
|
--_dso-alert-success-border-color: #39870c;
|
|
6386
6351
|
--_dso-alert-error-border-color: #ce3f51;
|
|
@@ -6389,12 +6354,6 @@ ins {
|
|
|
6389
6354
|
--link-color: currentColor;
|
|
6390
6355
|
--link-hover-color: currentColor;
|
|
6391
6356
|
--link-visited-color: currentColor;
|
|
6392
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6393
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6394
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6395
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6396
|
-
background-color: #e1ecf7;
|
|
6397
|
-
color: #191919;
|
|
6398
6357
|
}
|
|
6399
6358
|
.dso-label.dso-label-filter a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6400
6359
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6409,6 +6368,12 @@ ins {
|
|
|
6409
6368
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6410
6369
|
}
|
|
6411
6370
|
.dso-label.dso-label-filter {
|
|
6371
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6372
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6373
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6374
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6375
|
+
background-color: #e1ecf7;
|
|
6376
|
+
color: #191919;
|
|
6412
6377
|
border-inline-start: 5px solid #6ca4d9;
|
|
6413
6378
|
}
|
|
6414
6379
|
.dso-label.dso-label-toegevoegd {
|
|
@@ -6419,12 +6384,6 @@ ins {
|
|
|
6419
6384
|
--link-color: currentColor;
|
|
6420
6385
|
--link-hover-color: currentColor;
|
|
6421
6386
|
--link-visited-color: currentColor;
|
|
6422
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6423
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6424
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6425
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6426
|
-
background-color: #e4f1d4;
|
|
6427
|
-
color: #191919;
|
|
6428
6387
|
}
|
|
6429
6388
|
.dso-label.dso-label-toegevoegd a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6430
6389
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6439,6 +6398,12 @@ ins {
|
|
|
6439
6398
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6440
6399
|
}
|
|
6441
6400
|
.dso-label.dso-label-toegevoegd {
|
|
6401
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6402
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6403
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6404
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6405
|
+
background-color: #e4f1d4;
|
|
6406
|
+
color: #191919;
|
|
6442
6407
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.5);
|
|
6443
6408
|
--_dso-ozon-content-toggletip-color: colors.$zwart;
|
|
6444
6409
|
}
|
|
@@ -6450,12 +6415,6 @@ ins {
|
|
|
6450
6415
|
--link-color: currentColor;
|
|
6451
6416
|
--link-hover-color: currentColor;
|
|
6452
6417
|
--link-visited-color: currentColor;
|
|
6453
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
6454
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6455
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6456
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6457
|
-
background-color: #f5d8dc;
|
|
6458
|
-
color: #191919;
|
|
6459
6418
|
}
|
|
6460
6419
|
.dso-label.dso-label-verwijderd a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
6461
6420
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -6470,6 +6429,12 @@ ins {
|
|
|
6470
6429
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
6471
6430
|
}
|
|
6472
6431
|
.dso-label.dso-label-verwijderd {
|
|
6432
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
6433
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
6434
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
6435
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
6436
|
+
background-color: #f5d8dc;
|
|
6437
|
+
color: #191919;
|
|
6473
6438
|
--_dso-ozon-content-toggletip-color: colors.$zwart;
|
|
6474
6439
|
text-decoration: line-through;
|
|
6475
6440
|
--_dso-ozon-content-toggletip-text-decoration: underline line-through;
|
|
@@ -6583,8 +6548,6 @@ a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).download {
|
|
|
6583
6548
|
background-size: 1.25em 1.25em;
|
|
6584
6549
|
padding-inline-end: var(--_dso-link-icon-padding-inline-end, 1.5em);
|
|
6585
6550
|
background-position: bottom 0 right 0;
|
|
6586
|
-
}
|
|
6587
|
-
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).download {
|
|
6588
6551
|
background-image: var(--_dso-di-background-image, url("./di.svg#download"));
|
|
6589
6552
|
}
|
|
6590
6553
|
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).download:hover, a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).download:focus-visible {
|
|
@@ -6595,8 +6558,6 @@ a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).extern {
|
|
|
6595
6558
|
background-size: 1.25em 1.25em;
|
|
6596
6559
|
padding-inline-end: var(--_dso-link-icon-padding-inline-end, 1.5em);
|
|
6597
6560
|
background-position: bottom 0 right 0;
|
|
6598
|
-
}
|
|
6599
|
-
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).extern {
|
|
6600
6561
|
background-image: var(--_dso-di-background-image, url("./di.svg#external-link"));
|
|
6601
6562
|
}
|
|
6602
6563
|
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).extern:hover, a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary)).extern:focus-visible {
|
|
@@ -6607,8 +6568,6 @@ a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="tel:"] {
|
|
|
6607
6568
|
background-size: 1.25em 1.25em;
|
|
6608
6569
|
padding-inline-start: var(--_dso-link-icon-padding-inline-start, 1.5em);
|
|
6609
6570
|
background-position: bottom 0 left 0;
|
|
6610
|
-
}
|
|
6611
|
-
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="tel:"] {
|
|
6612
6571
|
background-image: var(--_dso-di-background-image, url("./di.svg#call-grasgroen"));
|
|
6613
6572
|
}
|
|
6614
6573
|
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="tel:"]:hover, a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="tel:"]:focus-visible {
|
|
@@ -6619,8 +6578,6 @@ a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="mailto:"] {
|
|
|
6619
6578
|
background-size: 1.25em 1.25em;
|
|
6620
6579
|
padding-inline-start: var(--_dso-link-icon-padding-inline-start, 1.5em);
|
|
6621
6580
|
background-position: bottom 0 left 0;
|
|
6622
|
-
}
|
|
6623
|
-
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="mailto:"] {
|
|
6624
6581
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-grasgroen"));
|
|
6625
6582
|
}
|
|
6626
6583
|
a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="mailto:"]:hover, a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="mailto:"]:focus-visible {
|
|
@@ -6652,8 +6609,6 @@ a:where(:not(.dso-primary, .dso-secondary, .dso-tertiary))[href^="mailto:"]:hove
|
|
|
6652
6609
|
block-size: 24px;
|
|
6653
6610
|
vertical-align: top;
|
|
6654
6611
|
inline-size: 24px;
|
|
6655
|
-
}
|
|
6656
|
-
.dso-link-list a::before {
|
|
6657
6612
|
content: "";
|
|
6658
6613
|
display: inline-block;
|
|
6659
6614
|
margin-inline-start: -8px;
|
|
@@ -7113,13 +7068,10 @@ body:has(dso-modal.hydrated) {
|
|
|
7113
7068
|
background: url("./di.svg#times") no-repeat center;
|
|
7114
7069
|
background-size: cover;
|
|
7115
7070
|
block-size: 24px;
|
|
7116
|
-
vertical-align:
|
|
7071
|
+
vertical-align: middle;
|
|
7117
7072
|
inline-size: 24px;
|
|
7118
|
-
}
|
|
7119
|
-
.dso-modal .dso-close::before {
|
|
7120
7073
|
content: "";
|
|
7121
7074
|
display: inline-block;
|
|
7122
|
-
vertical-align: middle;
|
|
7123
7075
|
}
|
|
7124
7076
|
.dso-modal .dso-footer .dso-tertiary {
|
|
7125
7077
|
float: inline-start;
|
|
@@ -7494,8 +7446,6 @@ pre {
|
|
|
7494
7446
|
block-size: 24px;
|
|
7495
7447
|
vertical-align: top;
|
|
7496
7448
|
inline-size: 24px;
|
|
7497
|
-
}
|
|
7498
|
-
.dso-search-bar .dso-search-bar-input .dso-search-icon::before {
|
|
7499
7449
|
content: "";
|
|
7500
7450
|
display: inline-block;
|
|
7501
7451
|
font-size: 1rem;
|
|
@@ -7519,7 +7469,6 @@ pre {
|
|
|
7519
7469
|
background-image: none;
|
|
7520
7470
|
border: 1px solid #275937;
|
|
7521
7471
|
border-radius: 4px;
|
|
7522
|
-
border-width: 1px;
|
|
7523
7472
|
box-shadow: none;
|
|
7524
7473
|
display: block;
|
|
7525
7474
|
font-size: 1rem;
|
|
@@ -7558,8 +7507,6 @@ pre {
|
|
|
7558
7507
|
block-size: 24px;
|
|
7559
7508
|
vertical-align: top;
|
|
7560
7509
|
inline-size: 24px;
|
|
7561
|
-
}
|
|
7562
|
-
.dso-search-bar .dso-search-bar-input button::before {
|
|
7563
7510
|
content: "";
|
|
7564
7511
|
display: inline-block;
|
|
7565
7512
|
font-size: 1rem;
|
|
@@ -7644,12 +7591,6 @@ optgroup {
|
|
|
7644
7591
|
--link-color: currentColor;
|
|
7645
7592
|
--link-hover-color: currentColor;
|
|
7646
7593
|
--link-visited-color: currentColor;
|
|
7647
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
7648
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7649
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7650
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7651
|
-
background-color: #f2f2f2;
|
|
7652
|
-
color: #191919;
|
|
7653
7594
|
}
|
|
7654
7595
|
.dso-shopping-cart .dso-status a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
7655
7596
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -7664,6 +7605,12 @@ optgroup {
|
|
|
7664
7605
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
7665
7606
|
}
|
|
7666
7607
|
.dso-shopping-cart .dso-status {
|
|
7608
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
7609
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7610
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7611
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7612
|
+
background-color: #f2f2f2;
|
|
7613
|
+
color: #191919;
|
|
7667
7614
|
border: 0;
|
|
7668
7615
|
border-radius: 4px;
|
|
7669
7616
|
box-shadow: none;
|
|
@@ -7702,12 +7649,6 @@ optgroup {
|
|
|
7702
7649
|
--link-color: currentColor;
|
|
7703
7650
|
--link-hover-color: currentColor;
|
|
7704
7651
|
--link-visited-color: currentColor;
|
|
7705
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
7706
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7707
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7708
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7709
|
-
background-color: #f2f2f2;
|
|
7710
|
-
color: #191919;
|
|
7711
7652
|
}
|
|
7712
7653
|
.dso-shopping-cart .dso-contents a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
7713
7654
|
background-image: var(--_dso-di-background-image, url("./di.svg#download-zwart"));
|
|
@@ -7722,9 +7663,14 @@ optgroup {
|
|
|
7722
7663
|
background-image: var(--_dso-di-background-image, url("./di.svg#email-zwart"));
|
|
7723
7664
|
}
|
|
7724
7665
|
.dso-shopping-cart .dso-contents {
|
|
7666
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
7667
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7668
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7669
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7670
|
+
background-color: #f2f2f2;
|
|
7671
|
+
color: #191919;
|
|
7725
7672
|
border: 0;
|
|
7726
7673
|
border-radius: 4px;
|
|
7727
|
-
color: #000;
|
|
7728
7674
|
position: relative;
|
|
7729
7675
|
}
|
|
7730
7676
|
.dso-shopping-cart .dso-contents > .dso-delete {
|
|
@@ -7742,9 +7688,6 @@ optgroup {
|
|
|
7742
7688
|
.dso-shopping-cart ol {
|
|
7743
7689
|
padding-inline-start: 0;
|
|
7744
7690
|
list-style: none;
|
|
7745
|
-
}
|
|
7746
|
-
.dso-shopping-cart ul,
|
|
7747
|
-
.dso-shopping-cart ol {
|
|
7748
7691
|
--_dso-alert-success-border-color: #39870c;
|
|
7749
7692
|
--_dso-alert-error-border-color: #ce3f51;
|
|
7750
7693
|
--_dso-alert-info-border-color: #6ca4d9;
|
|
@@ -7752,12 +7695,6 @@ optgroup {
|
|
|
7752
7695
|
--link-color: currentColor;
|
|
7753
7696
|
--link-hover-color: currentColor;
|
|
7754
7697
|
--link-visited-color: currentColor;
|
|
7755
|
-
--_dso-icon-button-tertiary-color: #191919;
|
|
7756
|
-
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7757
|
-
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7758
|
-
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7759
|
-
background-color: #f2f2f2;
|
|
7760
|
-
color: #191919;
|
|
7761
7698
|
}
|
|
7762
7699
|
.dso-shopping-cart ul a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible),
|
|
7763
7700
|
.dso-shopping-cart ol a:not(.dso-primary, .dso-secondary, .dso-tertiary):is(.download, .download:hover, .download:focus-visible) {
|
|
@@ -7777,6 +7714,12 @@ optgroup {
|
|
|
7777
7714
|
}
|
|
7778
7715
|
.dso-shopping-cart ul,
|
|
7779
7716
|
.dso-shopping-cart ol {
|
|
7717
|
+
--_dso-icon-button-tertiary-color: #191919;
|
|
7718
|
+
--_dso-icon-button-tertiary-hover-color: #4c4c4c;
|
|
7719
|
+
--_dso-icon-button-tertiary-active-color: #173521;
|
|
7720
|
+
--_dso-icon-button-tertiary-disabled-color: #999;
|
|
7721
|
+
background-color: #f2f2f2;
|
|
7722
|
+
color: #191919;
|
|
7780
7723
|
border-radius: 4px;
|
|
7781
7724
|
margin-block-end: 0;
|
|
7782
7725
|
margin-block-start: 0;
|