From 42d397fa7682b4530d4b764187fc2c1e174bc3de Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Thu, 10 Sep 2015 12:41:12 -0700 Subject: [PATCH] tweak(win32): Make the window toolbar white on windows --- static/workspace.less | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/static/workspace.less b/static/workspace.less index 51e33c23a..3ae2369b9 100644 --- a/static/workspace.less +++ b/static/workspace.less @@ -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; + } }