I've added a separator to indicate on the scheduler which day is today. I would like to extend this separator to the time headers as well(if that time header begins on today's date)
To do this, i have added the following in the onBeforeTimeHeaderRending:
if (args.header.start == DayPilot.Date.today())
{
args.header.cssClass = "scheduler_default_timeheader_separator";
}
While this css override does let me modify the left border, it does not seem to allow me to modify the right side border. The following css will result in a missing right-side border for that TimeHeader:
.scheduler_default_timeheader_separator
{
border-left: 1px solid #000000;
border-right: 1px solid #000000;
}
What am I missing? Why is the border between wed 2 and thu 3 no longer visible?