From 4efc86b9a3fc50bf6af8197ac6ca13065a91802a Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Feb 2025 22:15:53 +0200 Subject: [PATCH] style(next): fix the up / down buttons of the "Find in text" input box --- src/public/stylesheets/theme-next/forms.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/public/stylesheets/theme-next/forms.css b/src/public/stylesheets/theme-next/forms.css index 5c92497f2..e2e5c71e1 100644 --- a/src/public/stylesheets/theme-next/forms.css +++ b/src/public/stylesheets/theme-next/forms.css @@ -216,6 +216,7 @@ input::selection, .input-group button, .input-group a { display: flex; + align-items: center; --bs-border-width: 0; --accented-background-color: transparent; background: transparent; @@ -228,15 +229,21 @@ input::selection, .input-group button:hover, .input-group a:hover { --muted-text-color: var(--input-action-button-hover); + color: var(--input-action-button-hover); } .input-group button:focus-visible, .input-group a:focus-visible { + box-shadow: unset; outline: transparent; border: transparent; text-shadow: 0 0 3px var(--input-action-button-hover); } +.input-group button:active { + background: transparent !important; +} + .input-group a.disabled { opacity: .5; /* Workaround to set the "background" property. */