1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 00:21:02 +01:00

[ticket/15086] Merge cite and uncited definitions

Per hanakin's suggested changes, merged the cite and uncited definitions.
Handle the uncited case in RTL languages.

PHPBB3-15086
This commit is contained in:
nomind60s 2017-03-07 20:50:51 -07:00
parent 4113fba04d
commit 6bbb7581c2
2 changed files with 2 additions and 10 deletions

View File

@ -506,10 +506,9 @@ li.breadcrumbs span:first-child > a {
margin-left: 0;
}
.rtl blockquote cite:before {
.rtl blockquote cite:before, .uncited:before {
/* Font Awesome quote-right */
content: '\f10e';
font-family: FontAwesome;
padding-right: 0;
padding-left: 5px;
}

View File

@ -471,7 +471,7 @@ blockquote cite {
font-size: 0.9em;
}
blockquote cite:before {
blockquote cite:before, .uncited:before {
/* Font Awesome quote-left */
content: '\f10d';
font-family: FontAwesome;
@ -486,13 +486,6 @@ blockquote.uncited {
padding-top: 0;
}
blockquote.uncited:before {
/* Font Awesome quote-left */
content: '\f10d';
font-family: FontAwesome;
padding-right: 5px;
}
blockquote cite > div {
float: right;
font-weight: normal;