Skip to content

Instantly share code, notes, and snippets.

@chylex
Created August 25, 2016 11:23
Show Gist options
  • Save chylex/becca5b57b446eac72f225dabcc346d5 to your computer and use it in GitHub Desktop.
Save chylex/becca5b57b446eac72f225dabcc346d5 to your computer and use it in GitHub Desktop.
TweetDuck RT/Fav list scrollbar hack
.js-column-social-proof > div {
height: 100%;
overflow-y: auto;
scrollbar-face-color: #505254;
scrollbar-highlight-color: #505254;
scrollbar-shadow-color: #505254;
scrollbar-darkshadow-color: #505254;
scrollbar-track-color: #292F33;
scrollbar-3dlight-color: #505254;
scrollbar-arrow-color: #8899a6;
}
.js-column-social-proof > div::-webkit-scrollbar {
width: 10px;
}
.js-column-social-proof > div::-webkit-scrollbar-track {
border-left: 1px solid #292F33;
}
.js-column-social-proof > div::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #666;
}
.js-column-social-proof > div::-webkit-scrollbar-thumb:hover {
background-color: #8899a6;
}
.js-column-social-proof > div::-webkit-scrollbar-thumb {
min-height: 50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment