Skip to content

Instantly share code, notes, and snippets.

@city41
Last active August 29, 2015 14:00
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 city41/680c728cdf69ff780c88 to your computer and use it in GitHub Desktop.
Save city41/680c728cdf69ff780c88 to your computer and use it in GitHub Desktop.
Show indentation in Atom
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
.tree-view {
}
.editor {
}
.editor .cursor {
}
.leading-whitespace {
color: rgba(0,0,0,0);
position: relative;
box-shadow: inset 1px 0 0 rgba(255,255,255,0.1);
}
.leading-whitespace:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-bottom: 1px sold rgba(255,255,255,0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment