From 48253e0c60887b2b2321bb5e9a77b90a70c58b6c Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Fri, 29 Nov 2024 23:59:01 +0200 Subject: [PATCH] Tweak the quick search button --- src/public/stylesheets/theme-next.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/public/stylesheets/theme-next.css b/src/public/stylesheets/theme-next.css index 94b6c980c..da6c927ac 100644 --- a/src/public/stylesheets/theme-next.css +++ b/src/public/stylesheets/theme-next.css @@ -463,15 +463,15 @@ #left-pane .quick-search:focus-within:has(input:not(:placeholder-shown)) .search-button { /* Matches when the input has a value and the focus is inside the search box */ background: var(--left-pane-item-action-button-background) !important; - color: var(--quick-search-focus-color) !important; + color: var(--left-pane-item-action-button-color) !important; transition: background-color 500ms ease-out !important; } -#left-pane .quick-search:focus-within .search-button:hover, +html body #left-pane .quick-search:focus-within .search-button:hover, #left-pane .quick-search .search-button.show { /* Hover state */ - background: var(--left-pane-item-action-button-background) !important; - color: var(--quick-search-focus-color) !important; + background: var(--left-pane-item-action-button-hover-background) !important; + color: var(--left-pane-item-action-button-color) !important; transition: background-color 100ms ease-out !important; }