summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_dropdown.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/_sila/_dropdown.scss')
-rw-r--r--src/assets/styles/bmc/_sila/_dropdown.scss9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/assets/styles/bmc/_sila/_dropdown.scss b/src/assets/styles/bmc/_sila/_dropdown.scss
index 261d91f1..983d8bdd 100644
--- a/src/assets/styles/bmc/_sila/_dropdown.scss
+++ b/src/assets/styles/bmc/_sila/_dropdown.scss
@@ -4,7 +4,8 @@
padding: $spacer / 2;
border-radius: $border-radius;
@include themify($themes) {
- background-color: themed("surface-primary");
+ background-color: themed("dropdown-bg");
+ border: 1px solid themed("dropdown-border");
}
}
@@ -17,7 +18,7 @@
color: themed("text-primary");
}
&:hover {
- background-color: $red-hover;
+ background-color: $red-dropdown-hover;
}
&:active {
background-color: $red-active;
@@ -48,7 +49,9 @@
&:focus {
outline: none;
background-color: transparent;
- box-shadow: inset 0 0 0 2px theme-color("primary");
+ @include themify($themes) {
+ box-shadow: inset 0 0 0 2px theme-color("primary");
+ }
}
}
}