diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index f24ef6886d..8e06997d8d 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -502,12 +502,15 @@ function insert_single_user(formId, user) lastWidth = width; if (wrapped) { - $this.find('.crumb.wrapped').removeClass('wrapped ' + classes.join(' ')); + $this.removeClass('wrapped').find('.crumb.wrapped').removeClass('wrapped ' + classes.join(' ')); wrapped = false; if ($this.height() <= maxHeight) return; } wrapped = true; + $this.addClass('wrapped'); + if ($this.height() <= maxHeight) return; + for (i = 0; i < classesLength; i ++) { for (j = length; j >= 0; j --) { links.eq(j).addClass('wrapped ' + classes[i]); diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index f662cd06fc..de953dbd1d 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -385,6 +385,10 @@ ul.linklist.bulletin li.no-bulletin:before { vertical-align: bottom; } +.breadcrumbs.wrapped .crumb { + letter-spacing: -.5px; +} + .breadcrumbs .crumb.wrapped { white-space: nowrap; overflow: hidden;