mediawiki-extensions-Echo/modules/styles/mw.echo.ui.mobile.less
jdlrobson 088697a73d Echo notification oo-ui-popupWidget-anchor should point to icon
In Vector, these rules result in the anchor pointing to the wrong
place. They seem to be improve things in Minerva, so these are restricted
to that skin.

Bug: T276566
Change-Id: If871ab59fea519b48568781ffd9ddf6640006385
2021-06-23 08:47:09 -07:00

20 lines
438 B
Plaintext

@import 'mediawiki.ui/variables';
// `!important` rules override the inline styles provides by clippable.
@media all and ( max-width: @width-breakpoint-tablet ) {
.skin-minerva .mw-echo-ui-overlay {
.oo-ui-clippableElement-clippable {
width: 100% !important;
}
.oo-ui-popupWidget-popup {
width: 100% !important;
}
.mw-echo-ui-notificationBadgeButtonPopupWidget-popup {
left: 1px !important;
right: 2px;
}
}
}