Skip to content

Instantly share code, notes, and snippets.

@dpogue
Created April 9, 2012 03:51
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save dpogue/2341263 to your computer and use it in GitHub Desktop.
Google Chrome user style for Gnome 3.4 overlay scrollbars
html::-webkit-scrollbar {
background-color:#d6d6d6;
}
html::-webkit-scrollbar {
width:13px;
height:13px;
}
html::-webkit-scrollbar-button {
display:none;
}
html::-webkit-scrollbar-thumb {
background: #9b9d9e;
border-radius: 3ex;
border: 3px solid #d6d6d6;
}
html::-webkit-scrollbar-thumb:hover {
background: #828586;
}
html::-webkit-scrollbar-thumb:active {
background: #4a90d9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment