From b5682881aae2d80325e48e99066cd6da0827a71c Mon Sep 17 00:00:00 2001 From: Tony Jin Date: Wed, 6 Jun 2018 13:29:34 -0700 Subject: [PATCH] Fix: Cursor type in annotation dialog (#195) Cursor should be overridden with `auto` instead of `default` since `default` just uses an arrow for everything. --- src/Annotator.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Annotator.scss b/src/Annotator.scss index 24ddd8f32..0d991e65b 100644 --- a/src/Annotator.scss +++ b/src/Annotator.scss @@ -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;