Created
November 29, 2015 18:18
-
-
Save nkmathew/11de73b44a484ba3036c to your computer and use it in GitHub Desktop.
Comfortable Firefox scrollbar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Adapted from http://userstyles.org/styles/89732/ by Elian Dankiewicz | |
* | |
* Makes Firefox scrollbar thumb a bit darker(visibile) | |
* | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
scrollbar { | |
-moz-appearance: none !important; | |
border: none !important | |
} | |
scrollbar thumb { | |
-moz-appearance: none !important; | |
border: 1px solid #707070 !important; | |
background: #707070 !important; | |
background-clip: padding-box !important; | |
-moz-transition: ease-in .2s !important | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment