aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortschicke-brown <tyler_schicke@brown.edu>2019-07-14 22:14:39 -0400
committerGitHub <noreply@github.com>2019-07-14 22:14:39 -0400
commit2833001145a2dc6bf3e54a7385f1093f69ebd704 (patch)
tree3cd695f26ce2fb0defbe6ea3bae5d550d99aa6c8 /src
parentc39114a07f1710205b512391de3a115a93883311 (diff)
parent0ff1517a1a210f350c5728c2d91bcd2a8237defa (diff)
Merge pull request #204 from browngraphicslab/stanley_fixes
added library view drag cursor
Diffstat (limited to 'src')
-rw-r--r--src/client/views/MainView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx
index 614b9cce7..76cc7e6d3 100644
--- a/src/client/views/MainView.tsx
+++ b/src/client/views/MainView.tsx
@@ -336,7 +336,7 @@ export class MainView extends React.Component {
if (!(sidebar instanceof Doc)) return (null);
return <div>
<div className="mainView-libraryHandle"
- style={{ left: `${this.flyoutWidth - 10}px`, backgroundColor: `${StrCast(sidebar.backgroundColor, "lightGray")}` }}
+ style={{ cursor: "ew-resize", left: `${this.flyoutWidth - 10}px`, backgroundColor: `${StrCast(sidebar.backgroundColor, "lightGray")}` }}
onPointerDown={this.onPointerDown}>
<span title="library View Dragger" style={{ width: "100%", height: "100%", position: "absolute" }} />
</div>