mediawiki-skins-MinervaNeue/skinStyles/ext.echo.styles.special/SpecialNotificationsOverlay.less
Jan Drewniak 73885e01c2 Change z-index of page-issues read-more link
Changes z-index from 1 to 0 on page-issues link to avoid showing
white background when navigation menu slides over.

Also changing z-index value on SpecialNotificationsOverlay.less
from the hard-coded value of 2 to @z-indexOverOverlay
(which is set to 2).

Bug: T214550
Change-Id: If033755115f2a266869fb87c4314798c422d88ed
2019-02-07 19:37:02 -05:00

73 lines
1.5 KiB
Plaintext

@import '../../minerva.less/minerva.variables';
.mw-echo-ui-notificationsInboxWidget {
&-cell {
&-placeholder {
display: table-cell;
width: 100%;
}
}
&-sidebar {
// echo notificationsInboxWidget cell
// in the desktop version is hidden
// in the mobile version.
&.mw-echo-ui-notificationsInboxWidget-cell {
display: none;
}
}
&-main {
&-toolbar {
&-top {
display: table;
.row {
display: table-row;
}
}
&-affixed {
position: fixed;
z-index: @z-indexOverOverlay;
top: 0;
background-color: @skinContentBgColor;
padding-top: 0.5em;
padding-bottom: 0.5em;
box-shadow: 0 2px 0 0 rgba( 0, 0, 0, 0.1 );
}
&-readState {
// echo notificationsInboxWidget cell for readState
// in the desktop version is hidden
// in the mobile version.
&.mw-echo-ui-notificationsInboxWidget-cell {
display: none;
}
}
&-settings,
&-pagination {
// display for echo notificationsInboxWidget cell pagination
// is changed from display: inline-block in the desktop version to
// display: table-cell in the mobile version.
&.mw-echo-ui-notificationsInboxWidget-cell {
display: table-cell;
}
}
&-nav-filter {
&.mw-echo-ui-notificationsInboxWidget-cell {
display: table-cell;
}
}
}
}
// height for echo notificationsInboxWidget
// is changed from 8em in the desktop version to
// 4em in the mobile version.
& &-toolbarWrapper {
height: 4em;
}
}