atom/one-light-ui

Missing border on OS X

Closed this issue · 3 comments

Is there any way to fix the missing border on OS X without messing with the presentation on Windows?

missing-border-1

I temporarily fixed it with the following css in my styles.less file:

.theme-one-light-ui {
  border-top: 1px solid rgba(0,0,0,.2);
}

missing-border-2

Yeah, it does look better with a border. I think there is a platform-* class that gets added to the body and could be used.

Awesome! This is what I use in my styles.less now:

.platform-darwin atom-workspace.theme-one-light-ui {
  border-top: 1px solid rgba(0,0,0,.2);
}

.platform-darwin.is-blurred atom-workspace.theme-one-light-ui {
  border-top: 1px solid rgba(0,0,0,.1);
}

I would've sent a pull request, but I don't really know where to put it.

Ok, added to styles/atom.less. Thanks for your suggestion.