From 6bc7da9f2f1dc9123117d5f27b7cb8f27b13eead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Mon, 8 Jun 2026 09:02:37 +0200 Subject: [PATCH] Fix button visibility on select option hover --- common/components/search_select.py | 2 +- games/static/js/search_select.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/components/search_select.py b/common/components/search_select.py index 456dcc7..e302eb7 100644 --- a/common/components/search_select.py +++ b/common/components/search_select.py @@ -88,7 +88,7 @@ _FILTER_OPTION_BUTTONS_CLASS = "flex gap-1 ml-2 shrink-0" # keeps the edge visible against the brand hover fill. _FILTER_ACTION_BUTTON_CLASS = ( "w-5 h-5 flex items-center justify-center text-xs font-bold rounded text-body " - "border border-default-medium " + "border border-brand " "hover:bg-brand hover:text-white hover:border-brand-strong" ) _FILTER_MODIFIER_ROW_CLASS = ( diff --git a/games/static/js/search_select.js b/games/static/js/search_select.js index 1f732b0..c45d42d 100644 --- a/games/static/js/search_select.js +++ b/games/static/js/search_select.js @@ -48,7 +48,7 @@ var FILTER_OPTION_BUTTONS_CLASS = "flex gap-1 ml-2 shrink-0"; var FILTER_ACTION_BUTTON_CLASS = "w-5 h-5 flex items-center justify-center text-xs font-bold rounded text-body " + - "border border-default-medium " + + "border border-brand " + "hover:bg-brand hover:text-white hover:border-brand-strong"; var DEBOUNCE_MS = 500;