mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-18 10:52:27 +00:00
f83acdf5d3
Added a new media query to fix an error in the Special:Notification preferences button. Bug: T280839 Change-Id: I1a4cdc9111c6ada3c79f6ec1f1fa2e40dc240238
24 lines
513 B
Plaintext
24 lines
513 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;
|
|
}
|
|
|
|
.mw-echo-ui-specialHelpMenuWidget-menu {
|
|
width: auto !important;
|
|
}
|
|
|
|
.oo-ui-popupWidget-popup {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.mw-echo-ui-notificationBadgeButtonPopupWidget-popup {
|
|
left: 1px !important;
|
|
right: 2px;
|
|
}
|
|
}
|
|
}
|