diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bb181..ecde80a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +- FIX: Set different dropdown colors in dark theme. + # 0.0.4 - FIX: Focus search bar after loading the index if it was previously focused. diff --git a/src/theme/SearchBar/autocomplete.css b/src/theme/SearchBar/autocomplete.css index b808e97..5700c3a 100644 --- a/src/theme/SearchBar/autocomplete.css +++ b/src/theme/SearchBar/autocomplete.css @@ -24,4 +24,10 @@ .d-s-l-a .aa-dropdown-menu .aa-suggestion em { font-weight: bold; font-style: normal; -} \ No newline at end of file +} +html[data-theme='dark'] .d-s-l-a .aa-dropdown-menu { + background-color: #1e2125; +} +html[data-theme='dark'] .d-s-l-a .aa-dropdown-menu .aa-suggestion.aa-cursor { + background-color: #3578e5; +}