(06-18-2020, 02:14 AM)Tim Curtis Wrote: We could do that logic but don't u think most Mac users turn on overlay scroll bars right after first boot?
I think show only when scrolling is the default, but we should eradicate all white scrollbars where possible and this actually simplifies things. Since we want to apply the new css to all browsers if they show a scrollbar we can skip the browser sniffing and just do like...
Code:
if (sbw) {$('body').addClass('scrolly');}
... in scripts panels right after it sniffs the scrollbar width.