1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-05 16:33:34 +02:00

Merge pull request #4820 from marc1706/ticket/15213

[ticket/15213] Fix stylelint failures
This commit is contained in:
Máté Bartus 2017-05-09 08:41:48 +02:00 committed by GitHub
commit f6ac6701ff
3 changed files with 12 additions and 7 deletions

View File

@ -548,7 +548,8 @@ li.breadcrumbs span:first-child > a {
margin-left: 0;
}
.rtl blockquote cite:before, .rtl .uncited:before {
.rtl blockquote cite:before,
.rtl .uncited:before {
padding-left: 5px;
}

View File

@ -499,7 +499,8 @@ blockquote cite cite {
font-size: 1em;
}
blockquote cite:before, .uncited:before {
blockquote cite:before,
.uncited:before {
padding-right: 5px;
}

View File

@ -11,7 +11,8 @@
*/
.icon,
.button .icon,
blockquote cite:before, .uncited:before {
blockquote cite:before,
.uncited:before {
font-family: FontAwesome;
font-size: 14px;
font-weight: normal;
@ -93,11 +94,13 @@ blockquote cite:before, .uncited:before {
padding: 0;
}
blockquote cite:before, .uncited:before {
content: '\f10d'; /* Font Awesome quote-left */
blockquote cite:before,
.uncited:before {
content: "\f10d"; /* Font Awesome quote-left */
}
.rtl blockquote cite:before, .rtl .uncited:before {
content: '\f10e'; /* Font Awesome quote-right */
.rtl blockquote cite:before,
.rtl .uncited:before {
content: "\f10e"; /* Font Awesome quote-right */
}