tweak(win32): Make the window toolbar white on windows

This commit is contained in:
Ben Gotow 2015-09-10 12:41:12 -07:00
parent 59af9d61a0
commit 42d397fa76

View file

@ -122,12 +122,6 @@ atom-workspace {
}
}
body.platform-win32, body.platform-linux {
.toolbar-window-controls {
display:none;
}
}
body.is-blurred {
.toolbar-window-controls {
button {
@ -312,6 +306,9 @@ body.is-blurred {
}
}
// WINDOWS
body.platform-win32 {
.flexbox-handle-vertical {
cursor:ns-resize;
@ -319,4 +316,27 @@ body.platform-win32 {
.flexbox-handle-horizontal {
cursor:ew-resize;
}
.toolbar-window-controls {
display:none;
}
.sheet-toolbar-container {
background-image: none;
background: @background-primary;
}
}
body.platform-win32.is-blurred {
.sheet-toolbar-container {
background-image: none;
background: @background-primary;
}
}
// LINUX
body.platform-linux {
.toolbar-window-controls {
display:none;
}
}