Completed
Last Updated: 27 May 2020 10:20 by ADMIN
Release 2.15.0
wu
Created on: 19 Feb 2020 09:58
Category: UI for Blazor
Type: Bug Report
1
Calendars are missing mouseover effect for the dates
Affects the date pickers as well.
1 comment
ADMIN
Marin Bratanov
Posted on: 19 Feb 2020 10:06

Here is a workaround:

<style>
    /* Workaround for the missing hover effect on the dates */
    .k-calendar-content .k-link:hover {
        background-color: #f2f2f2;
    }
</style>

<TelerikCalendar></TelerikCalendar>

<TelerikDatePicker Value="@date"></TelerikDatePicker>

@code{
    DateTime date { get; set; } = DateTime.Now;
}

 

Regards,
Marin Bratanov
Progress Telerik

 UI for Blazor