How to change the color of the scrollbar handle?

There is a bit of CSS to change the main scrollbar on the notebook, notes and editor panel but not sure how you would change the scrollbar for the markdown viewer or tinymce.

I've shamelessly stolen the following css (with a tiny tweak) for userchrome from here:

::-webkit-scrollbar-thumb {
 	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .7);
}
2 Likes