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.
This commit is contained in:
Jordi Gutiérrez Hermoso 2015-01-12 10:21:14 -05:00
parent d01e9f3c3f
commit 593222dacb

View file

@ -118,6 +118,7 @@ button,
select, select,
textarea { textarea {
color: #555; color: #555;
background-color: white;
line-height: 1.2em; line-height: 1.2em;
padding: 3px 5px; padding: 3px 5px;
} }
@ -142,6 +143,7 @@ input:focus,
textarea:focus { textarea:focus {
border-color: #888; border-color: #888;
color: #303030; color: #303030;
background-color: white;
outline: 0; outline: 0;
} }
textarea:disabled { textarea:disabled {