Adding
to the end of my existing userContent.css gives me back light thumb and dark trough. The first color sets the thumb color.
Re. width, none, auto, and thin are mentioned.
Source: https://www.reddit.com/r/FirefoxCSS/...m_medium=web2x.
https://developer.mozilla.org/en-US/...crollbar-width
https://developer.mozilla.org/en-US/...crollbar-color
Note: it's possible that the situation may change because
Another way is here: https://www.reddit.com/r/firefox/com...m_medium=web2x
Go to about:config and set
toolkit.legacyUserProfileCustomizations.stylesheet s = true (which may already be set)
and
widget.content.allow-gtk-dark-theme = true
Code:
@namespace url("http://www.w3.org/1999/xhtml"); :root{ scrollbar-color: #0079D3 #2E3645 !important; scrollbar-width: thin !important; } * { scrollbar-width: thin !important; }
Re. width, none, auto, and thin are mentioned.
Source: https://www.reddit.com/r/FirefoxCSS/...m_medium=web2x.
https://developer.mozilla.org/en-US/...crollbar-width
https://developer.mozilla.org/en-US/...crollbar-color
Note: it's possible that the situation may change because
Experimental. Expect behavior to change in the future.
Go to about:config and set
toolkit.legacyUserProfileCustomizations.stylesheet s = true (which may already be set)
and
widget.content.allow-gtk-dark-theme = true
Comment