mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-14 09:54:45 +00:00
7eab78cb5e
T140804 dropped the support for deviceTabletWidth in core (https://gerrit.wikimedia.org/r/#/c/mediawiki/core/+/451648/9/includes/DefaultSettings.php) This causes errors in these skinStyle files which are presumably not being checked with CI. Update these usages to use width-breakpoint-tablet instead Bug: T202021 Change-Id: Ie804f24275c99c939687d59cca9d62204fd74518
29 lines
578 B
Plaintext
29 lines
578 B
Plaintext
@import '../../minerva.less/minerva.variables';
|
|
|
|
.notifications-overlay .overlay-content {
|
|
top: @headerHeight;
|
|
bottom: @headerHeight;
|
|
|
|
.mw-echo-ui-notificationsWidget {
|
|
top: @headerHeight;
|
|
}
|
|
}
|
|
|
|
@media all and ( min-width: @width-breakpoint-tablet ) {
|
|
.notifications-overlay {
|
|
.mw-echo-notification {
|
|
padding: 1.75em @contentPaddingTablet;
|
|
}
|
|
.overlay-header .cancel {
|
|
// 0 because we want to have some tappable area to the left of the icon
|
|
left: 0;
|
|
}
|
|
.overlay-header {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
// T170903
|
|
max-width: none;
|
|
}
|
|
}
|
|
}
|