diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 4b0c9f4419..7dd98fe819 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -535,7 +535,6 @@ li.breadcrumbs span:first-child > a { /* Quote block */ .rtl blockquote { - background-position: 99% 8px; margin: 0.5em 25px 0 1px; } @@ -546,10 +545,13 @@ li.breadcrumbs span:first-child > a { .rtl blockquote cite { /* Username/source of quoter */ - margin-right: 20px; margin-left: 0; } +.rtl blockquote cite:before, .rtl .uncited:before { + padding-left: 5px; +} + .rtl blockquote .codebox { margin-right: 0; } diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 92ff3ad5f8..84d33d10ff 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -416,14 +416,9 @@ dl.faq dt { /* quote block */ blockquote { background-color: #ebeadd; - background-image: url("./images/quote.gif"); border-color: #dbdbce; } -.rtl blockquote { - background-image: url("./images/quote_rtl.gif"); -} - blockquote blockquote { /* nested quotes */ background-color: #efeed9; diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 5f0d46852e..0005157071 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -474,7 +474,6 @@ ul.searchresults { /* Quote block */ blockquote { font-size: 0.95em; - background: transparent none 6px 8px no-repeat; border: 1px solid transparent; overflow: hidden; margin: 1em 1px 1em 25px; @@ -494,15 +493,14 @@ blockquote cite { /* Username/source of quoter */ font-style: normal; display: block; - margin-left: 20px; } blockquote cite cite { font-size: 1em; } -blockquote.uncited { - padding-top: 25px; +blockquote cite:before, .uncited:before { + padding-right: 5px; } blockquote cite > div { diff --git a/phpBB/styles/prosilver/theme/icons.css b/phpBB/styles/prosilver/theme/icons.css index ce202f1b9d..4e5838564e 100644 --- a/phpBB/styles/prosilver/theme/icons.css +++ b/phpBB/styles/prosilver/theme/icons.css @@ -10,7 +10,8 @@ * the font you wish to use. */ .icon, -.button .icon { +.button .icon, +blockquote cite:before, .uncited:before { font-family: FontAwesome; font-size: 14px; font-weight: normal; @@ -91,3 +92,12 @@ height: 12px; padding: 0; } + +blockquote cite:before, .uncited:before { + content: '\f10d'; /* Font Awesome quote-left */ +} + +.rtl blockquote cite:before, .rtl .uncited:before { + content: '\f10e'; /* Font Awesome quote-right */ +} +