Skip to content

Instantly share code, notes, and snippets.

@mauriciosalazar
Created March 2, 2014 03:32
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 mauriciosalazar/9301491 to your computer and use it in GitHub Desktop.
Save mauriciosalazar/9301491 to your computer and use it in GitHub Desktop.
Customisation for @atomeditor with smaller font/icons on the sidebar (tree)
/*
* Smaller icons and fonts for the sidebar (tree view).
* Based on SD's tweaks: https://gist.github.com/sd
*/
.tree-view {
font-size: 12px;
.list-item {
line-height: 20px !important;
}
.selected:before, .selected:before {
height: 20px !important;
}
.icon:before {
font-size: 11px;
width: 10px;
height: 10px;
opacity: .6;
position: relative;
top: 0px;
}
.header:before {
font-size: 10px !important;
opacity: .6;
margin-right: 0px !important;
}
}
/* more subtle invisibles */
.editor {
.invisible-character {
opacity: .2;
}
.indent-guide {
opacity: .4;
}
}
/* thicker cursor */
.editor .cursor {
border-left-width: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment