aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authornomind60s <nomind60s@users.noreply.github.com>2017-03-07 20:50:51 -0700
committernomind60s <nomind60s@users.noreply.github.com>2017-03-07 20:50:51 -0700
commit6bbb7581c29b6d74e9b0449451b1fa9601253c44 (patch)
tree90e15ba286f290e263a938a8c4b39e025af210a6 /phpBB
parent4113fba04dff2f56201a7be35008b43e483c0d7d (diff)
downloadforums-6bbb7581c29b6d74e9b0449451b1fa9601253c44.tar
forums-6bbb7581c29b6d74e9b0449451b1fa9601253c44.tar.gz
forums-6bbb7581c29b6d74e9b0449451b1fa9601253c44.tar.bz2
forums-6bbb7581c29b6d74e9b0449451b1fa9601253c44.tar.xz
forums-6bbb7581c29b6d74e9b0449451b1fa9601253c44.zip
[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
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/styles/prosilver/theme/bidi.css3
-rw-r--r--phpBB/styles/prosilver/theme/content.css9
2 files changed, 2 insertions, 10 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css
index 3506e7f735..e2698d146f 100644
--- a/phpBB/styles/prosilver/theme/bidi.css
+++ b/phpBB/styles/prosilver/theme/bidi.css
@@ -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;
}
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index 9673079ee5..2ceb2b4613 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -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;