-
-
Save promatik/4a32ce154462ce4f636b0af38680f367 to your computer and use it in GitHub Desktop.
Atom - hide file icons and replace arrows
This file contains hidden or 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
.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