diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-12 11:25:25 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-12 11:25:25 +0000 |
commit | e9ba8a4494228647a632c76a29bad4921cf20f9b (patch) | |
tree | 13cd15cafb4580e3c329b5f02d25cf0dad49225f /public/stylesheets | |
parent | 58ea44a4628326fc6fb2ed2192de0b90edc0e150 (diff) | |
download | redmine-e9ba8a4494228647a632c76a29bad4921cf20f9b.tar.gz redmine-e9ba8a4494228647a632c76a29bad4921cf20f9b.zip |
Changed AR error messages style (same as flash errors).
Fixed flash styles for IE6.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@610 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/application.css | 47 |
1 files changed, 10 insertions, 37 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 732d02753..fec62b92c 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -315,36 +315,6 @@ table.list tbody th { color: #777; } -/********** Validation error messages *************/ -#errorExplanation { - width: 400px; - border: 0; - padding: 7px; - padding-bottom: 3px; - margin-bottom: 0px; -} - -#errorExplanation h2 { - text-align: left; - font-weight: bold; - padding: 5px 5px 10px 26px; - font-size: 1em; - margin: -7px; - background: url(../images/alert.png) no-repeat 6px 6px; -} - -#errorExplanation p { - color: #333; - margin-bottom: 0; - padding: 5px; -} - -#errorExplanation ul li { - font-size: 1em; - list-style: none; - margin-left: -16px; -} - /*========== Drop down menu ==============*/ div.menu { background-color: #FFFFFF; @@ -696,24 +666,27 @@ padding-left: 26px; vertical-align: bottom; } -/***** Flash messages ****/ -#flash { +/***** Flash & error messages ****/ +#flash div, #errorExplanation { padding: 4px 4px 4px 30px; margin-bottom: 16px; - font-size: 1.2em; + font-size: 1.1em; border: 2px solid; } -#flash.error { - background: url(../images/false.png) 8px 50% no-repeat; +#flash div.error, #errorExplanation { + background: url(../images/false.png) 8px 5px no-repeat; background-color: #ffe3e3; border-color: #dd0000; color: #550000; } -#flash.notice { - background: url(../images/true.png) 8px 50% no-repeat; +#flash div.notice { + background: url(../images/true.png) 8px 5px no-repeat; background-color: #dfffdf; border-color: #9fcf9f; color: #005f00; } + +#errorExplanation ul { margin-bottom: 0px; } +#errorExplanation ul li { list-style: none; margin-left: -16px;} |