From 7fa6eb0a60c3d69a6347b48b0b8c7848fc65c436 Mon Sep 17 00:00:00 2001 From: Ryan Hayle Date: Thu, 8 Mar 2018 18:56:15 +0000 Subject: Explicitly set background colour for input fields This is a simple solution to #2832 that explicitly sets the background of text input and textareas to white on the options page, which is necessary for users running with a dark theme. This does not cover the options popup.--- pages/options.css | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/options.css b/pages/options.css index 1ebff063..b74aaa22 100644 --- a/pages/options.css +++ b/pages/options.css @@ -153,6 +153,7 @@ input[type="text"], textarea { border: 1px solid #bfbfbf; border-radius: 2px; color: #444; + background-color: white; font: inherit; padding: 3px; } -- cgit v1.2.3