Last active
August 29, 2015 14:27
-
-
Save tsbarnes/1c8327dbe0637a84420c to your computer and use it in GitHub Desktop.
Customizations for the metro-ui Atom theme
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
.theme-metro-ui { | |
.tree-view { | |
line-height: 1.8em; | |
} | |
.list-tree, .list-group { | |
li.list-nested-item .list-item { | |
line-height: 1.8em; | |
} | |
li.selected:before { | |
height: 1.8em; | |
} | |
} | |
.project-root:first-of-type { | |
> .header { | |
position: fixed; | |
top: 0; | |
z-index: 1; | |
overflow: hidden; | |
.name { | |
margin-left: 0.5rem; | |
} | |
} | |
> .entries { | |
margin-top: 31px; | |
} | |
&.selected:before { | |
height: 0; | |
} | |
} | |
atom-workspace-axis.vertical { | |
z-index: 2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Makes the project header fixed at the top, and adjusts the line height of the tree view.