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

Scheduler scrollbar in Chrome is thin

Asked by Tom E
3 years ago.

In Chrome, the scrollbar on the scheduler is very thin. Is there a way to the size of the scrollbar?

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

The Scheduler theme doesn't define the scrollbar appearance. It will use the default styles (defined by the browser or by your global styles).

If you want to modify the default scrollbar appearance, you can do it using ::-webkit-scrollbar pseudoelement (applies to WebKit-based browsers, i.e. Chrome, Safari, latest Edge) on the .scheduler_default_scrollable element:

.scheduler_default_scrollable::-webkit-scrollbar {
  width: 20px;
  height: 20px;
  /* ... */
}

See also:
https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-scrollbar

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.