mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-12 06:16:01 +00:00
3d74f38a51
Depends-on: I22e9c0d67b69ed37310c47db55bedb67f51efc90 Bug: T375832 Change-Id: I6e9e29fd5b140ae8eb4e6b011d558ea778c92028
44 lines
896 B
Plaintext
44 lines
896 B
Plaintext
@import '../../minerva.less/minerva.variables.less';
|
|
|
|
.notifications-overlay {
|
|
visibility: visible;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
// needs to be more specific than .overlay rules
|
|
.notifications-overlay.navigation-drawer {
|
|
display: block;
|
|
width: auto;
|
|
right: 0;
|
|
box-shadow: @box-shadow-drop-medium;
|
|
transform: translate( 100%, 0 );
|
|
transition: transform @transition-duration-medium @transition-timing-function-menu;
|
|
|
|
&.visible {
|
|
transform: translate( 0, 0 );
|
|
}
|
|
}
|
|
|
|
@media all and ( min-width: @min-width-breakpoint-tablet ) {
|
|
@rightDrawerLeftOffset: 100% - @drawer-width-right;
|
|
|
|
.notifications-overlay.navigation-drawer {
|
|
left: @rightDrawerLeftOffset;
|
|
|
|
.overlay-header {
|
|
margin: 0; // T210191
|
|
width: 100%; // T218731
|
|
// T170903
|
|
max-width: none;
|
|
|
|
.cancel {
|
|
// 0 because we want to have some tappable area to the left of the icon
|
|
left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|