From 593222dacba5e2327f2bb6bba314ce73327e5d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Guti=C3=A9rrez=20Hermoso?= Date: Mon, 12 Jan 2015 10:21:14 -0500 Subject: [PATCH] Give textareas a default background colour. My default background colour for textareas is inherited from my OS colours, which is a dark grey. Thus setting a foreground colour without setting a background colour makes it impossible for me to type in textareas. This patch should fix that. --- app/assets/stylesheets/application.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index c59606e..76345f7 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -118,6 +118,7 @@ button, select, textarea { color: #555; + background-color: white; line-height: 1.2em; padding: 3px 5px; } @@ -142,6 +143,7 @@ input:focus, textarea:focus { border-color: #888; color: #303030; + background-color: white; outline: 0; } textarea:disabled {