Hi all!
I made a new extension to make scrollbars nice in TweetDeck using CSS Scrollbars Module Level 1. It works but the scrollbars are still thick. Any idea what I’m missing here?
.column-content {
scrollbar-color: #657685 #15202b;
scrollbar-width: thin; /** the extension has this line removed but it does not help
}
The reason the scrollbar isn’t thin is because you’re setting the CSS property on a parent element of the element that actually scrolls (.column-scroller). It appears that it inherits the scrollbar colors, but the scrollbar size is not inherited.