atom / one-light-ui

Atom One light UI theme
MIT License
73 stars 62 forks source link

Top border is fat on OS X #53

Closed yuriihabrusiev closed 8 years ago

yuriihabrusiev commented 8 years ago
screenshot 2016-03-18 11 19 34

In styles/atom.less we have

.platform-darwin {
    atom-workspace.theme-one-light-ui {
      border-top: 1px solid darken(@base-border-color, 20%);
    }
    &.is-blurred atom-workspace.theme-one-light-ui {
      border-top-color: @base-border-color;
    }
}

If disable this via DevTools:

screenshot 2016-03-18 11 24 50

One Dark also has this code but border is not visible because you used exactly same code :smiley:

simurai commented 8 years ago

The top border got added here: https://github.com/atom/one-light-ui/issues/25. It looks like at that time, there was no border at all. But probably in the meantime it got added in Electron/Chromium and it's now part of the title bar.

So, yeah, we can remove it again.