Skip to content

Instantly share code, notes, and snippets.

@promatik
Forked from adrexia/styles.less
Last active September 22, 2016 22:53
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 promatik/4a32ce154462ce4f636b0af38680f367 to your computer and use it in GitHub Desktop.
Save promatik/4a32ce154462ce4f636b0af38680f367 to your computer and use it in GitHub Desktop.
Atom - hide file icons and replace arrows
.tree-view {
.icon:before {
display:none;
}
.list-group li:not(.list-nested-item), .list-tree li:not(.list-nested-item), .list-group li.list-nested-item > .list-item, .list-tree li.list-nested-item > .list-item {
line-height: 21px;
}
.list-group .selected:before, .list-tree .selected:before {
height: 21px;
}
&.list-tree.has-collapsable-children .list-nested-item {
> .list-item:before{
content: "\f05b";
opacity: 0.25;
}
&.collapsed > .list-item:before{
content: "\f05a";
opacity: 0.25;
}
> .list-tree > li {
padding-left: 10px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment