apex-ui-slim icon indicating copy to clipboard operation
apex-ui-slim copied to clipboard

Tree view overlapping stop lights.

Open merryt opened this issue 7 years ago • 2 comments

I had an issue with the treeview running into my stop lights. (example)

I fixed it with

.tree-view{
  margin-top: 25px;
}

Worthy of a PR?

merryt avatar Jan 05 '17 20:01 merryt

ah you need the https://atom.io/packages/no-title-bar plugin

tj avatar Jan 06 '17 19:01 tj

I found https://github.com/atom/atom/issues/4599#issuecomment-270388067 with

atom-workspace {
	.tab-bar {
		margin: 0;
	}
	.tree-view-resizer {
		border: 0
	}
}

rendered best

screen shot 2017-01-17 at 7 57 11 am screen shot 2017-01-17 at 7 57 08 am

As well as setting the following config:

  "tree-view":
    focusOnReveal: false
    hideIgnoredNames: true

balupton avatar Jan 16 '17 23:01 balupton