Skip to content

Instantly share code, notes, and snippets.

@YamilG
Created December 21, 2010 16:06
Show Gist options
  • Save YamilG/750118 to your computer and use it in GitHub Desktop.
Save YamilG/750118 to your computer and use it in GitHub Desktop.
old scrollbar mod -revival in WebKit
/* http://almaer.com/scrollbar/ */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 0px;
}
::-webkit-scrollbar-button:vertical:increment {
background-color: transparent;
}
::-webkit-scrollbar-track-piece {
background: #ccc url(scroll-bg.png) repeat-y scroll 0 0;
}
::-webkit-scrollbar-thumb:vertical {
min-height: 10px;
background-color: white;
}
::-webkit-scrollbar-thumb:horizontal {
min-width: 10px;
background-color: white;
}
::-webkit-scrollbar-thumb:hover {
background-color: #76B700;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment