From: Tom Hughes Date: Sun, 1 Feb 2015 10:15:00 +0000 (+0000) Subject: Default background for input fields to white X-Git-Tag: live~4274 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d423ae91370b08dcad6ccba041c2e234659531ec?hp=2f6f627a76a6783ba8dec0f933186e2251039b1d 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 --- diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index 0ca782ed5..7038bb69c 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;