From 707d406ee9b4849c3997d10c41715b0a01d4be15 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Tue, 14 Jan 2025 01:51:18 +0200 Subject: [PATCH] style(next): fix the background of disabled input action buttons --- src/public/stylesheets/theme-next/forms.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/public/stylesheets/theme-next/forms.css b/src/public/stylesheets/theme-next/forms.css index e2e09f4fa..7ac9d0e1a 100644 --- a/src/public/stylesheets/theme-next/forms.css +++ b/src/public/stylesheets/theme-next/forms.css @@ -97,6 +97,7 @@ input::selection, background: transparent; padding: 0 4px; + /* Workaround to set the "color" property. */ --muted-text-color: var(--input-action-button-color); } @@ -107,6 +108,8 @@ input::selection, .input-group a.disabled { opacity: .5; + /* Workaround to set the "background" property. */ + --button-disabled-background-color: transparent; } .input-group .input-clearer-button {