1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-31 12:49:38 +00:00

Lighter colors for warning and error messages.

git-svn-id: http://svn.redmine.org/redmine/trunk@15593 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-06-30 18:28:44 +00:00
parent 7fb55bc363
commit 74dd6af8e0

View File

@ -756,10 +756,10 @@ input.autocomplete.ajax-loading {
/***** Flash & error messages ****/
#errorExplanation, div.flash, .nodata, .warning, .conflict {
padding: 4px 4px 4px 30px;
padding: 6px 4px 6px 30px;
margin-bottom: 12px;
font-size: 1.1em;
border: 2px solid;
border: 1px solid;
border-radius: 3px;
}
@ -768,7 +768,7 @@ div.flash {margin-top: 8px;}
div.flash.error, #errorExplanation {
background: url(../images/exclamation.png) 8px 50% no-repeat;
background-color: #ffe3e3;
border-color: #dd0000;
border-color: #d88;
color: #880000;
}
@ -781,16 +781,16 @@ div.flash.notice {
div.flash.warning, .conflict {
background: url(../images/warning.png) 8px 5px no-repeat;
background-color: #FFEBC1;
border-color: #FDBF3B;
background-color: #F3EDD1;
border-color: #eadbbc;
color: #A6750C;
text-align: left;
}
.nodata, .warning {
text-align: center;
background-color: #FFEBC1;
border-color: #FDBF3B;
background-color: #F3EDD1;
border-color: #eadbbc;
color: #A6750C;
}