Help with CSS Scrollbars Module Level 1 on TweetDeck

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
}

This is how it looks

How can I make the scroll bars thin?
Extension on AMO https://addons.mozilla.org/en-US/firefox/addon/dark-scroll-for-tweetdeck/

Source code https://github.com/andreicristianpetcu/dark_scroll_for_tweetdeck

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.

1 Like

DAAAAAAAAAMN that was fast! Thank you!
It’s on AMO already!