mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
95 lines
2 KiB
Plaintext
95 lines
2 KiB
Plaintext
|
@import 'mediawiki.mixins.less';
|
||
|
@import 'minerva.variables.less';
|
||
|
@import 'minerva.mixins.less';
|
||
|
|
||
|
@imageReplacementColor: #706e6e;
|
||
|
@inputsBoxBorderColor: #e1e1e1;
|
||
|
|
||
|
// 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: solid 1px 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;
|
||
|
}
|