From 349ae84c8e0376281922b4f53282c880e5b1efb7 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Thu, 30 Jan 2025 20:57:36 +0200 Subject: [PATCH] style(next): tweak combo box-like dropdown buttons --- src/public/stylesheets/theme-next/forms.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/public/stylesheets/theme-next/forms.css b/src/public/stylesheets/theme-next/forms.css index 7705a3d95..6dd077ae9 100644 --- a/src/public/stylesheets/theme-next/forms.css +++ b/src/public/stylesheets/theme-next/forms.css @@ -235,9 +235,16 @@ select.form-select:hover, color: var(--input-hover-color); } +button.select-button.dropdown-toggle:active, +button.select-button.dropdown-toggle.btn:active { + background-color: transparent; + color: var(--select-focus-text-color); +} + select:focus, select.form-select:focus, -.select-button.dropdown-toggle:focus { +.select-button.dropdown-toggle:focus, +.select-button.dropdown-toggle.btn:focus { box-shadow: unset; outline: 3px solid var(--input-focus-outline-color); outline-offset: 0;