mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-04 18:48:15 +00:00
842a91590a
* eslint-config-wikimedia: 0.27.0 → 0.28.2 The following rules are failing and were disabled: * tests/selenium: * implicit-arrow-linebreak * no-mixed-spaces-and-tabs * grunt-banana-checker: 0.11.1 → 0.13.0 * stylelint-config-wikimedia: 0.16.1 → 0.17.2 The following rules no longer exist and were removed: * stylistic/selector-list-comma-newline-after * braces: 3.0.2 → 3.0.3 * https://github.com/advisories/GHSA-grv7-fg5c-xmjg Change-Id: Ia94454c1da778f241085714e1601a0233d547570
140 lines
2.8 KiB
Plaintext
140 lines
2.8 KiB
Plaintext
// Headings in mobile
|
|
//
|
|
// All headings styled in the content div will be styled like so.
|
|
//
|
|
// Markup:
|
|
// <div class="pre-content">
|
|
// <h1 id="mw-first-heading">Heading 1</h1>
|
|
// </div>
|
|
// <div class="content">
|
|
// <p>Paragraph of text</p>
|
|
// <div class="mw-heading mw-heading2"><h2>Heading 2</h2></div>
|
|
// <p>Paragraph of text</p>
|
|
// <div class="mw-heading mw-heading3"><h3>Heading 3</h3></div>
|
|
// <p>Paragraph of text</p>
|
|
// <div class="mw-heading mw-heading4"><h4>Heading 4</h4></div>
|
|
// <p>Paragraph of text</p>
|
|
// <div class="mw-heading mw-heading5"><h5>Heading 2</h5></div>
|
|
// <p>Paragraph of text</p>
|
|
// <div class="mw-heading mw-heading6"><h6>Heading 2</h6></div>
|
|
// <p>Paragraph of text</p>
|
|
// </div>
|
|
//
|
|
// Alternative markup (pre-T13555):
|
|
// <div class="content">
|
|
// <p>Paragraph of text</p>
|
|
// <h2><span class="mw-headline">Heading 2</span></h2>
|
|
// <p>Paragraph of text</p>
|
|
// <h3><span class="mw-headline">Heading 3</span></h3>
|
|
// <p>Paragraph of text</p>
|
|
// <h4><span class="mw-headline">Heading 4</span></h4>
|
|
// <p>Paragraph of text</p>
|
|
// <h5><span class="mw-headline">Heading 2</span></h5>
|
|
// <p>Paragraph of text</p>
|
|
// <h6><span class="mw-headline">Heading 2</span></h6>
|
|
// <p>Paragraph of text</p>
|
|
// </div>
|
|
@import 'mediawiki.mixins.less';
|
|
@import '../../../minerva.less/minerva.variables.less';
|
|
@import '../../../minerva.less/minerva.mixins.less';
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin: 0;
|
|
padding: 0;
|
|
font: inherit;
|
|
}
|
|
|
|
.mw-heading1,
|
|
h1 {
|
|
font-size: @font-size-h1;
|
|
}
|
|
|
|
.mw-heading2,
|
|
h2 {
|
|
font-size: @font-size-h2;
|
|
}
|
|
|
|
.mw-heading3,
|
|
h3 {
|
|
font-size: @font-size-h3;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mw-heading4,
|
|
h4 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pre-content h1,
|
|
.content .mw-heading1,
|
|
.content h1,
|
|
.content .mw-heading2,
|
|
.content h2 {
|
|
font-family: @font-family-serif;
|
|
}
|
|
|
|
.pre-content h1,
|
|
.content .mw-heading1,
|
|
.content h1,
|
|
.content .mw-heading2,
|
|
.content h2,
|
|
.mw-heading3,
|
|
.mw-heading4,
|
|
.mw-heading5,
|
|
.mw-heading6,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
line-height: @line-height-xx-small;
|
|
word-wrap: break-word;
|
|
|
|
// This value isn't valid per the specification [0] but fixes the behaviour in
|
|
// Google Chrome (45.0.2454.93), and, likely, other browsers too.
|
|
//
|
|
// [0] https://drafts.csswg.org/css-text-3/#propdef-word-break
|
|
word-break: break-word;
|
|
}
|
|
|
|
.content {
|
|
// Deliberately not applied to h1
|
|
.mw-heading2,
|
|
.mw-heading3,
|
|
.mw-heading4,
|
|
.mw-heading5,
|
|
.mw-heading6,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
padding: @margin-heading 0;
|
|
}
|
|
|
|
// `h3`s need extra `margin-top` after paragraphs, see T219572.
|
|
p + .mw-heading3,
|
|
p + h3 {
|
|
margin-top: @margin-heading * 3;
|
|
}
|
|
|
|
// Override the styles above for `hN` nested inside `.mw-heading`, as used on wikitext pages.
|
|
.mw-heading {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|