Skip to content

Instantly share code, notes, and snippets.

@adrusi
Created July 8, 2014 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrusi/f22b3d19248dd06787bb to your computer and use it in GitHub Desktop.
Save adrusi/f22b3d19248dd06787bb to your computer and use it in GitHub Desktop.
Gnome 3 (adwaita) scroll bars for the Atom text editor.
@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