From 6bbb7581c29b6d74e9b0449451b1fa9601253c44 Mon Sep 17 00:00:00 2001
From: nomind60s <nomind60s@users.noreply.github.com>
Date: Tue, 7 Mar 2017 20:50:51 -0700
Subject: [PATCH] [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
---
 phpBB/styles/prosilver/theme/bidi.css    | 3 +--
 phpBB/styles/prosilver/theme/content.css | 9 +--------
 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;