2021-02-02 10:04:37 +00:00
|
|
|
@import '../resources/common/variables.less';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
|
|
|
/* mediawiki.notification */
|
|
|
|
|
2017-04-10 15:07:45 +00:00
|
|
|
.mw-notification-area {
|
2019-09-26 23:43:42 +00:00
|
|
|
font-size: @font-size-notification;
|
2017-04-10 15:07:45 +00:00
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2017-04-10 15:07:45 +00:00
|
|
|
.mw-notification-area-layout {
|
|
|
|
top: 7em;
|
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2017-04-10 15:07:45 +00:00
|
|
|
.mw-notification {
|
2020-04-23 21:41:05 +00:00
|
|
|
border: @border-base;
|
|
|
|
border-radius: @border-radius-base;
|
2017-04-10 12:22:04 +00:00
|
|
|
box-shadow: 0 2px 2px 0 rgba( 0, 0, 0, 0.25 );
|
2017-04-10 15:07:45 +00:00
|
|
|
}
|
2021-12-07 19:41:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* With the sticky header enabled in modern Vector,
|
|
|
|
* We lower the z-index to make the user menu and language picker
|
|
|
|
* useable when a notification is present.
|
|
|
|
*/
|
|
|
|
.vector-sticky-header-enabled .mw-notification-area {
|
|
|
|
transition: @transition-sticky-header;
|
|
|
|
z-index: @z-index-menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When the sticky header is open in modern Vector,
|
|
|
|
* and the notification bar is also open, the notification
|
|
|
|
* should be moved so that it doesn't obstruct the sticky header
|
|
|
|
*/
|
2022-05-05 20:54:20 +00:00
|
|
|
.vector-sticky-header-visible .mw-notification-area-overlay > .mw-notification-area-floating {
|
2021-12-07 19:41:46 +00:00
|
|
|
transform: translateY( @height-sticky-header );
|
|
|
|
}
|