Add info flash message
This commit is contained in:
parent
5d832a2f7b
commit
a475773c7c
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue