dso-toolkit 84.0.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/dso.css +310 -363
  3. package/dist/dso.css.map +1 -1
  4. package/dist/dso.min.css +1 -1
  5. package/dist/dso.min.css.map +1 -1
  6. package/dist/index.js +1 -0
  7. package/package.json +8 -8
  8. package/src/components/alert/alert.mixins.scss +5 -16
  9. package/src/components/alert/alert.scss +5 -8
  10. package/src/components/attachments-counter/attachments-counter.scss +2 -5
  11. package/src/components/badge/badge.mixins.scss +2 -6
  12. package/src/components/banner/banner.mixins.scss +4 -12
  13. package/src/components/breadcrumbs/breadcrumbs.mixins.scss +5 -7
  14. package/src/components/button/button.mixins.scss +33 -46
  15. package/src/components/context/context.scss +7 -10
  16. package/src/components/definition-list/definition-list.scss +1 -4
  17. package/src/components/delete/delete.mixins.scss +4 -8
  18. package/src/components/description/description.scss +2 -4
  19. package/src/components/document-header/document-header.scss +7 -15
  20. package/src/components/dropdown-menu/dropdown-menu.mixins.scss +9 -12
  21. package/src/components/dropdown-menu/dropdown-menu.scss +14 -26
  22. package/src/components/footer/footer.scss +5 -8
  23. package/src/components/form/form-group-collection.scss +2 -4
  24. package/src/components/form-control/form-control.mixins.scss +15 -17
  25. package/src/components/form-group/form-group.scss +5 -8
  26. package/src/components/form-group/select/form-group-select.scss +6 -9
  27. package/src/components/grid/grid.scss +3 -10
  28. package/src/components/heading/heading.mixins.scss +2 -6
  29. package/src/components/highlight-box/highlight-box.mixins.scss +3 -9
  30. package/src/components/highlight-box/highlight-box.scss +3 -6
  31. package/src/components/info/info.scss +2 -5
  32. package/src/components/insert/insert.mixins.scss +2 -4
  33. package/src/components/label/label.mixins.scss +4 -12
  34. package/src/components/link/link.mixins.scss +23 -10
  35. package/src/components/link-list/link-list.mixins.scss +1 -4
  36. package/src/components/link-list/link-list.scss +3 -6
  37. package/src/components/modal/modal.mixins.scss +10 -19
  38. package/src/components/modal/modal.scss +4 -7
  39. package/src/components/navbar/navbar.mixins.scss +9 -15
  40. package/src/components/search-bar/search-bar.scss +21 -31
  41. package/src/components/shopping-cart/shopping-cart.scss +15 -25
  42. package/src/components/viewer-grid/viewer-grid.scss +1 -4
  43. package/src/di.scss +6 -10
  44. package/src/global/functions/contrast-color.functions.scss +14 -11
  45. package/src/global/mixins/set-colors.mixin.scss +40 -40
  46. package/src/global/spacing.scss +4 -0
@@ -25,20 +25,15 @@
25
25
  @include base($modifiers);
26
26
  }
27
27
 
28
- & {
29
- @include _shared-variant($defaults-map, $variant);
30
- }
28
+ @include _shared-variant($defaults-map, $variant);
31
29
 
32
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
33
- & {
34
- border-width: 1px;
35
- border-style: solid;
36
- border-radius: button-variables.$border-radius;
37
- line-height: typography.$line-height-base;
38
- min-inline-size: button-variables.$min-inline-size;
39
- padding-block: button-variables.$block-padding;
40
- padding-inline: button-variables.$inline-padding;
41
- }
30
+ border-width: 1px;
31
+ border-style: solid;
32
+ border-radius: button-variables.$border-radius;
33
+ line-height: typography.$line-height-base;
34
+ min-inline-size: button-variables.$min-inline-size;
35
+ padding-block: button-variables.$block-padding;
36
+ padding-inline: button-variables.$inline-padding;
42
37
 
