Skip to content

Commit

Permalink
Fix: Cursor type in annotation dialog (#195)
Browse files Browse the repository at this point in the history
Cursor should be overridden with `auto` instead of `default` since `default` just uses an arrow for everything.
  • Loading branch information
tonyjin authored Jun 6, 2018
1 parent 1d63d0d commit b568288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Annotator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
.ba-annotation-dialog,
.ba-create-annotation-dialog {
border-top: 20px solid transparent; // Transparent border for hover detection
cursor: default; // Overrides cursor: none from annotation mode
cursor: auto; // Overrides cursor: none from annotation mode
font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
position: absolute;
text-align: left;
Expand Down

0 comments on commit b568288

Please sign in to comment.