diff options
author | Guy Pyrzak <guy.pyrzak@gmail.com> | 2010-10-03 01:21:29 +0200 |
---|---|---|
committer | Guy Pyrzak <guy.pyrzak@gmail.com> | 2010-10-03 01:21:29 +0200 |
commit | b97716803c8247cf7d625590ba67aea631dc8c7b (patch) | |
tree | 58b28c694a78f322fa8e419dc5d0ea4158127446 | |
parent | 7e3b3b4032f9b6a76a43abe257fe73ae3a686128 (diff) | |
download | bugzilla-b97716803c8247cf7d625590ba67aea631dc8c7b.tar.gz bugzilla-b97716803c8247cf7d625590ba67aea631dc8c7b.tar.xz |
Bug 597762: When filing bugs, the validation messages do not draw enough attention to themselves
r=mkanat, a=mkanat
-rw-r--r-- | skins/standard/global.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index feb21b535..5c11b82fa 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -551,12 +551,13 @@ input.required, select.required, span.required_explanation { .validation_error_text { font-size: 120%; - color: #152446; + color: #B70000; font-weight: bold; } -.validation_error_field { - border: 2px solid #152446; +.validation_error_field, input.validation_error_field { + border: 2px solid #B70000; + background-color: #FFEBEB; } /*****************/ |