From fe4654c9ea377c39636caa18af97d4fd39ecca7d Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Tue, 16 Jun 2015 20:18:16 -0400 Subject: [PATCH 1/2] :bug: Fix pane resize cursors on Windows --- static/panes.less | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/static/panes.less b/static/panes.less index 1d6d268d8..e7ca02880 100644 --- a/static/panes.less +++ b/static/panes.less @@ -71,3 +71,20 @@ atom-pane-container { } } } + +// Windows doesn't have row- and col-resize cursors +.platform-win32 { + atom-pane-container { + atom-pane-axis.vertical { + & > atom-pane-resize-handle { + cursor: ns-resize; + } + } + + atom-pane-axis.vertical { + & > atom-pane-resize-handle { + cursor: ew-resize; + } + } + } +} From 1bd94c670fef30d80ad6076d37f354fd053049c4 Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Tue, 16 Jun 2015 20:23:41 -0400 Subject: [PATCH 2/2] Fix copypasta selector --- static/panes.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/panes.less b/static/panes.less index e7ca02880..a1a649e54 100644 --- a/static/panes.less +++ b/static/panes.less @@ -81,7 +81,7 @@ atom-pane-container { } } - atom-pane-axis.vertical { + atom-pane-axis.horizontal { & > atom-pane-resize-handle { cursor: ew-resize; }