mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
5b628b5109
* Make sure the badge for desktop when initialised points to the right thing * Make sure the dialog takes up the full screen and the Clippable bug does not interfere with the display of the pane Bug: T241090 Change-Id: I6c5588ee689633cef413ef27449aeeea341d7a97
37 lines
823 B
Plaintext
37 lines
823 B
Plaintext
@import 'mediawiki.ui/variables';
|
|
|
|
@media all and ( max-width: @width-breakpoint-tablet ) {
|
|
// On mobile screens position the anchor arrow correctly so it points to the
|
|
// notifications badge.
|
|
.oo-ui-popupWidget-anchor {
|
|
// Override the inline style.
|
|
left: auto !important;
|
|
right: 68px;
|
|
}
|
|
}
|
|
|
|
.mw-echo-ui-overlay {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
top: auto;
|
|
|
|
.mw-echo-ui-actionMenuPopupWidget-menu {
|
|
padding: 0.5em;
|
|
font-size: 1.5em;
|
|
box-shadow: none;
|
|
border: 1px solid #54595d;
|
|
// Override the positioning of the menu
|
|
// so it is "stuck" on the bottom of the
|
|
// notification overlay panel
|
|
position: static !important;
|
|
bottom: 0 !important;
|
|
left: 0 !important;
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
height: auto !important;
|
|
top: auto !important;
|
|
}
|
|
}
|