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:
Volker E 2018-10-13 11:55:34 -07:00
parent 88a658cf60
commit 4496292268
7 changed files with 18 additions and 30 deletions

View File

@ -74,7 +74,7 @@
@headingMargin: 0.5em;
@sectionIconWidth: 30px;
// blockquotes
// blockquote
@blockquotePaddingRight: 25px;
@blockquotePaddingLeft: 30px;

View File

@ -86,6 +86,12 @@
color: @colorGray2;
}
blockquote {
color: @colorGray5;
padding: 5px 39px;
font-style: italic;
}
.section-heading {
border-bottom: 0;
padding-bottom: 0;

View File

@ -1,5 +0,0 @@
blockquote {
color: @colorGray5;
font-style: italic;
padding: 5px 39px;
}

View File

@ -43,7 +43,6 @@
@import 'header.less';
@import 'article.less';
@import 'blockquotes.less';
@import 'references.less';
@import 'footer.less';
}

View File

@ -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;
}

View File

@ -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';

View File

@ -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;