Something went wrong while setting issue due date.
.breadcrumb .divider styling inheritance broke on recent change
Closed
.breadcrumb .divider styling inheritance broke on recent change
Created by: fleaflicker
Commit 869b69c6 changed the inhertiance rules applied to breadcrumbs.
The change applied to dividers doesn't make sense: if the breadcrumb root is a UL element, its immediate children can only be LI elements.
In the docs (and likely in all existing TwBS applications) dividers were rendered as SPANs within LIs.
Simple fix would be to remove the > preceding the .divider class, or to nest the entire definition within the li style.
example:
<ul class="breadcrumb">
<li><a href="#">Home</a> <span class="divider">/</span></li>
<li class="active">Library</li>
</ul>