mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-27 23:50:30 +00:00
Hygiene: Remove 'blockquotes.less' in print and screen
There's no reason to have this as separate style file in content.styles as common text styles are taken care of in 'text.less' and 'print/articles.less' for print. Moving contents rule there. Change-Id: Ie613d95488e9b5a814b6be8f0c856e9e92ab5aed
This commit is contained in:
parent
88a658cf60
commit
4496292268
|
@ -74,7 +74,7 @@
|
|||
@headingMargin: 0.5em;
|
||||
@sectionIconWidth: 30px;
|
||||
|
||||
// blockquotes
|
||||
// blockquote
|
||||
@blockquotePaddingRight: 25px;
|
||||
@blockquotePaddingLeft: 30px;
|
||||
|
||||
|
|
|
@ -86,6 +86,12 @@
|
|||
color: @colorGray2;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: @colorGray5;
|
||||
padding: 5px 39px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.section-heading {
|
||||
border-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
blockquote {
|
||||
color: @colorGray5;
|
||||
font-style: italic;
|
||||
padding: 5px 39px;
|
||||
}
|
|
@ -43,7 +43,6 @@
|
|||
|
||||
@import 'header.less';
|
||||
@import 'article.less';
|
||||
@import 'blockquotes.less';
|
||||
@import 'references.less';
|
||||
@import 'footer.less';
|
||||
}
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
// Blockquotes
|
||||
//
|
||||
// Use the blockquote tag for quoted text.
|
||||
//
|
||||
// Markup:
|
||||
// <blockquote>In the end, it's not the years in your life that count. It's the life in your years.</blockquote>
|
||||
//
|
||||
// Styleguide 1.8.
|
||||
@import 'mediawiki.mixins.less';
|
||||
@import '../../minerva.less/minerva.variables';
|
||||
@import '../../minerva.less/minerva.mixins';
|
||||
|
||||
blockquote {
|
||||
border-left: 3px solid @colorGray12;
|
||||
font-family: @fontFamilyHeading;
|
||||
font-size: 1.1em;
|
||||
padding: 1em @blockquotePaddingRight 1em @blockquotePaddingLeft;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
|
@ -2,7 +2,6 @@
|
|||
@import 'thumbnails.less';
|
||||
@import 'images.less';
|
||||
@import 'headings.less';
|
||||
@import 'blockquotes.less';
|
||||
@import 'lists.less';
|
||||
@import 'links.less';
|
||||
@import 'text.less';
|
||||
|
|
|
@ -52,11 +52,20 @@
|
|||
}
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 3px solid @colorGray12;
|
||||
font-family: @fontFamilyHeading;
|
||||
font-size: 1.1em;
|
||||
padding: 1em @blockquotePaddingRight 1em @blockquotePaddingLeft;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
em,
|
||||
i {
|
||||
font-style: italic;
|
||||
|
|
Loading…
Reference in a new issue