Created
August 23, 2017 23:55
-
-
Save matheusdavidson/32d69e947245fcb04665d4cfee606d10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.table { | |
::-webkit-scrollbar { | |
height: 8px; | |
overflow: visible; | |
width: 16px; | |
} | |
::-webkit-scrollbar-button { | |
height: 0; | |
width: 0; | |
} | |
::-webkit-scrollbar-corner { | |
background: transparent; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: rgba(0, 0, 0, .2); | |
background-clip: padding-box; | |
border: solid transparent; | |
border-width: 1px 1px 1px 6px; | |
min-height: 28px; | |
padding: 100px 0 0; | |
-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset 0 -1px 0 rgba(0, 0, 0, .07); | |
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset 0 -1px 0 rgba(0, 0, 0, .07); | |
} | |
::-webkit-scrollbar-track { | |
background-clip: padding-box; | |
border: solid transparent; | |
border-width: 0 0 0 4px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment