Created
August 25, 2016 11:23
-
-
Save chylex/becca5b57b446eac72f225dabcc346d5 to your computer and use it in GitHub Desktop.
TweetDuck RT/Fav list scrollbar hack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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