aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornomind60s <nomind60s@users.noreply.github.com>2017-03-13 09:04:02 -0600
committernomind60s <nomind60s@users.noreply.github.com>2017-03-13 09:04:02 -0600
commit6da3b5e93d4c32da804956fcc9ae6246ce5968e7 (patch)
tree832e76c1f8efcffec297ab5c3900d8d2f00f9f98
parent605af49562f5573a0b29320eafa9202a834b82a8 (diff)
downloadforums-6da3b5e93d4c32da804956fcc9ae6246ce5968e7.tar
forums-6da3b5e93d4c32da804956fcc9ae6246ce5968e7.tar.gz
forums-6da3b5e93d4c32da804956fcc9ae6246ce5968e7.tar.bz2
forums-6da3b5e93d4c32da804956fcc9ae6246ce5968e7.tar.xz
forums-6da3b5e93d4c32da804956fcc9ae6246ce5968e7.zip
[ticket/15086] Rework specification of properties to simplify
Once more rework the property specifications to maintain backwards compatability and keep changes as small as possible. Thanks hanakin for the assistance. PHPBB3-15086
-rw-r--r--phpBB/styles/prosilver/theme/bidi.css4
-rw-r--r--phpBB/styles/prosilver/theme/content.css4
-rw-r--r--phpBB/styles/prosilver/theme/icons.css15
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 */
}