Skip to content

Instantly share code, notes, and snippets.

@ds0nt
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ds0nt/54c32f2d67622d683838 to your computer and use it in GitHub Desktop.
Save ds0nt/54c32f2d67622d683838 to your computer and use it in GitHub Desktop.
Atom Editor Tree View Hackage
.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;
}
}
@harikt
Copy link

harikt commented May 6, 2015

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment