Skip to content

Instantly share code, notes, and snippets.

@tpitale
Created December 17, 2010 19:11
Show Gist options
  • Save tpitale/745524 to your computer and use it in GitHub Desktop.
Save tpitale/745524 to your computer and use it in GitHub Desktop.
Super simple scrollbars for webkit similar to iOS
#sidebar ul.customers::-webkit-scrollbar {
width: 5px;
}
#sidebar ul.customers::-webkit-scrollbar-thumb:vertical {
margin: 5px;
background-color: #999;
-webkit-border-radius: 5px;
}
#sidebar ul.customers::-webkit-scrollbar-button:start:decrement,
#sidebar ul.customers::-webkit-scrollbar-button:end:increment {
height: 5px;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment