Skip to content
Snippets Groups Projects
Commit 2543f795 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

Disable pointer-events on cursor divs

So that they don't interfere with clicking and dragging

Issue #2556
parent 92e9634f
No related branches found
No related tags found
No related merge requests found
......@@ -297,7 +297,10 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
visibility: hidden;
}
.CodeMirror-cursor { position: absolute; }
.CodeMirror-cursor {
position: absolute;
pointer-events: none;
}
.CodeMirror-measure pre { position: static; }
div.CodeMirror-cursors {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment