[mod] clear_search display change

Instead of using display:none on all its child elements,
the element itself is now display: none'd
This removes it from the keyboard navigation when it is hidden/search is empty
This commit is contained in:
Denperidge 2025-02-26 18:43:44 +01:00 committed by Markus Heiser
parent 6a609b632a
commit 86ae232ab4

View File

@ -166,7 +166,7 @@ button.category_button {
color: var(--color-search-background-hover); color: var(--color-search-background-hover);
} }
&.empty * { &.empty {
display: none; display: none;
} }
} }