search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

How to remove background-color on :hover at daypilot_rowheader_inner div?

Asked by MB
2 years ago.

When you hover on a cell of the scheduler the header cells and the cells of the first column get a gray background-color.

This is not desired on the first column of the scheduler, only on the cells of the header.

How can you solve this with the custom css? What class has the on hover background-color property?

Thank you!

Answer posted by Dan Letecky [DayPilot]
2 years ago.

You can remove the crosshair highlighting from the first row header column like this:

<style>
  .scheduler_default_rowheader:not(.scheduler_default_rowheadercol) .scheduler_default_crosshair_left {
      display: none;
  }
</style>
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.