mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
e5eaa3e99d
Reduces border radius and uses grey border. Bug: T58313 Change-Id: Ia284f1ac99f06c8ec4f7032cd2366687ecb70e19
28 lines
466 B
Plaintext
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 */
|
|
}
|