From b1e954b3c91c6fa01f0e8d3a1ca31f709ddfd4b9 Mon Sep 17 00:00:00 2001 From: syeopite Date: Sat, 6 Jul 2024 13:24:25 -0700 Subject: [PATCH] Search: Apply bg on elements rather than container This changes allows moving the individual elements that composes the search bar around without losing the background on the elements. --- static/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 8fa4b31..28a3c1b 100644 --- a/static/style.css +++ b/static/style.css @@ -662,11 +662,14 @@ button.submit:hover > svg { stroke: var(--accent); } } #search_sort { - background: var(--highlighted); border-radius: 5px; overflow: auto; } +#search_sort > * { + background: var(--highlighted); +} + #search_sort > #search { border: 0; background: transparent;