diff --git a/src/styles/_dark.scss b/src/styles/_dark.scss index 61052664460..9ea595481cd 100644 --- a/src/styles/_dark.scss +++ b/src/styles/_dark.scss @@ -185,21 +185,23 @@ html.dark { .quick-search-container { background: $gray-900; border-top-color: $gray-700; + + //highlight + .dropdown-item.arrow-focus { + background-color: rgba($orange,.1); + } + //dropdown item + .dropdown-item, + .search-prompt { + color: $light; + } + .dropdown-item:hover, + .dropdown-item:active { + background-color: $gray-800; + color: $light !important; + } } - //highlight - .dropdown-item.arrow-focus { - background-color: rgba($orange,.1); - } - //dropdown item - .dropdown-item, - .search-prompt { - color: $light; - } - .dropdown-item:hover, - .dropdown-item:active { - background-color: $gray-800; - color: $light !important; - } + //Marks .search-content mark { color: rgba($orange, .5); diff --git a/src/styles/_search.scss b/src/styles/_search.scss index 08c3f5e13aa..77d2a7fc166 100644 --- a/src/styles/_search.scss +++ b/src/styles/_search.scss @@ -61,16 +61,18 @@ box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15); } -.dropdown-item { - font-size: 1.3rem; -} +.search-pane { + .dropdown-item { + font-size: 1.3rem; + } -.dropdown-item.arrow-focus { - background-color: $gray-100; -} + .dropdown-item.arrow-focus { + background-color: $gray-100; + } -.dropdown-item:hover { - background: $gray-100; + .dropdown-item:hover { + background: $gray-100; + } } .search-text-summary { @@ -90,4 +92,4 @@ .ais-Highlight { font-size: 1.1rem; font-weight: 500; -} \ No newline at end of file +}