@navikt/ds-css 7.7.0 → 7.8.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @navikt/ds-css
2
2
 
3
+ ## 7.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Combobox: Removed clear button, removed tokens staring with `--ac-combobox-clear`, deprecated props `clearButton`/`clearButtonLabel`. ([#3433](https://github.com/navikt/aksel/pull/3433))
8
+
9
+ ### Patch Changes
10
+
11
+ - CSS: Resolved regression where the complete stylesheet was included in scoped 'components.css' file. ([#3427](https://github.com/navikt/aksel/pull/3427))
12
+
3
13
  ## 7.7.0
4
14
 
5
15
  ## 7.6.0
@@ -69,7 +69,6 @@
69
69
  }
70
70
  }
71
71
 
72
- .navds-combobox__button-clear svg,
73
72
  .navds-combobox__button-toggle-list svg,
74
73
  .navds-combobox__list svg {
75
74
  width: var(--__axc-combobox-icon-size);
@@ -203,19 +202,6 @@
203
202
  }
204
203
  }
205
204
 
206
- .navds-combobox__button-clear {
207
- border-radius: var(--ax-border-radius-medium);
208
- color: var(--ax-text-subtle);
209
- display: flex;
210
- justify-content: center;
211
- align-items: center;
212
- cursor: pointer;
213
- background: none;
214
- border: none;
215
- font-size: 1rem;
216
- padding: 0;
217
- }
218
-
219
205
  .navds-combobox__input::-webkit-search-cancel-button {
220
206
  display: none;
221
207
  }
@@ -231,10 +217,7 @@
231
217
  border: none;
232
218
  font-size: 1rem;
233
219
  padding: 0;
234
- }
235
220
 
236
- .navds-combobox__button-clear,
237
- .navds-combobox__button-toggle-list {
238
221
  &:hover {
239
222
  color: var(--ax-text-accent);
240
223
 
@@ -405,10 +388,6 @@
405
388
  }
406
389
 
407
390
  @media (forced-colors: active) {
408
- .navds-combobox__button-clear:hover {
409
- color: highlight;
410
- }
411
-
412
391
  .navds-combobox__wrapper-inner:has(.navds-combobox__input:focus-visible) {
413
392
  outline-color: highlight;
414
393
  }
@@ -105,6 +105,10 @@
105
105
  --__axc-button-border-width: 1px;
106
106
  --__axc-button-border-color: var(--ax-border-default);
107
107
 
108
+ &:not(:hover, :active) {
109
+ background-color: var(--ax-bg-input);
110
+ }
111
+
108
112
  &:hover:not(:disabled) {
109
113
  --__axc-button-border-color: var(--ax-border-accent-strong);
110
114
  }
@@ -1,20 +1,41 @@
1
1
  .navds-guide-panel {
2
- --__ac-guide-panel-guide-size: 4rem;
2
+ --__axc-guide-panel-guide-size: 3.75rem;
3
3
 
4
4
  position: relative;
5
- padding-top: calc(var(--__ac-guide-panel-guide-size) / 2);
5
+ display: flex;
6
+ width: fit-content;
7
+
8
+ &[data-poster="true"],
9
+ &[data-responsive="true"] {
10
+ flex-direction: column;
11
+ align-items: center;
12
+ }
13
+
14
+ &[data-poster="false"] {
15
+ flex-direction: row;
16
+ align-items: flex-start;
17
+ }
18
+
19
+ @media (min-width: 480px) {
20
+ & {
21
+ --__axc-guide-panel-guide-size: 5rem;
22
+ }
23
+
24
+ &[data-responsive="true"] {
25
+ flex-direction: row;
26
+ align-items: flex-start;
27
+ }
28
+ }
6
29
  }
7
30
 
8
31
  .navds-guide {
9
- background: var(--ac-guide-panel-illustration-bg, var(--a-surface-alt-3-subtle));
10
- border: 2px solid var(--ac-guide-panel-border, var(--a-border-alt-3));
11
- border-radius: var(--a-border-radius-full);
32
+ box-sizing: border-box;
33
+ border: 2px solid var(--ax-border-info);
34
+ border-radius: var(--ax-border-radius-full);
12
35
  overflow: hidden;
13
- position: absolute;
14
- width: var(--__ac-guide-panel-guide-size);
15
- height: var(--__ac-guide-panel-guide-size);
16
- left: 50%;
17
- transform: translate(-50%, -50%);
36
+ width: var(--__axc-guide-panel-guide-size);
37
+ height: var(--__axc-guide-panel-guide-size);
38
+ flex-shrink: 0;
18
39
  }
19
40
 
20
41
  .navds-guide svg,
@@ -24,73 +45,70 @@
24
45
  }
25
46
 
26
47
  .navds-guide-panel__content {
27
- background-color: var(--ac-guide-panel-bg, var(--a-surface-default));
28
- border: 2px solid var(--ac-guide-panel-border, var(--a-border-alt-3));
29
- border-radius: var(--a-border-radius-large);
30
- padding: var(--a-spacing-4);
31
- padding-top: var(--a-spacing-12);
32
- }
48
+ background-color: var(--ax-bg-raised);
49
+ border: 2px solid var(--ax-border-info);
50
+ border-radius: var(--ax-border-radius-xlarge);
51
+ position: relative;
33
52
 
34
- @media (min-width: 480px) {
35
- .navds-guide-panel {
36
- --__ac-guide-panel-guide-size: 6.25rem;
53
+ .navds-guide-panel:is([data-poster="true"], [data-responsive="true"]) > & {
54
+ margin-top: var(--ax-spacing-5);
37
55
  }
38
56
 
39
- .navds-guide-panel__content {
40
- padding: var(--a-spacing-8);
41
- padding-top: 4.25rem;
57
+ .navds-guide-panel[data-poster="false"] > & {
58
+ margin-left: var(--ax-spacing-5);
42
59
  }
43
- }
44
60
 
45
- /* not-poster */
46
-
47
- .navds-guide-panel--not-poster {
48
- padding-top: 0;
49
- padding-left: calc(var(--__ac-guide-panel-guide-size) / 2);
50
- }
51
-
52
- .navds-guide-panel--not-poster .navds-guide {
53
- left: 0;
54
- top: var(--a-spacing-5);
55
- transform: none;
61
+ @media (min-width: 480px) {
62
+ .navds-guide-panel[data-responsive="true"] > & {
63
+ margin-top: 0;
64
+ margin-left: var(--ax-spacing-5);
65
+ }
66
+ }
56
67
  }
57
68
 
58
- .navds-guide-panel--not-poster .navds-guide-panel__content {
59
- padding: var(--a-spacing-4);
60
- padding-left: var(--a-spacing-10);
61
- min-height: calc(var(--__ac-guide-panel-guide-size) + var(--a-spacing-5) + var(--a-spacing-5));
62
- }
69
+ .navds-guide-panel__content-inner {
70
+ padding: var(--ax-spacing-3) var(--ax-spacing-4);
71
+ border-radius: var(--ax-border-radius-xlarge);
72
+ background-color: var(--ax-bg-raised);
73
+ position: relative;
74
+ height: 100%;
63
75
 
64
- @media (min-width: 480px) {
65
- .navds-guide-panel--not-poster {
66
- --__ac-guide-panel-guide-size: 5rem;
76
+ .navds-guide-panel[data-poster="false"] & {
77
+ min-height: var(--__axc-guide-panel-guide-size);
67
78
  }
68
79
 
69
- .navds-guide-panel--not-poster .navds-guide-panel__content {
70
- padding: var(--a-spacing-6);
71
- padding-left: var(--a-spacing-14);
80
+ @media (min-width: 480px) {
81
+ & {
82
+ padding: var(--ax-spacing-4) var(--ax-spacing-5);
83
+ }
84
+
85
+ .navds-guide-panel[data-responsive="true"] & {
86
+ min-height: var(--__axc-guide-panel-guide-size);
87
+ }
72
88
  }
73
89
  }
74
90
 
75
- /* responsive-poster (on desktop) */
76
-
77
- @media (min-width: 480px) {
78
- .navds-guide-panel--responsive-poster {
79
- --__ac-guide-panel-guide-size: 5rem;
91
+ .navds-guide-panel__tail {
92
+ position: absolute;
93
+ z-index: 0;
80
94
 
81
- padding-top: 0;
82
- padding-left: calc(var(--__ac-guide-panel-guide-size) / 2);
95
+ .navds-guide-panel:is([data-poster="true"], [data-responsive="true"]) & {
96
+ left: 50%;
97
+ top: calc(var(--ax-spacing-4) * -1 - 2px);
98
+ transform: translateX(-48%);
83
99
  }
84
100
 
85
- .navds-guide-panel--responsive-poster .navds-guide {
86
- left: 0;
87
- top: var(--a-spacing-5);
88
- transform: none;
101
+ .navds-guide-panel[data-poster="false"] & {
102
+ top: calc(var(--__axc-guide-panel-guide-size) / 2);
103
+ left: calc(var(--ax-spacing-5) * -1 - 2px);
104
+ transform: translateY(-48%) rotateZ(-90deg) scaleX(-1);
89
105
  }
90
106
 
91
- .navds-guide-panel--responsive-poster .navds-guide-panel__content {
92
- padding: var(--a-spacing-6);
93
- padding-left: var(--a-spacing-14);
94
- min-height: calc(var(--__ac-guide-panel-guide-size) + var(--a-spacing-5) + var(--a-spacing-5));
107
+ @media (min-width: 480px) {
108
+ .navds-guide-panel[data-responsive="true"] & {
109
+ top: calc(var(--__axc-guide-panel-guide-size) / 2);
110
+ left: calc(var(--ax-spacing-5) * -1 - 2px);
111
+ transform: translateY(-48%) rotateZ(-90deg) scaleX(-1);
112
+ }
95
113
  }
96
114
  }
@@ -10,43 +10,44 @@
10
10
 
11
11
  .navds-table__body {
12
12
  display: table-row-group;
13
+
14
+ & .navds-table__row--shade-on-hover:not(.navds-table__expandable-row--expansion-disabled):hover {
15
+ background-color: var(--ax-bg-neutral-hoverA);
16
+ transition: background-color 70ms cubic-bezier(0.2, 0, 0, 1);
17
+ }
18
+
19
+ & .navds-table__row--shade-on-hover.navds-table__row--selected:hover {
20
+ background-color: var(--ax-bg-accent-hoverA);
21
+ }
13
22
  }
14
23
 
15
24
  .navds-table__row {
16
25
  display: table-row;
17
26
  }
18
27
 
19
- .navds-table__body .navds-table__row--shade-on-hover:not(.navds-table__expandable-row--expansion-disabled):hover {
20
- background-color: var(--ac-table-row-hover, var(--a-bg-subtle));
21
- }
22
-
23
28
  .navds-table__row--selected {
24
- background-color: var(--ac-table-row-selected, var(--a-surface-action-subtle));
25
- }
26
-
27
- .navds-table__body .navds-table__row--shade-on-hover.navds-table__row--selected:hover {
28
- background-color: var(--ac-table-row-selected-hover, var(--a-surface-action-subtle-hover));
29
+ background-color: var(--ax-bg-accent);
29
30
  }
30
31
 
31
- .navds-table--zebra-stripes .navds-table__body :where(.navds-table__row:nth-child(odd):not(.navds-table__row--selected)) {
32
- background-color: var(--ac-table-row-zebra, var(--a-surface-subtle));
33
- }
32
+ .navds-table--zebra-stripes {
33
+ & .navds-table__body :where(.navds-table__row:nth-child(odd):not(.navds-table__row--selected)) {
34
+ background-color: var(--ax-bg-neutral);
35
+ }
34
36
 
35
- .navds-table--zebra-stripes
36
- .navds-table__body
37
- :where(.navds-table__expandable-row:nth-child(4n + 1):not(.navds-table__row--selected)) {
38
- background-color: transparent;
37
+ & .navds-table__body :where(.navds-table__expandable-row:nth-child(4n + 1):not(.navds-table__row--selected)) {
38
+ background-color: transparent;
39
+ }
39
40
  }
40
41
 
41
42
  .navds-table--zebra-stripes .navds-table__body .navds-table__expanded-row:nth-child(4n) {
42
- background-color: var(--ac-table-row-zebra, var(--a-surface-subtle));
43
+ background-color: var(--ax-bg-neutral);
43
44
  }
44
45
 
45
46
  .navds-table__header-cell,
46
47
  .navds-table__data-cell {
47
48
  display: table-cell;
48
- padding: var(--a-spacing-3) var(--a-spacing-2);
49
- border-bottom: 1px solid var(--ac-table-row-border, var(--a-border-default));
49
+ padding: var(--ax-spacing-3) var(--ax-spacing-2);
50
+ border-bottom: 1px solid var(--ax-border-default);
50
51
  text-align: left;
51
52
  }
52
53
 
@@ -67,7 +68,7 @@
67
68
 
68
69
  :where(.navds-table__body .navds-table__row--shade-on-hover:hover) .navds-table__header-cell,
69
70
  :where(.navds-table__body .navds-table__row--shade-on-hover:hover) .navds-table__data-cell {
70
- border-color: var(--ac-table-cell-hover-border, var(--a-border-strong));
71
+ border-color: var(--ax-border-strong);
71
72
  }
72
73
 
73
74
  :where(.navds-table__expandable-row--open:hover) .navds-table__data-cell {
@@ -76,12 +77,12 @@
76
77
 
77
78
  .navds-table--large .navds-table__header-cell,
78
79
  .navds-table--large .navds-table__data-cell {
79
- padding: var(--a-spacing-4) var(--a-spacing-2);
80
+ padding: var(--ax-spacing-4) var(--ax-spacing-2);
80
81
  }
81
82
 
82
83
  .navds-table--small .navds-table__header-cell,
83
84
  .navds-table--small .navds-table__data-cell {
84
- padding: var(--a-spacing-1) var(--a-spacing-2);
85
+ padding: var(--ax-spacing-1) var(--ax-spacing-2);
85
86
  }
86
87
 
87
88
  .navds-table :not(.navds-checkboxes) > .navds-checkbox .navds-checkbox__input {
@@ -103,43 +104,36 @@
103
104
  .navds-table__sort-button {
104
105
  appearance: none;
105
106
  background: none;
106
- color: var(--ac-table-sort-button-text, var(--a-text-action));
107
+ color: var(--ax-text-accent);
107
108
  border: none;
108
109
  cursor: pointer;
109
110
  margin: 0;
110
- padding: var(--a-spacing-4) var(--a-spacing-3);
111
+ padding: var(--ax-spacing-4) var(--ax-spacing-3);
111
112
  width: 100%;
112
113
  display: flex;
113
- gap: var(--a-spacing-2);
114
+ gap: var(--ax-spacing-2);
114
115
  align-items: center;
115
116
  line-height: inherit;
116
117
  font-weight: inherit;
117
118
  }
118
119
 
119
120
  .navds-table--small .navds-table__sort-button {
120
- padding: var(--a-spacing-2) var(--a-spacing-3);
121
+ padding: var(--ax-spacing-2) var(--ax-spacing-3);
121
122
  }
122
123
 
123
124
  .navds-table__sort-button:hover {
124
- background-color: var(--ac-table-sort-button-hover-bg, var(--a-bg-subtle));
125
+ background-color: var(--ax-bg-neutral-hoverA);
125
126
  }
126
127
 
127
128
  .navds-table__sort-button:focus-visible {
128
- outline: none;
129
- box-shadow: inset 0 0 0 2px var(--a-border-focus);
130
- }
131
-
132
- @supports not selector(:focus-visible) {
133
- .navds-table__sort-button:focus {
134
- outline: none;
135
- box-shadow: inset 0 0 0 2px var(--a-border-focus);
136
- }
129
+ outline: 2px solid var(--ax-border-focus);
130
+ outline-offset: -4px;
137
131
  }
138
132
 
139
133
  .navds-table__header-cell[aria-sort="ascending"] .navds-table__sort-button,
140
134
  .navds-table__header-cell[aria-sort="descending"] .navds-table__sort-button {
141
- background-color: var(--ac-table-sort-button-sorted-bg, var(--a-surface-selected));
142
- color: var(--ac-table-sort-button-sorted-text, var(--a-table-sort-button-sorted-text, var(--a-text-action-on-action-subtle)));
135
+ background-color: var(--ax-bg-accent-moderate);
136
+ color: var(--ax-text-accent-strong);
143
137
  }
144
138
 
145
139
  .navds-table__header-cell--align-right .navds-table__sort-button {
@@ -156,7 +150,7 @@
156
150
  }
157
151
 
158
152
  .navds-table__expandable-row:not(.navds-table__expandable-row--open) .navds-table__data-cell {
159
- transition: border-bottom-color 190ms cubic-bezier(0.6, 0.04, 0.98, 0.335);
153
+ transition: border-bottom-color 150ms cubic-bezier(0.95, 0.05, 0.8, 0.04);
160
154
  }
161
155
 
162
156
  .navds-table__expandable-row.navds-table__expandable-row--clickable:not(.navds-table__expandable-row--expansion-disabled):hover {
@@ -168,7 +162,7 @@
168
162
  }
169
163
 
170
164
  .navds-table__expandable-row--open .navds-table__header-cell {
171
- border-color: var(--ac-table-row-border, var(--a-border-default));
165
+ border-color: var(--ax-border-default);
172
166
  }
173
167
 
174
168
  .navds-table__expandable-row--open .navds-table__toggle-expand-cell--open {
@@ -181,11 +175,11 @@
181
175
  }
182
176
 
183
177
  .navds-table--large .navds-table__toggle-expand-cell {
184
- padding: 0 var(--a-spacing-2);
178
+ padding: 0 var(--ax-spacing-2);
185
179
  }
186
180
 
187
181
  .navds-table--small .navds-table__toggle-expand-cell {
188
- padding: var(--a-spacing-1) var(--a-spacing-2);
182
+ padding: var(--ax-spacing-1) var(--ax-spacing-2);
189
183
  }
190
184
 
191
185
  .navds-table__toggle-expand-button {
@@ -194,93 +188,54 @@
194
188
  cursor: pointer;
195
189
  background: transparent;
196
190
  border: none;
197
- border-radius: var(--a-border-radius-medium);
191
+ border-radius: var(--ax-border-radius-medium);
198
192
  height: 2rem;
199
193
  width: 2rem;
200
194
  font-size: 1.5rem;
201
195
  margin: 0 auto;
196
+ transition: background-color 70ms cubic-bezier(0.2, 0, 0, 1);
202
197
  }
203
198
 
204
199
  .navds-table__expandable-icon {
205
- transition: transform 150ms ease-in-out;
200
+ transition: transform 250ms cubic-bezier(0.2, 0, 0, 1);
206
201
  }
207
202
 
208
- .navds-table__toggle-expand-cell:hover {
203
+ .navds-table__expandable-row:not(.navds-table__expandable-row--expansion-disabled) .navds-table__toggle-expand-cell:hover {
209
204
  cursor: pointer;
210
205
  }
211
206
 
212
207
  .navds-table__toggle-expand-button:hover,
213
208
  .navds-table__toggle-expand-cell:hover > .navds-table__toggle-expand-button,
214
209
  .navds-table__expandable-row--clickable:hover .navds-table__toggle-expand-button {
215
- background-color: var(--a-surface-hover);
210
+ background-color: var(--ax-bg-neutral-hoverA);
216
211
  }
217
212
 
218
213
  .navds-table__toggle-expand-cell--open > :where(.navds-table__toggle-expand-button) :where(.navds-table__expandable-icon) {
219
- transform: translateY(0) rotate(180deg);
220
- }
221
-
222
- .navds-table__toggle-expand-button:hover > :where(.navds-table__expandable-icon) {
223
- transform: translateY(1px);
224
- }
225
-
226
- .navds-table__toggle-expand-cell--open > .navds-table__toggle-expand-button:hover > :where(.navds-table__expandable-icon) {
227
- transform: translateY(-1px) rotate(180deg);
214
+ transform: rotateX(180deg);
228
215
  }
229
216
 
230
217
  .navds-table__toggle-expand-button:focus-visible {
231
- outline: none;
232
- box-shadow: var(--a-shadow-focus);
233
- }
234
-
235
- @supports not selector(:focus-visible) {
236
- .navds-table__toggle-expand-button:focus {
237
- outline: none;
238
- box-shadow: var(--a-shadow-focus);
239
- }
218
+ outline: 2px solid var(--ax-border-focus);
240
219
  }
241
220
 
242
221
  .navds-table__expanded-row-cell {
243
222
  padding: 0;
244
- }
245
223
 
246
- .navds-table__expanded-row-cell:empty {
247
- display: none;
224
+ &:empty {
225
+ display: none;
226
+ }
248
227
  }
249
228
 
250
- .navds-table__expanded-row-collapse:not([style*="height: 0px;"]) {
251
- border-bottom: 1px solid var(--ac-table-row-border, var(--a-border-default));
229
+ /* -------------------------- Table ExpandableRow -------------------------- */
230
+ .navds-table__expanded-row-collapse:not([style*="height: 0px;"]),
231
+ .navds-table__expanded-row-collapse[style*="transition:"] {
232
+ border-bottom: 1px solid var(--ax-border-default);
252
233
  }
253
234
 
254
235
  .navds-table__expanded-row-content {
255
- padding: var(--a-spacing-4) calc(var(--a-spacing-2) + 3rem);
236
+ padding: var(--ax-spacing-4) calc(var(--ax-spacing-2) + 3rem);
256
237
  }
257
238
 
258
239
  .navds-table--small .navds-table__expanded-row-content {
259
- padding: var(--a-spacing-2) calc(var(--a-spacing-2) + 3rem);
260
- }
261
-
262
- @media (forced-colors: active) {
263
- .navds-date.navds-date button.rdp-day_selected {
264
- forced-color-adjust: none;
265
- background-color: highlight;
266
- color: highlighttext;
267
- box-shadow: none;
268
- }
269
-
270
- .navds-date.navds-date button {
271
- color: buttontext;
272
- forced-color-adjust: none;
273
- outline: none;
274
- box-shadow: none;
275
- }
276
-
277
- .navds-date button:focus-visible {
278
- color: buttontext;
279
- forced-color-adjust: none;
280
- outline: 2px solid highlight;
281
- }
282
-
283
- .navds-date.navds-date button.rdp-day_disabled {
284
- color: GrayText;
285
- }
240
+ padding: var(--ax-spacing-2) calc(var(--ax-spacing-2) + 3rem);
286
241
  }
@@ -1475,7 +1475,6 @@ li.navds-file-item {
1475
1475
  background-color: var(--a-surface-subtle);
1476
1476
  border-color: var(--a-border-subtle);
1477
1477
  }
1478
- .navds-combobox__button-clear svg,
1479
1478
  .navds-combobox__button-toggle-list svg,
1480
1479
  .navds-combobox__list svg {
1481
1480
  width: var(--__ac-combobox-icon-size);
@@ -1599,18 +1598,6 @@ li.navds-file-item {
1599
1598
  outline: none;
1600
1599
  }
1601
1600
  }
1602
- .navds-combobox__button-clear {
1603
- border-radius: var(--a-border-radius-medium);
1604
- color: var(--ac-combobox-clear-icon, var(--a-text-subtle));
1605
- display: flex;
1606
- justify-content: center;
1607
- align-items: center;
1608
- cursor: pointer;
1609
- background: none;
1610
- border: none;
1611
- font-size: 1rem;
1612
- padding: 0;
1613
- }
1614
1601
  .navds-combobox__input::-webkit-search-cancel-button {
1615
1602
  display: none;
1616
1603
  }
@@ -1626,13 +1613,11 @@ li.navds-file-item {
1626
1613
  font-size: 1rem;
1627
1614
  padding: 0;
1628
1615
  }
1629
- .navds-combobox__button-clear:active:hover,
1630
1616
  .navds-combobox__button-toggle-list:active:hover {
1631
- color: var(--ac-combobox-clear-icon-active, var(--a-text-action));
1617
+ color: var(--a-text-action);
1632
1618
  }
1633
- .navds-combobox__button-clear:hover,
1634
1619
  .navds-combobox__button-toggle-list:hover {
1635
- color: var(--ac-combobox-clear-icon-hover, var(--a-text-action-selected));
1620
+ color: var(--a-text-action-selected);
1636
1621
  }
1637
1622
  .navds-combobox__button-toggle-list:focus-visible {
1638
1623
  box-shadow:
@@ -1781,10 +1766,6 @@ li.navds-file-item {
1781
1766
  }
1782
1767
  }
1783
1768
  @media (forced-colors: active) {
1784
- .navds-combobox__button-clear:hover {
1785
- color: highlight;
1786
- }
1787
-
1788
1769
  .navds-combobox__wrapper-inner:has(.navds-combobox__input:focus-visible) {
1789
1770
  outline-color: highlight;
1790
1771
  }