-
diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.scss b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.scss
index ef6090212..e728ca16b 100644
--- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.scss
+++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.scss
@@ -1,3 +1,5 @@
+@import "/src/theme";
+
.badge-corner {
position: absolute;
top: -8px;
@@ -34,8 +36,13 @@
.btn-group > label.disabled {
filter: brightness(0.5);
+
+ &.active {
+ background-color: lighten($primary, 30%);
+ }
}
+
small > svg {
margin-top: -2px;
}
diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss
index 25abac773..4735eb3a9 100644
--- a/src-ui/src/theme_dark.scss
+++ b/src-ui/src/theme_dark.scss
@@ -231,6 +231,10 @@ $border-color-dark-mode: #47494f;
border-color: darken($primary-dark-mode, 10%);
color: $text-color-dark-mode-accent;
}
+
+ &.disabled.active {
+ background-color: darken($primary-dark-mode, 10%);
+ }
}
.btn-outline-secondary {