Add info flash message

This commit is contained in:
Sam Georges 2014-07-25 17:24:43 +10:00
parent 5d832a2f7b
commit a475773c7c
3 changed files with 5 additions and 0 deletions

View File

@ -11039,6 +11039,9 @@ body.dropdown-open .dropdown-overlay {
.flash-message.warning {
background: #f0ad4e;
}
.flash-message.info {
background: #5fb6f5;
}
.flash-message button {
float: none;
position: absolute;

View File

@ -32,6 +32,7 @@
&.success { background: @color-flash-success-bg; }
&.error { background: @color-flash-error-bg; }
&.warning { background: @color-flash-warning-bg; }
&.info { background: @color-flash-info-bg; }
button {
float: none;

View File

@ -148,6 +148,7 @@
@color-flash-success-bg: #8da85e;
@color-flash-error-bg: #cc3300;
@color-flash-warning-bg: #f0ad4e;
@color-flash-info-bg: #5fb6f5;
@color-flash-text: #ffffff;
@color-filter-text: #666666;