There's a lot of material out there on how to style scrollbars in webkit, but next to nothing in any other browser, even though IE was reportedly the first browser to implement it.
What I'm looking for is the equivalent of:
&::-webkit-scrollbar {
...
}
&::-webkit-scrollbar-track {
...
}
&::-webkit-scrollbar-thumb {
...
}
in as many browsers as possible.
My philosophy is that if you have crap browser it's your own fault and I'm not willing to switch to a javascript solution over my scrollbar styling. But I'd like to put in a little effort.