From 86ae232ab4362bea19ac2015cf3673e7dcea5018 Mon Sep 17 00:00:00 2001 From: Denperidge Date: Wed, 26 Feb 2025 18:43:44 +0100 Subject: [PATCH] [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 --- client/simple/src/less/search.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/simple/src/less/search.less b/client/simple/src/less/search.less index e11f8f625..4daa1cd97 100644 --- a/client/simple/src/less/search.less +++ b/client/simple/src/less/search.less @@ -166,7 +166,7 @@ button.category_button { color: var(--color-search-background-hover); } - &.empty * { + &.empty { display: none; } }