Hello,
This might be a Blazor issue and not Telerik, but I don't know yet. I have a TelerikCalendar in a Blazor component (.razor page). I added a style tag to the page after the @using directives.
One of the styles I added was:
.k-calendar .k-state-selected .k-link {
background-color: #009966;
}
This works when the app is hosted by IIS Express in VS 2019 (see image "1" below). However, if it is hosted by Kestrel or published to my machine's IIS, the order of the css gets changed, and my local style gets overruled (see image "2" below).
Any ideas? Thanks!
1. IIS Express (my local css "green" gets applied):
2. IIS-hosted (my local css "green" gets overruled by what I guess is the control's default "orange" styling?):