Created
December 17, 2014 15:41
-
-
Save zeljkoprsa/fc0c23f67ad64408923f to your computer and use it in GitHub Desktop.
OSX Webkit Scrollbar allways visible.
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
/* Make scroll bar always visible on any element - Webkit on OSX */ | |
::-webkit-scrollbar { | |
-webkit-appearance: none; | |
width: 7px; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 4px; | |
background-color: rgba(0, 0, 0, .5); | |
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment