Hi Harshad,
Thanks for reaching out.
Q1: CSS class for non-working days and non-working hours.
To change the background color for non-working days and hours, you can use the following CSS selectors:
/* Vertical (Day, Week, and Work Week), Month, Timeline Month, and Timeline Views */ .e-schedule .e-vertical-view .e-work-cells:not(.e-work-hours), .e-schedule .e-month-view .e-work-cells:not(.e-work-days), .e-schedule .e-timeline-view .e-work-cells:not(.e-work-hours), .e-schedule .e-timeline-month-view .e-work-cells:not(.e-work-days) { background: beige; } |
Q2: CSS class for the timeline (where is shows slot times 9:00 AM etc in a Week view).
To change the background color of the time cells, use the following CSS selectors:
.e-schedule .e-vertical-view .e-time-cells-wrap table td, .e-schedule .e-timeline-view .e-date-header-wrap table tbody td.e-time-slots, .e-schedule .e-timeline-month-view .e-date-header-wrap table tbody td.e-time-slots { background: #ecc4bd; } |
Let me know if you need any further assistance.
Regards,
Swathi