mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
Standardising notification types
- CSS classes directly correspond to notification 'types' - Error, warn and info are reasonably standard terms for descending priority 'log levels', using these to denote red, orange and blue notifications.
This commit is contained in:
parent
0c5bb03dcc
commit
9074b87205
@ -840,7 +840,7 @@ nav {
|
||||
padding: 10px 43px 10px 57px;
|
||||
margin: 0 0 15px 0;
|
||||
color: rgba(255,255,255,0.9);
|
||||
background: $orange;
|
||||
background: $blue;
|
||||
position:relative;
|
||||
box-shadow: $shadow;
|
||||
|
||||
@ -891,7 +891,14 @@ nav {
|
||||
background: $red;
|
||||
}
|
||||
|
||||
.notification-alert {
|
||||
|
||||
.notification-warn {
|
||||
@extend %notification;
|
||||
@include icon($i-info);
|
||||
background: $orange;
|
||||
}
|
||||
|
||||
.notification-info {
|
||||
@extend %notification;
|
||||
@include icon($i-info);
|
||||
background: $blue;
|
||||
|
Loading…
Reference in New Issue
Block a user