diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/icons.css | 15 |
3 files changed, 9 insertions, 14 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 4f0eda7cff..5b0cdb8cdd 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -505,6 +505,10 @@ li.breadcrumbs span:first-child > a { 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/content.css b/phpBB/styles/prosilver/theme/content.css index 1043a23cd4..72d8e8bd3b 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -474,6 +474,10 @@ blockquote cite cite { font-size: 1em; } +blockquote cite:before, .uncited:before { + padding-right: 5px; +} + blockquote cite > div { float: right; font-weight: normal; diff --git a/phpBB/styles/prosilver/theme/icons.css b/phpBB/styles/prosilver/theme/icons.css index 4fcb0dc76c..f5fe5558a4 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; @@ -88,23 +88,10 @@ blockquote cite:before, .uncited:before { - -webkit-font-smoothing: antialiased; - -mos-osx-font-smoothing: grayscale; - font-family: FontAwesome; - font-size: 14px; - font-weight: normal; - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; - display: inline-block; - padding-right: 5px; content: '\f10d'; /* Font Awesome quote-left */ } .rtl blockquote cite:before, .rtl .uncited:before { - padding-right: 0; - padding-left: 5px; content: '\f10e'; /* Font Awesome quote-right */ } |