Last active
August 29, 2015 14:20
-
-
Save ds0nt/54c32f2d67622d683838 to your computer and use it in GitHub Desktop.
Atom Editor Tree View Hackage
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 { | |
font-size: 115%; | |
font-family: 'mono'; | |
background: rgba(18, 19, 22, 0) !important; | |
overflow-y: auto; | |
.selected::before { | |
display: none; | |
} | |
.icon::before { | |
display: none; | |
} | |
li.expanded::after { | |
display: block; | |
width: 100%; | |
height: 100%; | |
} | |
li.expanded { | |
position: relative; | |
margin: 5px -70px 5px 0; | |
border: 1px solid rgba(195, 225, 255, 0.36); | |
background: rgba(16, 17, 18, 1); | |
} | |
li { | |
clear: both; | |
padding: 0px 10px !important; | |
float: left; | |
overflow-x: visible; | |
} | |
.list-tree { | |
padding-left: 5px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you.