🐛 Fix pane resize cursors on Windows

This commit is contained in:
Machiste Quintana
2015-06-16 20:18:16 -04:00
parent dbb1200e1b
commit fe4654c9ea

View File

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