43
38
  &:hover {
44
39
  @include _shared-variant($defaults-map, $variant, $hover-map, "-hover");
@@ -61,10 +56,8 @@
61
56
 
62
57
  &.dso-extra-small {
63
58
  @include small();
64
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
65
- & {
66
- padding-block: 9px;
67
- }
59
+
60
+ padding-block: 9px;
68
61
  }
69
62
 
70
63
  @if ($icon-only) {
@@ -141,9 +134,7 @@
141
134
  }
142
135
 
143
136
  @mixin small() {
144
- & {
145
- line-height: typography.$root-font-size-base;
146
- }
137
+ line-height: typography.$root-font-size-base;
147
138
 
148
139
  dso-icon,
149
140
  &.extern::after,
@@ -361,13 +352,11 @@
361
352
  @include base($modifiers);
362
353
  }
363
354
 
364
- & {
365
- border: 0;
366
- color: button-variables.$tertiary-color;
367
- line-height: 1;
368
- padding: 0;
369
- background-color: transparent;
370
- }
355
+ border: 0;
356
+ color: button-variables.$tertiary-color;
357
+ line-height: 1;
358
+ padding: 0;
359
+ background-color: transparent;
371
360
 
372
361
  &[disabled] {
373
362
  color: colors.$grasgroen-40;
@@ -456,26 +445,24 @@
456
445
  @mixin map() {
457
446
  @include secondary($modifiers: false);
458
447
 
459
- & {
460
- @include map-box-shadow();
448
+ @include map-box-shadow();
461
449
 
462
- border: 0;
463
- font-weight: 600;
464
- margin-inline-end: units.$u2;
465
- padding-block: units.$u1;
466
- padding-inline: units.$u2;
467
- white-space: nowrap; // stylelint-disable-line declaration-property-value-disallowed-list -- No word wrapping in buttons on maps
468
-
469
- &:focus,
470
- &:focus-visible {
471
- outline-offset: -1px;
472
- }
450
+ border: 0;
451
+ font-weight: 600;
452
+ margin-inline-end: units.$u2;
453
+ padding-block: units.$u1;
454
+ padding-inline: units.$u2;
455
+ white-space: nowrap; // stylelint-disable-line declaration-property-value-disallowed-list -- No word wrapping in buttons on maps
473
456
 
474
- &:has(span.sr-only):has(dso-icon) {
475
- padding: units.$u1;
476
- min-inline-size: auto;
477
- block-size: button-variables.$map-size;
478
- inline-size: button-variables.$map-size;
479
- }
457
+ &:focus,
458
+ &:focus-visible {
459
+ outline-offset: -1px;
460
+ }
461
+
462
+ &:has(span.sr-only):has(dso-icon) {
463
+ padding: units.$u1;
464
+ min-inline-size: auto;
465
+ block-size: button-variables.$map-size;
466
+ inline-size: button-variables.$map-size;
480
467
  }
481
468
  }
@@ -48,16 +48,13 @@
48
48
  @include form-control.root();
49
49
  @include di.variant("caret-down");
50
50
 
51
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
52
- & {
53
- -moz-appearance: none;
54
- -webkit-appearance: none;
55
- background-position: calc(100% - #{units.$u1});
56
- background-repeat: no-repeat;
57
- background-size: icon.$size icon.$size;
58
- padding-inline-end: units.$u4;
59
- inline-size: auto;
60
- }
51
+ -moz-appearance: none;
52
+ -webkit-appearance: none;
53
+ background-position: calc(100% - #{units.$u1});
54
+ background-repeat: no-repeat;
55
+ background-size: icon.$size icon.$size;
56
+ padding-inline-end: units.$u4;
57
+ inline-size: auto;
61
58
  }
62
59
  }
63
60
  }
@@ -58,10 +58,7 @@ dl {
58
58
  @include rich-content.children();
59
59
  @include utilities.clearfix();
60
60
 
61
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
62
- & {
63
- margin-inline-start: 0;
64
- }
61
+ margin-inline-start: 0;
65
62
 
66
63
  &:last-of-type {
67
64
  margin-inline-end: 0;
@@ -6,12 +6,10 @@
6
6
  @mixin root($strikethrough: true) {
7
7
  @include set-colors.apply(colors.$rood-20, "delete");
8
8
 
9
- & {
10
- --_dso-ozon-content-toggletip-color: colors.$zwart;
9
+ --_dso-ozon-content-toggletip-color: colors.$zwart;
11
10
 
12
- @if ($strikethrough) {
13
- @include strikethrough();
14
- }
11
+ @if ($strikethrough) {
12
+ @include strikethrough();
15
13
  }
16
14
  }
17
15
 
@@ -24,8 +22,6 @@
24
22
  // stylelint-disable media-feature-name-no-unknown -- counter line-through displaying as underline in firefox
25
23
  // http://browserhacks.com/#hack-48ca6fc2947b7850c571a2f69bdbffbd
26
24
  @media screen and (min--moz-device-pixel-ratio: 0) {
27
- & {
28
- font-family: sans-serif;
29
- }
25
+ font-family: sans-serif;
30
26
  }
31
27
  }
@@ -12,10 +12,8 @@ $content-selector: ".dso-description-content";
12
12
  &::before {
13
13
  @include di.base("times-zwart");
14
14
 
15
- & {
16
- content: "";
17
- display: block;
18
- }
15
+ content: "";
16
+ display: block;
19
17
  }
20
18
  }
21
19
  }
@@ -14,12 +14,9 @@
14
14
  .dso-document-header {
15
15
  @include set-colors.apply(colors.$grijs-5, "document-header");
16
16
 
17
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
18
- & {
19
- padding-block: units.$u1 calc(grid-variables.$grid-gutter-width * 0.5);
20
- padding-inline: units.$u3;
21
- margin-inline: -#{units.$u2} -#{units.$u2};
22
- }
17
+ padding-block: units.$u1 calc(grid-variables.$grid-gutter-width * 0.5);
18
+ padding-inline: units.$u3;
19
+ margin-inline: -#{units.$u2} -#{units.$u2};
23
20
 
24
21
  &:has(.dso-document-header-status) {
25
22
  padding-block-start: 0;
@@ -96,10 +93,8 @@
96
93
  &::after {
97
94
  @include di.base("chevron-up-bosgroen");
98
95
 
99
- & {
100
- content: "";
101
- display: inline-block;
102
- }
96
+ content: "";
97
+ display: inline-block;
103
98
  }
104
99
 
105
100
  span {
@@ -164,11 +159,8 @@
164
159
  .dso-document-header-toggle-status {
165
160
  @include button.tertiary();
166
161
 
167
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
168
- & {
169
- color: colors.$zwart;
170
- font-weight: normal;
171
- }
162
+ color: colors.$zwart;
163
+ font-weight: normal;
172
164
  }
173
165
 
174
166
  .dso-document-header-map-action {
@@ -80,18 +80,15 @@
80
80
  button {
81
81
  @include link.reverse();
82
82
 
83
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
84
- & {
85
- clear: both;
86
- color: dropdown-menu-variables.$link-color;
87
- display: block;
88
- font-weight: 400;
89
- line-height: 1.5;
90
- padding-block: 3px;
91
- padding-inline: dropdown-menu-variables.$inline-padding;
92
- text-decoration: none;
93
- white-space: nowrap; // stylelint-disable-line declaration-property-value-disallowed-list -- We don't want wrapping in Dropdown items
94
- }
83
+ clear: both;
84
+ color: dropdown-menu-variables.$link-color;
85
+ display: block;
86
+ font-weight: 400;
87
+ line-height: 1.5;
88
+ padding-block: 3px;
89
+ padding-inline: dropdown-menu-variables.$inline-padding;
90
+ text-decoration: none;
91
+ white-space: nowrap; // stylelint-disable-line declaration-property-value-disallowed-list -- We don't want wrapping in Dropdown items
95
92
 
96
93
  &:hover,
97
94
  &:focus {
@@ -28,12 +28,9 @@
28
28
  &::after {
29
29
  @include di.base("chevron-down");
30
30
 
31
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
32
- & {
33
- margin-inline-start: units.$u1 * 0.5;
34
- position: relative;
35
- inset-block-start: -2px;
36
- }
31
+ margin-inline-start: units.$u1 * 0.5;
32
+ position: relative;
33
+ inset-block-start: -2px;
37
34
  }
38
35
 
39
36
  &:hover {
@@ -79,10 +76,7 @@
79
76
  @include dropdown-menu.children();
80
77
  @include icons();
81
78
 
82
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
83
- & {
84
- position: relative;
85
- }
79
+ position: relative;
86
80
 
87
81
  &.dso-open {
88
82
  @include icons-open();
@@ -98,14 +92,11 @@
98
92
  &::before {
99
93
  @include di.base("check-wit", units.$u3);
100
94
 
101
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
102
- & {
103
- content: "";
104
- display: block;
105
- float: inline-start;
106
- margin-inline-start: units.$u4 * -1;
107
- margin-inline-end: units.$u1;
108
- }
95
+ content: "";
96
+ display: block;
97
+ float: inline-start;
98
+ margin-inline-start: units.$u4 * -1;
99
+ margin-inline-end: units.$u1;
109
100
  }
110
101
  }
111
102
  }
@@ -146,14 +137,11 @@ dso-dropdown-menu {
146
137
  &::before {
147
138
  @include di.base("check-wit", units.$u3);
148
139
 
149
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
150
- & {
151
- content: "";
152
- display: block;
153
- float: inline-start;
154
- margin-inline-start: units.$u4 * -1;
155
- margin-inline-end: units.$u1;
156
- }
140
+ content: "";
141
+ display: block;
142
+ float: inline-start;
143
+ margin-inline-start: units.$u4 * -1;
144
+ margin-inline-end: units.$u1;
157
145
  }
158
146
  }
159
147
  }
@@ -14,14 +14,11 @@ footer {
14
14
 
15
15
  @include set-colors.apply(colors.$grijs-5, "footer");
16
16
 
17
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
18
- & {
19
- border-block-start: 1px solid css-footer-variables.$border-color;
20
- display: block;
21
- margin-block-start: units.$u6;
22
- padding-block-end: units.$u6;
23
- padding-block-start: units.$u3;
24
- }
17
+ border-block-start: 1px solid css-footer-variables.$border-color;
18
+ display: block;
19
+ margin-block-start: units.$u6;
20
+ padding-block-end: units.$u6;
21
+ padding-block-start: units.$u3;
25
22
 
26
23
  .dso-link-list {
27
24
  @include link-list.exotic();
@@ -10,10 +10,8 @@
10
10
  margin-block-end: units.$u2;
11
11
 
12
12
  > legend {
13
- & {
14
- border-block-end: 0;
15
- margin-block-end: form-variables.$fieldset-separator-unit;
16
- }
13
+ border-block-end: 0;
14
+ margin-block-end: form-variables.$fieldset-separator-unit;
17
15
 
18
16
  &,
19
17
  h1,
@@ -7,23 +7,21 @@
7
7
  @use "form-control.variables" as form-control-variables;
8
8
 
9
9
  @mixin root() {
10
- & {
11
- display: block;
12
- inline-size: 100%;
13
- block-size: form-control-variables.$block-size;
14
- padding-block: units.$padding-base-block;
15
- padding-inline: (units.$padding-base-inline + 2);
16
- font-size: typography.$root-font-size-base;
17
- line-height: typography.$line-height-base;
18
- color: colors.$input-color;
19
- background-color: colors.$input-bg;
20
- background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
21
- border: form-control-variables.$border-width solid colors.$input-border;
22
- border-radius: form-control-variables.$input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
23
- transition:
24
- border-color ease-in-out 0.15s,
25
- box-shadow ease-in-out 0.15s;
26
- }
10
+ display: block;
11
+ inline-size: 100%;
12
+ block-size: form-control-variables.$block-size;
13
+ padding-block: units.$padding-base-block;
14
+ padding-inline: (units.$padding-base-inline + 2);
15
+ font-size: typography.$root-font-size-base;
16
+ line-height: typography.$line-height-base;
17
+ color: colors.$input-color;
18
+ background-color: colors.$input-bg;
19
+ background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
20
+ border: form-control-variables.$border-width solid colors.$input-border;
21
+ border-radius: form-control-variables.$input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
22
+ transition:
23
+ border-color ease-in-out 0.15s,
24
+ box-shadow ease-in-out 0.15s;
27
25
 
28
26
  @include utilities.placeholder(colors.$input-color-placeholder);
29
27
 
@@ -25,7 +25,7 @@
25
25
  @use "textarea/form-group-textarea";
26
26
 
27
27
  .form-group {
28
- margin-block-end: form-group-variables.$form-group-margin-bottom;
28
+ margin-block-end: var(--_dso-form-group-margin-block-end, form-group-variables.$form-group-margin-bottom);
29
29
 
30
30
  + .form-group:not(.dso-static),
31
31
  + .dso-form-buttons {
@@ -137,13 +137,10 @@
137
137
  &::before {
138
138
  @include di.base("status-error", form-group-variables.$field-invalid-icon-size);
139
139
 
140
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
141
- & {
142
- content: "";
143
- display: block;
144
- inset-inline-start: 0;
145
- position: absolute;
146
- }
140
+ content: "";
141
+ display: block;
142
+ inset-inline-start: 0;
143
+ position: absolute;
147
144
  }
148
145
  }
149
146
  }
@@ -21,15 +21,12 @@
21
21
  select:not([multiple]) {
22
22
  @include di.variant("caret-down");
23
23
 
24
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
25
- & {
26
- -moz-appearance: none;
27
- -webkit-appearance: none;
28
- background-position: calc(100% - #{units.$u1});
29
- background-repeat: no-repeat;
30
- background-size: icon.$size icon.$size;
31
- padding-inline-end: units.$u4;
32
- }
24
+ -moz-appearance: none;
25
+ -webkit-appearance: none;
26
+ background-position: calc(100% - #{units.$u1});
27
+ background-repeat: no-repeat;
28
+ background-size: icon.$size icon.$size;
29
+ padding-inline-end: units.$u4;
33
30
 
34
31
  &:disabled {
35
32
  @include di.variant("caret-down-disabled");
@@ -83,11 +83,8 @@ form {
83
83
  }
84
84
  }
85
85
 
86
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
87
- & {
88
- display: flex;
89
- flex-wrap: wrap;
90
- }
86
+ display: flex;
87
+ flex-wrap: wrap;
91
88
  }
92
89
 
93
90
  &.dso-banner {
@@ -99,16 +96,12 @@ form {
99
96
 
100
97
  min-block-size: 352px;
101
98
  overflow: hidden;
99
+ background-size: 0; // background image killed off here, to be shown in the ::before
102
100
 
103
101
  @media only screen and (min-width: media-query-breakpoints.$screen-sm-min) {
104
102
  padding-block-start: units.$u3;
105
103
  }
106
104
 
107
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
108
- & {
109
- background-size: 0; // background image killed off here, to be shown in the ::before
110
- }
111
-
112
105
  &.no-button-banner {
113
106
  min-block-size: 296px;
114
107
  }
@@ -36,9 +36,7 @@
36
36
  font-weight: 700;
37
37
 
38
38
  @media screen and (min-width: media-query-breakpoints.$screen-xs-min) {
39
- & {
40
- font-size: units.$font-size-h2;
41
- }
39
+ font-size: units.$font-size-h2;
42
40
  }
43
41
  }
44
42
 
@@ -48,9 +46,7 @@
48
46
  font-weight: 600;
49
47
 
50
48
  @media screen and (min-width: media-query-breakpoints.$screen-xs-min) {
51
- & {
52
- font-size: units.$font-size-h3;
53
- }
49
+ font-size: units.$font-size-h3;
54
50
  }
55
51
  }
56
52
 
@@ -62,9 +62,7 @@
62
62
  &#{$border-selector}:not(#{$grey-selector}, #{$yellow-selector}) {
63
63
  @include set-colors.apply(colors.$wit, "highlight-box");
64
64
 
65
- & {
66
- border-color: colors.$grijs-20;
67
- }
65
+ border-color: colors.$grijs-20;
68
66
  }
69
67
 
70
68
  &#{$has-counter-selector} {
@@ -83,15 +81,11 @@
83
81
  max-inline-size: unset;
84
82
 
85
83
  @container (min-width: 360px) and (max-width: 470px) {
86
- & {
87
- aspect-ratio: 3 / 1;
88
- }
84
+ aspect-ratio: 3 / 1;
89
85
  }
90
86
 
91
87
  @container (min-width: 471px) {
92
- & {
93
- aspect-ratio: 3.5 / 1;
94
- }
88
+ aspect-ratio: 3.5 / 1;
95
89
  }
96
90
  }
97
91
 
@@ -19,12 +19,9 @@
19
19
 
20
20
  @include step-counter.step-counter();
21
21
 
22
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
23
- & {
24
- container-type: inline-size;
25
- position: relative;
26
- z-index: 1;
27
- }
22
+ container-type: inline-size;
23
+ position: relative;
24
+ z-index: 1;
28
25
 
29
26
  &.dso-yellow,
30
27
  &:not(.dso-border):not(.dso-white) {
@@ -20,11 +20,8 @@
20
20
  &::before {
21
21
  @include di.base("times-zwart");
22
22
 
23
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
24
- & {
25
- content: "";
26
- display: inline-block;
27
- }
23
+ content: "";
24
+ display: inline-block;
28
25
  }
29
26
  }
30
27
  }
@@ -10,9 +10,7 @@
10
10
  @mixin root() {
11
11
  @include set-colors.apply(colors.$lime-20, "insert");
12
12
 
13
- & {
14
- box-shadow: insert-variables.$box-shadow;
13
+ box-shadow: insert-variables.$box-shadow;
15
14
 
16
- --_dso-ozon-content-toggletip-color: colors.$zwart;
17
- }
15
+ --_dso-ozon-content-toggletip-color: colors.$zwart;
18
16
  }
@@ -19,9 +19,7 @@
19
19
  text-decoration: line-through;
20
20
  }
21
21
 
22
- & {
23
- @include set-colors.apply(label-variables.$default-bg-color, "label");
24
- }
22
+ @include set-colors.apply(label-variables.$default-bg-color, "label");
25
23
 
26
24
  &.dso-label-info {
27
25
  @include set-colors.apply(label-variables.$info-bg-color, "label");
@@ -46,11 +44,8 @@
46
44
  &.dso-label-bright {
47
45
  @include set-colors.apply(label-variables.$bright-bg-color, "label");
48
46
 
49
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
50
- & {
51
- outline: 1px solid label-variables.$bright-border-color;
52
- outline-offset: -1px;
53
- }
47
+ outline: 1px solid label-variables.$bright-border-color;
48
+ outline-offset: -1px;
54
49
  }
55
50
 
56
51
  &.dso-label-attention {
@@ -60,10 +55,7 @@
60
55
  &.dso-label-filter {
61
56
  @include set-colors.apply(label-variables.$filter-bg-color, "label");
62
57
 
63
- // stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
64
- & {
65
- border-inline-start: 5px solid label-variables.$filter-border-color;
66
- }
58
+ border-inline-start: 5px solid label-variables.$filter-border-color;
67
59
  }
68
60
 
69
61
  &.dso-label-toegevoegd {