We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
mask-image
content
""
var()
mask-size
mask-position
background-color: currentColor;
Should do the trick! See Back-to-top link or social buttons for examples.
mask
color
.bg-*
The text was updated successfully, but these errors were encountered:
Does it mean that we should set the content at "" every time ? then we couldn't have content: "/".
content: "/"
Sorry, something went wrong.
louismaximepiton
Successfully merging a pull request may close this issue.
References
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.
Also the separator should get that color too, so it'd need some
mask-image
love:content
to an empty string (""
)var()
as amask-image
(and probably setmask-size
andmask-position
alongside)background-color: currentColor;
Should do the trick! See Back-to-top link or social buttons for examples.
mask
and inheritcolor
, so that.bg-*
utilities work on them.The text was updated successfully, but these errors were encountered: