CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.
https://mudextensions.codebeam.org/
MIT License
367 stars 62 forks source link

MudSelectExtended: style or class not working for MudSelectItemGroupExtended #231

Closed SilentRage47 closed 1 year ago

SilentRage47 commented 1 year ago

Can't change the style of the header group in MudSelectedExtended.

Neither of this works:

<MudSelectItemGroupExtended T="User" Class="header" Text="item.Name" Sticky="false" Nested="false" InitiallyExpanded="true">
....
<style>
    .header
    {
        font-weight: 900 !important;
        background-color: red !important;
    }
</style>

<MudSelectItemGroupExtended T="User" Style="font-weight:700" Text="@item.Department.Description" Sticky="false" Nested="false" InitiallyExpanded="true">