Created
February 27, 2014 22:12
-
-
Save james2doyle/9260736 to your computer and use it in GitHub Desktop.
nice fonts and scrollbars in the Atom editor!
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
body { | |
-webkit-font-smoothing: antialiased; | |
text-rendering: optimizeLegibility; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
.tree-view-resizer, .editor { | |
::-webkit-scrollbar { | |
width: 0.5em; | |
height: 0.5em; | |
} | |
::-webkit-scrollbar-track { | |
background-color: #303030; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: lighten(#303030, 15%); | |
} | |
} |
Thanks for this. Used it in redmond-ui
just wanted to mention that syntax might have changed –
in 1.5 i am using
.scrollbars-visible-always {
/deep/ ::-webkit-scrollbar {
width: 8px;
height: 8px;
&-track {
border: 0px;
border-radius: 0px;
background-color: black !important;
}
&-thumb {
background-color: #FF7A00 !important;
border: 0px;
border-radius: 0px;
}
}
}
black / orange
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I prefer mine green:
https://gist.github.com/developit/d380708c677a3bcf6962