Created
July 8, 2014 20:50
-
-
Save adrusi/f22b3d19248dd06787bb to your computer and use it in GitHub Desktop.
Gnome 3 (adwaita) scroll bars for the Atom text editor.
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
@scrollbar-background-color: #d6d6d6; | |
@scrollbar-color: #9b9d9e; | |
.scrollbars-visible-always { | |
::-webkit-scrollbar { | |
width: 13px; | |
height: 13px; | |
} | |
::-webkit-scrollbar-track, | |
::-webkit-scrollbar-corner { | |
background: @scrollbar-background-color; | |
} | |
::-webkit-scrollbar-thumb { | |
background: @scrollbar-color; | |
border: 3px solid @scrollbar-background-color; | |
border-radius: 6.5px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment