Skip to content

Instantly share code, notes, and snippets.

@nkmathew
Created November 29, 2015 18:18
Show Gist options
  • Save nkmathew/11de73b44a484ba3036c to your computer and use it in GitHub Desktop.
Save nkmathew/11de73b44a484ba3036c to your computer and use it in GitHub Desktop.
Comfortable Firefox scrollbar
/**
* 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