aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornomind60s <nomind60s@users.noreply.github.com>2017-02-24 06:26:42 -0700
committernomind60s <nomind60s@users.noreply.github.com>2017-02-24 06:26:42 -0700
commit4113fba04dff2f56201a7be35008b43e483c0d7d (patch)
tree506f15875ab658dc9137a31d394c6f7f5556cf12
parent92fefcfe6fcaba5fa3f866432506101e21daca52 (diff)
downloadforums-4113fba04dff2f56201a7be35008b43e483c0d7d.tar
forums-4113fba04dff2f56201a7be35008b43e483c0d7d.tar.gz
forums-4113fba04dff2f56201a7be35008b43e483c0d7d.tar.bz2
forums-4113fba04dff2f56201a7be35008b43e483c0d7d.tar.xz
forums-4113fba04dff2f56201a7be35008b43e483c0d7d.zip
[ticket/15086] Handle the uncited case properly
The blockquote uncited CSS needs the Font Awesome icon added as well PHPBB3-15086
-rw-r--r--phpBB/styles/prosilver/theme/content.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index 3c4467cb19..9673079ee5 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -483,7 +483,14 @@ blockquote cite cite {
}
blockquote.uncited {
- padding-top: 25px;
+ padding-top: 0;
+}
+
+blockquote.uncited:before {
+ /* Font Awesome quote-left */
+ content: '\f10d';
+ font-family: FontAwesome;
+ padding-right: 5px;
}
blockquote cite > div {