aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Miday <midaym@gmail.com>2015-08-30 18:54:39 +0200
committerMichael Miday <midaym@gmail.com>2015-08-30 18:54:39 +0200
commitd228c80c6174faef528a4952b78acd7ea28e5eb2 (patch)
treef4c83c72f887cd20e2560160876413d472a74769
parent0e26b4e68f36d7c98ee049b48fc5c0f0e89b7f46 (diff)
downloadforums-d228c80c6174faef528a4952b78acd7ea28e5eb2.tar
forums-d228c80c6174faef528a4952b78acd7ea28e5eb2.tar.gz
forums-d228c80c6174faef528a4952b78acd7ea28e5eb2.tar.bz2
forums-d228c80c6174faef528a4952b78acd7ea28e5eb2.tar.xz
forums-d228c80c6174faef528a4952b78acd7ea28e5eb2.zip
[ticket/14038] Switch to spacer spans
-rw-r--r--phpBB/styles/prosilver/template/jumpbox.html2
-rw-r--r--phpBB/styles/prosilver/theme/common.css9
2 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/jumpbox.html b/phpBB/styles/prosilver/template/jumpbox.html
index cacf54b478..15c69aeed2 100644
--- a/phpBB/styles/prosilver/template/jumpbox.html
+++ b/phpBB/styles/prosilver/template/jumpbox.html
@@ -20,7 +20,7 @@
<ul class="dropdown-contents">
<!-- BEGIN jumpbox_forums -->
<!-- IF jumpbox_forums.FORUM_ID neq -1 -->
- <li><a href="{jumpbox_forums.LINK}" class="<!-- IF jumpbox_forums.level -->jumpbox-sub-link<!-- ELSEIF jumpbox_forums.S_IS_CAT -->jumpbox-cat-link<!-- ELSE -->jumpbox-forum-link<!-- ENDIF -->"><!-- BEGIN level -->&nbsp; &nbsp; &nbsp;<!-- END level --> <!-- IF jumpbox_forums.level -->&#8627; &nbsp;<!-- ENDIF --> <span>{jumpbox_forums.FORUM_NAME}</span></a></li>
+ <li><a href="{jumpbox_forums.LINK}" class="<!-- IF jumpbox_forums.level -->jumpbox-sub-link<!-- ELSEIF jumpbox_forums.S_IS_CAT -->jumpbox-cat-link<!-- ELSE -->jumpbox-forum-link<!-- ENDIF -->"><!-- BEGIN level --><span class="spacer"></span><!-- END level --> <span><!-- IF jumpbox_forums.level --> &#8627; &nbsp;<!-- ENDIF --> {jumpbox_forums.FORUM_NAME}</span></a></li>
<!-- ENDIF -->
<!-- END jumpbox_forums -->
</ul>
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index 516832a733..fe9d269cba 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -519,6 +519,15 @@ ul.linklist.bulletin > li.no-bulletin:before {
width: 100%;
}
+.jumpbox .spacer {
+ display: inline-block;
+ width: 0px;
+}
+
+.jumpbox .spacer + .spacer {
+ width: 20px;
+}
+
.dropdown li {
border-top: 1px dotted transparent;
float: none !important;