Created
November 20, 2012 07:57
-
-
Save liunian/4116655 to your computer and use it in GitHub Desktop.
chrome scrollbar style
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
/* from http://www.alloyteam.com/wp-content/themes/alloyteam/style.css */ | |
::-webkit-scrollbar-track-piece { | |
background-color:#f5f5f5; | |
border-left:1px solid #d2d2d2; | |
} | |
::-webkit-scrollbar { | |
width:13px; | |
height:13px; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color:#c2c2c2; | |
background-clip:padding-box; | |
border:1px solid #979797; | |
min-height:28px; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
border:1px solid #636363; | |
background-color:#929292; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment