aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-09-15 00:40:37 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-10-17 21:08:31 +0300
commitb84f0791b23e311f7333ac195a8bfb7700231abc (patch)
tree3a6ceeaa7a80f6b1676e6a1072d6a8b0d076081e /phpBB/styles/prosilver/template
parent284fb309581065d975cba583f51daa88301158d7 (diff)
downloadforums-b84f0791b23e311f7333ac195a8bfb7700231abc.tar
forums-b84f0791b23e311f7333ac195a8bfb7700231abc.tar.gz
forums-b84f0791b23e311f7333ac195a8bfb7700231abc.tar.bz2
forums-b84f0791b23e311f7333ac195a8bfb7700231abc.tar.xz
forums-b84f0791b23e311f7333ac195a8bfb7700231abc.zip
[ticket/11552] Change breadcrumbs structure
PHPBB3-11552
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r--phpBB/styles/prosilver/template/forum_fn.js4
-rw-r--r--phpBB/styles/prosilver/template/overall_header.html6
2 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index cfb95d9cba..316ab1e66f 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -446,7 +446,7 @@ function insert_single_user(formId, user)
$('.breadcrumbs').each(function() {
var $this = $(this),
$body = $('body'),
- links = $this.find('a'),
+ links = $this.find('.crumb'),
length = links.length,
classes = ['wrapped-wide', 'wrapped-medium', 'wrapped-small'],
classesLength = classes.length,
@@ -474,7 +474,7 @@ function insert_single_user(formId, user)
lastWidth = width;
if (wrapped) {
- $this.find('a.wrapped').removeClass('wrapped ' + classes.join(' '));
+ $this.find('.crumb.wrapped').removeClass('wrapped ' + classes.join(' '));
wrapped = false;
if ($this.height() <= maxHeight) return;
}
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html
index 7bf60ce67c..3587b3c44a 100644
--- a/phpBB/styles/prosilver/template/overall_header.html
+++ b/phpBB/styles/prosilver/template/overall_header.html
@@ -84,9 +84,9 @@
<ul class="linklist navlinks">
<!-- DEFINE $MICRODATA = ' itemtype="http://data-vocabulary.org/Breadcrumb" itemscope=""' -->
- <li class="icon-home breadcrumbs"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>&#8249;</strong> <!-- ENDIF -->
- <a href="{U_INDEX}" accesskey="h"{$MICRODATA}>{L_INDEX}</a>
- <!-- BEGIN navlinks --> <strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}>{navlinks.FORUM_NAME}</a><!-- END navlinks -->
+ <li class="icon-home breadcrumbs"><!-- IF U_SITE_HOME --><span class="crumb"><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>&#8249;</strong></span> <!-- ENDIF -->
+ <span class="crumb"><a href="{U_INDEX}" accesskey="h"{$MICRODATA}>{L_INDEX}</a></span>
+ <!-- BEGIN navlinks --> <span class="crumb"><strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}>{navlinks.FORUM_NAME}</a></span><!-- END navlinks -->
<!-- EVENT overall_header_breadcrumb_append -->
</li>