|
/* Change selected date color when focusing */
.e-calendar .e-content td.e-selected span.e-day,
.e-bigger.e-small .e-calendar .e-content td.e-selected span.e-day {
background-color: #20e316;
}
/* Change selected date color when hovering */
.e-calendar .e-content td.e-today.e-selected:hover span.e-day,
.e-calendar .e-content td.e-selected:hover span.e-day,
.e-calendar .e-content td.e-selected.e-focused-date span.e-day,
.e-bigger.e-small .e-calendar .e-content td.e-today.e-selected:hover span.e-day,
.e-bigger.e-small .e-calendar .e-content td.e-selected:hover span.e-day,
.e-bigger.e-small .e-calendar .e-content td.e-selected.e-focused-date span.e-day {
background-color: #34b511;
} |
|
|
|
.e-dropdownbase .e-list-item.e-active,
.e-dropdownbase .e-list-item.e-active.e-hover {
background-color: #eee;
border-color: #fff;
color: #16e34d;
} |
|
|
Thanks Ponmani, thats excellent. On the same topic, how can I hide the circle around the current day? The 5 April on your picture.
Thanks
|
/* Change selected today date color when focusing */
.e-calendar .e-content td.e-today.e-selected span.e-day,
.e-bigger.e-small .e-calendar .e-content td.e-today.e-selected span.e-day {
background-color: #20e316;
border: none;
box-shadow: none;
}
|