Skip to content

Instantly share code, notes, and snippets.

@liunian
Created November 20, 2012 07:57
Show Gist options
  • Save liunian/4116655 to your computer and use it in GitHub Desktop.
Save liunian/4116655 to your computer and use it in GitHub Desktop.
chrome scrollbar style
/* 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