mediawiki-extensions-Echo/modules/styles/mw.echo.ui.mobile.less
jdlrobson d7cc28fbcb Properly scoped style improvements to Echo OOUI dialog in desktop Minerva
This reverts commit ca5e5c85af and then
scopes the rules.

Bug: T241090
Bug: T242493
Change-Id: I0e6a4f6d235f34dc8f05a5e7ea5272d6465b80aa
2020-02-11 07:41:23 +08:00

20 lines
424 B
Plaintext

@import 'mediawiki.ui/variables';
// `!important` rules override the inline styles provides by clippable.
@media all and ( max-width: @width-breakpoint-tablet ) {
.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;
}
}
}