In the DatePicker component, the focus class is added to the same
date in other months to indicate which date currently has the focus. This is
the intended behavior of the component, and overriding it will break the
navigation through the date functionality.
If you want to change the color of the focus class, you can use
the following CSS class.
<div style="margin:130px auto;width:300px">
<ejs-datepicker id="datepicker"></ejs-datepicker>
</div>
<style>
.e-calendar .e-content td.e-focused-date span.e-day {
background: none;
}
</style>
|