mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
7280d255c0
* Remove ambiguity in imports - say the file extension 'less' for all instances of variables and mixins. * Separate toast styles from drawer styles so they can be imported separately * associate header-action selector with its parent (.overlay-header) not parent's parent (.overlay) so it can be imported and rendered without the Overlay. Change-Id: Ib7e19a440ba095d6424d35305fb41d643ca9764c
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
@import 'mediawiki.mixins.less';
|
|
@import '../../minerva.less/minerva.variables.less';
|
|
@import '../../minerva.less/minerva.mixins.less';
|
|
|
|
.view-border-box *,
|
|
.view-border-box {
|
|
.box-sizing( border-box );
|
|
}
|
|
|
|
/* Hide the table of contents `.toc-mobile` unless the user is viewing in tablet resolution or
|
|
* higher */
|
|
.toc-mobile,
|
|
/* Table of contents `.toc` as provided by parser has no styling, this is a temporary measure
|
|
* until we are able to commit more time to Minerva on desktop */
|
|
.toc,
|
|
/* We also need a more specific rule for tablet non-JS users who will load skins.minerva.tablet.styles */
|
|
.client-nojs .toc-mobile,
|
|
.client-js .mw-redirectedfrom,
|
|
/* FIXME: Use generic rule for print stylesheets */
|
|
.printfooter,
|
|
.jsonly {
|
|
display: none;
|
|
}
|
|
|
|
/* TODO: Fix specificity */
|
|
/* stylelint-disable no-descending-specificity */
|
|
.client-js .jsonly {
|
|
display: inherit;
|
|
}
|
|
|
|
// currently used to hide talk button
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
#mw-mf-viewport {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
// We need to ensure the content has the chrome background - otherwise it will
|
|
// overlap the menu during the main menu reveal/hide animation
|
|
#mw-mf-page-center {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
position: relative;
|
|
background-color: @chromeColor;
|
|
}
|
|
|
|
.content {
|
|
// Create a new stacking context. `transform: translateZ( 0 );` would be preferred but that
|
|
// triggers a browser bug which affects the edit cards in Visual Editor:
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=20574
|
|
position: relative;
|
|
z-index: @z-indexBase;
|
|
}
|