Skip to content

Instantly share code, notes, and snippets.

@sorrycc
Created July 11, 2011 08:40
Show Gist options
  • Save sorrycc/1075537 to your computer and use it in GitHub Desktop.
Save sorrycc/1075537 to your computer and use it in GitHub Desktop.
scrollbar in pre style
/* Thanks Flyosity! */
/* Ref: http://vunction.com/blog/post/node-and-oauth-and-flickr-oh-my */
pre::-webkit-scrollbar {
width: 8px;
height: 6px;
}
pre::-webkit-scrollbar-button:start:decrement, pre::-webkit-scrollbar-button:end:increment {
display: none;
}
pre::-webkit-scrollbar-button:vertical:increment {
background: transparent;
}
pre::-webkit-scrollbar-track-piece {
background: transparent;
-webkit-border-radius: 12px;
}
pre::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background: #fde200;
-webkit-border-radius: 8px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment