Created
April 9, 2012 03:51
-
-
Save dpogue/2341263 to your computer and use it in GitHub Desktop.
Google Chrome user style for Gnome 3.4 overlay scrollbars
This file contains hidden or 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
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