UX: add active highlight for breadcrumb navigation (#27422)

This commit is contained in:
chapoi 2024-06-11 18:29:44 +02:00 committed by GitHub
parent 74e7bed7d5
commit dc2be1a9bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -19,6 +19,13 @@
} }
} }
&.has-selection {
.category-drop-header {
color: var(--quaternary);
border-color: var(--quaternary);
}
}
.select-kit-row { .select-kit-row {
flex-direction: column; flex-direction: column;
align-items: flex-start; align-items: flex-start;

View File

@ -14,6 +14,13 @@
.tag-drop-header { .tag-drop-header {
color: var(--primary-high); color: var(--primary-high);
} }
&.has-selection {
.tag-drop-header {
color: var(--quaternary);
border-color: var(--quaternary);
}
}
} }
} }
} }