diff options
| author | Ryan Hayle | 2018-03-08 18:56:15 +0000 | 
|---|---|---|
| committer | GitHub | 2018-03-08 18:56:15 +0000 | 
| commit | 7fa6eb0a60c3d69a6347b48b0b8c7848fc65c436 (patch) | |
| tree | e2f87f3777ab794452cf9c524a59fbb1e5d88e8f /pages | |
| parent | 011c8991184f10839d7afa1ff8d7bfad0d6bd968 (diff) | |
| download | vimium-7fa6eb0a60c3d69a6347b48b0b8c7848fc65c436.tar.bz2 | |
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.
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/options.css | 1 | 
1 files changed, 1 insertions, 0 deletions
| 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;  } | 
