VectorGOLEM/skinStyles/mediawiki.notification.less
Ed Sanders e5eaa3e99d Match mediawiki.notification styles to OOUI dialogs
Reduces border radius and uses grey border.

Bug: T58313
Change-Id: Ia284f1ac99f06c8ec4f7032cd2366687ecb70e19
2017-04-10 18:25:13 +00:00

28 lines
466 B
Plaintext

@import 'mediawiki.ui/variables';
/* mediawiki.notification */
.mw-notification-area {
font-size: 0.8em;
}
.mw-notification-area-layout {
top: 7em;
}
.mw-notification {
background-color: #fff;
padding: 0.75em 1.5em;
border: 1px solid @colorFieldBorder;
border-radius: 2px;
box-shadow: 0 2px 2px 0 rgba( 0, 0, 0, 0.25 );
}
.mw-notification-type-warn {
border-color: #f5be00; /* yellow */
}
.mw-notification-type-error {
border-color: #d33; /* red */
}