MudBlazor / MudBlazor

Blazor Component Library based on Material design with an emphasis on ease of use. Mainly written in C# with Javascript kept to a bare minimum it empowers .NET developers to easily debug it if needed.
http://mudblazor.com
MIT License
7.45k stars 1.2k forks source link

MudTabPanel text is always capitalized #5683

Open misterraj7 opened 1 year ago

misterraj7 commented 1 year ago

Bug type

Component

Component name

MudTabPanel

What happened?

shows text always in Caps like RISK SUMMARY. Is there a way to make sure that caps is removed. If a user wants caps he can always capitalise the text that is sent. ### Expected behavior Showing Text exactly as passed instead of capitalizing every letter ### Reproduction link https://try.mudblazor.com/snippet/cOQcFvYCGCNVQmNe ### Reproduction steps Listed in the reproduction ink ### Relevant log output _No response_ ### Version (bug) 6.0.14 ### Version (working) _No response_ ### What browsers are you seeing the problem on? Chrome, Microsoft Edge ### On what operating system are you experiencing the issue? Windows ### Pull Request - [ ] I would like to do a Pull Request ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
Yomodo commented 1 year ago

This css disables text capitalization for tabs and buttons:

.mud-tab, .mud-button-label {text-transform: none;}
mikes-gh commented 1 year ago

MudBlazor is a Material design inspired library. If you want to override Material guidelines you are going to have to use css. We're unlikely to accept contributions that add API that goes against this