olmokramer / atom-autohide-tree-view

Hides most of the tree view, reveal it on hover
MIT License
38 stars 7 forks source link

Tree view appears below tab on spacegray-dark-ui #51

Closed lukescott closed 9 years ago

lukescott commented 9 years ago

Using this theme: https://github.com/cannikin/spacegray-dark-ui/issues

And the tab is appearing above the tree view:

screen shot 2015-09-12 at 5 29 10 pm

This does not happen with the stock Atom Dark theme. I enabled "Push Editor" for now as a workaround.

olmokramer commented 9 years ago

Thanks for reporting the issue! Spacegray uses a z-index: 10; for the active tab which caused it to render above the tree view. I'll add a super high value to the tree view, because it should be rendered above everything else! There's a couple more issues that I want to solve before releasing, but in the meantime you can add this to your styles.less:

.tree-view-resizer {
  z-index: 100000;
}
lukescott commented 9 years ago

Awesome! That works (as long as I add !important to that).

olmokramer commented 9 years ago

Ok, v0.24.4 is published now! Please let me know if it's working alright. (And don't forget to remove the css from your styles.less first :p)