mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
875d31b03b
Removing unnecessary Less vars, which are not in use any more. Also slightly modifying code comment for better code style. Change-Id: I6e2417561afb03225eaca99ea93135f975a51593
92 lines
1.9 KiB
Plaintext
92 lines
1.9 KiB
Plaintext
@import 'mediawiki.mixins.less';
|
|
@import 'minerva.variables.less';
|
|
@import 'minerva.mixins.less';
|
|
|
|
// Reusable components
|
|
//
|
|
// Styleguide 6.
|
|
|
|
// Cloaked element
|
|
//
|
|
// Use this for elements that are clickable but not visible
|
|
// Examples: A file input who's parent is styled with an icon
|
|
// A shield that covers the entire screen and is made more opaque
|
|
// under a different circumstance
|
|
//
|
|
// Markup:
|
|
// <div style="width:50px; height:50px; border:1px solid red;">
|
|
// <input type="file" class="cloaked-element">
|
|
// </div>
|
|
//
|
|
// Styleguide 6.1.
|
|
.cloaked-element {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.view-border-box *,
|
|
.view-border-box {
|
|
.box-sizing( border-box );
|
|
}
|
|
|
|
.mw-mf-image-replacement {
|
|
font-style: italic;
|
|
color: @colorGray7;
|
|
text-decoration: underline;
|
|
border: dotted 1px @colorGray12;
|
|
padding: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
textarea {
|
|
padding: 5px 0 5px 5px;
|
|
width: 100%;
|
|
resize: none;
|
|
}
|
|
|
|
// We hide the table of contents unless the user is viewing in tablet resolution or higher
|
|
.toc-mobile,
|
|
// 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 .no-js-only,
|
|
.client-js .mw-redirectedfrom,
|
|
// FIXME: Use generic rule for print stylesheets
|
|
.printfooter,
|
|
.jsonly {
|
|
display: none;
|
|
}
|
|
|
|
/* TODO: Fix specificity */
|
|
/* stylelint-disable no-descending-specificity */
|
|
.no-js-only,
|
|
.client-js .jsonly {
|
|
display: inherit;
|
|
}
|
|
|
|
/* stylelint-enable no-descending-specificity */
|
|
.position-fixed {
|
|
// use !important to override more specific rules (e.g. in Overlay.less)
|
|
position: fixed !important;
|
|
}
|
|
|
|
.touch-events {
|
|
:focus {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
// currently used to hide talk button
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
// 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 {
|
|
background-color: @chromeColor;
|
|
}
|