From 69c42115b262732512ad1df25d63c71b1d110691 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Wed, 11 Mar 2015 13:13:51 -0700 Subject: [PATCH] fix(win32): Resize cursors need to be different for win --- static/workspace.less | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/static/workspace.less b/static/workspace.less index 9f23df82b..bbc0baa85 100644 --- a/static/workspace.less +++ b/static/workspace.less @@ -109,7 +109,6 @@ atom-workspace { width:100%; // border-top: 1px solid @border-color-divider; } - &.flexbox-handle-top { top:-3px; padding-right:3px; @@ -119,3 +118,13 @@ atom-workspace { padding-right:2px; } } + + +body.platform-win32 { + .flexbox-handle-vertical { + cursor:ns-resize; + } + .flexbox-handle-horizontal { + cursor:ew-resize; + } +} \ No newline at end of file