mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-18 21:15:50 +00:00
d28f09df31
This is the final step of the process described at <https://www.mediawiki.org/wiki/Separating_skins_from_core_MediaWiki>. Corresponding core change: Idfc38503. Change-Id: I84fcf7ce6385b8323544cafe6912a00f1886d20d
25 lines
519 B
Plaintext
25 lines
519 B
Plaintext
@import "../variables";
|
|
|
|
/* mediawiki.notification */
|
|
|
|
// This wrapper class is needed to ensure these rules have larger CSS
|
|
// selector specificity than default styles
|
|
.mediawiki {
|
|
.mw-notification-area {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.mw-notification-area-layout {
|
|
top: 7em;
|
|
}
|
|
|
|
.mw-notification {
|
|
background-color: #fff;
|
|
background-color: rgba(255, 255, 255, 0.93);
|
|
padding: 0.75em 1.5em;
|
|
border: solid 1px @content-border-color;
|
|
border-radius: 0.75em;
|
|
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.125);
|
|
}
|
|
}
|