From e6ee7bef815ccb96ec44b0bc0fbf55829375acd2 Mon Sep 17 00:00:00 2001 From: jp Date: Thu, 13 Aug 2026 18:45:45 +0100 Subject: [PATCH] Force dark input bg with bare input selector - add input, before typed selectors to catch all inputs - include -moz-appearance:none - hardcode #0a0e17 in .modal inputs too --- frontend/src/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/index.css b/frontend/src/index.css index 8f2aee8..46e17e4 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -244,6 +244,7 @@ button:disabled { box-shadow: var(--glow-purple); } +input, input[type="text"], input[type="password"], input[type="email"], @@ -259,6 +260,7 @@ input[type="date"] { -webkit-text-fill-color: var(--text-primary); transition: all 0.2s; -webkit-appearance: none; + -moz-appearance: none; appearance: none; }