Default background for input fields to white

Some browsers apparently default form fields to a background based
on the desktop theme, and don't inherit from body.

Fixes #883
This commit is contained in:
Tom Hughes 2015-02-01 10:15:00 +00:00
parent 2f6f627a76
commit d423ae9137

View file

@ -1871,6 +1871,7 @@ input[type="email"],
input[type="url"], input[type="url"],
input[type="password"], input[type="password"],
textarea { textarea {
background-color: #fff;
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 2px 5px; padding: 2px 5px;
margin: 0; margin: 0;