Skip to content

Instantly share code, notes, and snippets.

@juno
Created September 13, 2017 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juno/74af9c7cd6dc8151fdb874e4c78c051f to your computer and use it in GitHub Desktop.
Save juno/74af9c7cd6dc8151fdb874e4c78c051f to your computer and use it in GitHub Desktop.
Always show scrollbar in Qiita's slide preview area while using Chrome/Safari on Mac.
.slide_preview::-webkit-scrollbar {
background: #eee;
width: 7px;
}
.slide_preview::-webkit-scrollbar-button {
background: #666;
height: 5px;
width: 5px;
}
.slide_preview::-webkit-scrollbar-piece {
background: #eee;
}
.slide_preview::-webkit-scrollbar-piece:start {
background: #eee;
}
.slide_preview::-webkit-scrollbar-thumb {
background: #333;
}
.slide_preview::-webkit-scrollbar-corner {
background: #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment