From d423ae91370b08dcad6ccba041c2e234659531ec Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 1 Feb 2015 10:15:00 +0000 Subject: [PATCH] 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 --- app/assets/stylesheets/common.css.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index 0ca782ed54..7038bb69cd 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -1871,6 +1871,7 @@ input[type="email"], input[type="url"], input[type="password"], textarea { + background-color: #fff; border: 1px solid #ccc; padding: 2px 5px; margin: 0;