From 1cd18835c2648a3dcda9ed5d62e530258d8d116c Mon Sep 17 00:00:00 2001 From: bijx Date: Wed, 7 Jan 2026 22:31:45 -0500 Subject: [PATCH] fix: Input text fields no longer have transparent backgrounds after tailwind update (#2809) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Woah 🚨🚨 massive PR alert!!! Kidding, this is a really small fix that adds back the white background on text input fields since (I believe) the tailwind updates made recently reset the styles here. This just adds it back via CSS. ### Before image image ## After image image ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: bijx --- src/client/styles.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/client/styles.css b/src/client/styles.css index 37563229b..77ba3d990 100644 --- a/src/client/styles.css +++ b/src/client/styles.css @@ -16,6 +16,13 @@ border-color: var(--color-gray-200, currentColor); } + input, + textarea, + select { + background-color: #fff; + color: #000; + } + input::placeholder, textarea::placeholder { color: var(--color-gray-400);