Open
Description
References
- Orange Design System: Modules > Local Headers:
- Breadcrumb On White - WEB-LOC-BCR-001
- Breadcrumb On Black - WEB-LOC-BCR-001
- Breadcrumb On Supporting Colour - WEB-LOC-BCR-003
More info
Two cents from @ffoodd:
Well, I guess it already kind of work: to fully support colored background, I think we'd need to add some color inheritance to breadcrumb items.
.breadcrumb-item a {
color: inherit;
}
Also the separator should get that color too, so it'd need some mask-image
love:
- set
content
to an empty string (""
) - apply the SVG in
var()
as amask-image
(and probably setmask-size
andmask-position
alongside) - inherit color as background, thanks to
background-color: currentColor;
Should do the trick! See Back-to-top link or social buttons for examples.
- Tweak breadcrumbs to use
mask
and inheritcolor
, so that.bg-*
utilities work on them.