diff options
author | nomind60s <nomind60s@users.noreply.github.com> | 2017-02-23 22:33:43 -0700 |
---|---|---|
committer | nomind60s <nomind60s@users.noreply.github.com> | 2017-02-23 22:33:43 -0700 |
commit | 92fefcfe6fcaba5fa3f866432506101e21daca52 (patch) | |
tree | 8a58c225f00b0aa8c1578d6c895f41b9fd9b3e54 /phpBB/styles/prosilver/theme | |
parent | f78ba39a1c61cc69b5ecd725ffaa0252cc6d8431 (diff) | |
download | forums-92fefcfe6fcaba5fa3f866432506101e21daca52.tar forums-92fefcfe6fcaba5fa3f866432506101e21daca52.tar.gz forums-92fefcfe6fcaba5fa3f866432506101e21daca52.tar.bz2 forums-92fefcfe6fcaba5fa3f866432506101e21daca52.tar.xz forums-92fefcfe6fcaba5fa3f866432506101e21daca52.zip |
[ticket/15086] corrections from vinny's review
Changed instances of 0px; to 0; and add missing element
PHPBB3-15086
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 6 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 66a6451e27..3506e7f735 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -502,15 +502,15 @@ li.breadcrumbs span:first-child > a { .rtl blockquote cite { /* Username/source of quoter */ - margin-right: 0px; + margin-right: 0; margin-left: 0; } -blockquote cite:before { +.rtl blockquote cite:before { /* Font Awesome quote-right */ content: '\f10e'; font-family: FontAwesome; - padding-right: 0px; + padding-right: 0; padding-left: 5px; } diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 15f44ee476..3c4467cb19 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -466,7 +466,7 @@ blockquote cite { /* Username/source of quoter */ font-style: normal; font-weight: bold; - margin-left: 0px; + margin-left: 0; display: block; font-size: 0.9em; } |