diff options
author | Byron Jones <bjones@mozilla.com> | 2013-07-09 09:28:32 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-07-09 09:28:32 +0200 |
commit | e6ac0382efc250199c9ebd6dc4337fdb6f2358ce (patch) | |
tree | e031123873855c862dc85a50ef2f8ace953d182a /skins/contrib/Mozilla | |
parent | 8ae2fd8745f8a2a2b52a2c36756186656dcea9c4 (diff) | |
download | bugzilla-e6ac0382efc250199c9ebd6dc4337fdb6f2358ce.tar.gz bugzilla-e6ac0382efc250199c9ebd6dc4337fdb6f2358ce.tar.xz |
revert textareas back to monospace
https://bugzilla.mozilla.org/show_bug.cgi?id=886229
Diffstat (limited to 'skins/contrib/Mozilla')
-rw-r--r-- | skins/contrib/Mozilla/global.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/skins/contrib/Mozilla/global.css b/skins/contrib/Mozilla/global.css index f52d557ae..58936a6d8 100644 --- a/skins/contrib/Mozilla/global.css +++ b/skins/contrib/Mozilla/global.css @@ -8,7 +8,7 @@ body { color: #404040; } -body, td, th, input, select, textarea, option, optgroup, .text_input { +body, td, th, input, select, option, optgroup, .text_input { font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; } @@ -29,10 +29,14 @@ select[multiple], textarea, input[type=text], .text_input, .yui-ac-input, input box-shadow: inset 0 1px rgba(0, 0, 0, 0.1); background: white; padding: 5px; - font-size: 1em; color: #404040; } +select[multiple], input[type=text], .text_input, .yui-ac-input, input { + font-size: 1em; +} + + select[multiple]:focus, textarea:focus, input[type=text]:focus, .text-input:focus, -yui-ac-input:focus, input:focus { border-color: #42a4e0; -webkit-box-shadow: 0 0 0 2px rgba(73,173,227,0.4); |