Skip to content

Breadcrumb link class #553

@marcOcram

Description

@marcOcram

Hello,

I switched to BlazorStrap past week and have an issue with the links inside the Breadcrumb. I would like to add the class "link-secondary" to alter the color of the link. This is currently not possible:

<a href="@item.Key">@item.Value</a>

The workaround is to use a CSS with the values copied from bootstrap.css

::deep li.breadcrumb-item > a {
    /* values copied from bootstrap class link-secondary */
    color: #6c757d !important;
}

::deep li.breadcrumb-item > a:hover, ::deep li.breadcrumb-item > a:focus {
    /* values copied from bootstrap class link-secondary:hover, link-secondary:focus */
    color: #565e64 !important;
}

Is it planned to get support to alter the link's class?

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions