Merge "Style for notification types"

This commit is contained in:
jenkins-bot 2015-08-04 22:55:58 +00:00 committed by Gerrit Code Review
commit 82d7a370f2

View file

@ -21,4 +21,14 @@ body {
border-radius: 0.75em;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.125);
}
.mw-notification-type-warn {
border-color: #f5be00; /* yellow */
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.125), 0 0 0.75em rgba(245, 190, 0, 0.25) inset;
}
.mw-notification-type-error {
border-color: red;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.125), 0 0 0.75em rgba(255, 0, 0, 0.25) inset;
}
}