diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-04-26 20:04:58 -0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-04-27 09:34:16 -0400 |
commit | abbb782820e1e590c372ebcbbbb7272169bb29ee (patch) | |
tree | 5164966e65f801c4a8ff79c972e8a15cabecf997 /phpBB/styles/prosilver/theme/icons.css | |
parent | 8179e56b028d76c0c9f13c9b064068e546f68a6a (diff) | |
parent | f62419e15815ac7ccc98343c4e79934e9536d838 (diff) | |
download | forums-abbb782820e1e590c372ebcbbbb7272169bb29ee.tar forums-abbb782820e1e590c372ebcbbbb7272169bb29ee.tar.gz forums-abbb782820e1e590c372ebcbbbb7272169bb29ee.tar.bz2 forums-abbb782820e1e590c372ebcbbbb7272169bb29ee.tar.xz forums-abbb782820e1e590c372ebcbbbb7272169bb29ee.zip |
Merge pull request #4710 from nomind60s/ticket/15086
[ticket/15086] Replace quote.gif with Font Awesome icon
Diffstat (limited to 'phpBB/styles/prosilver/theme/icons.css')
-rw-r--r-- | phpBB/styles/prosilver/theme/icons.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/icons.css b/phpBB/styles/prosilver/theme/icons.css index 411fecaf3b..6643f12d06 100644 --- a/phpBB/styles/prosilver/theme/icons.css +++ b/phpBB/styles/prosilver/theme/icons.css @@ -9,7 +9,7 @@ * Just change the name of the font after the 14/1 to the name of * the font you wish to use. */ -.icon, .button .icon { +.icon, .button .icon, blockquote cite:before, .uncited:before { display: inline-block; font-weight: normal; font-style: normal; @@ -85,3 +85,12 @@ line-height: .9; height: 12px; } + +blockquote cite:before, .uncited:before { + content: '\f10d'; /* Font Awesome quote-left */ +} + +.rtl blockquote cite:before, .rtl .uncited:before { + content: '\f10e'; /* Font Awesome quote-right */ +} + |