I thought it's possible to replace the @breadcrumb-separator
temporarily, but unfortunately it doesn't work that way:
#detailnavigation {
@breadcrumb-separator: "|";
.list-inline.related {
.breadcrumb;
}
}
Isn't it possible to override a variable in a given scope? Or is the problem that .breadcrumb
isn't a mixin?
FYI I temporarily solved my problem by overriding the Separator manually. There you go:
#detailnavigation {
.list-inline.related {
.breadcrumb;
> li+li:before {
content: "|\00a0";
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With