From 20c3a59e2c81bb00be943ccc51efe175c08eaa4e Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sun, 9 Sep 2018 14:43:30 +0200 Subject: [PATCH] add input color to cope with browser themes --- client/src/sass/application.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index bf4cccaaf..8d2bfb077 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -50,11 +50,12 @@ strong { input.readonly { /* Force blank on readonly inputs */ - background-color: #fff !important; + background-color: var(--inputColor) !important; } input, textarea { outline: none; + color: var(--mainForegroundColor); } label { -- 2.41.0