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; + } }