Hide code mirror cursor when not focused

Closes #51 again

- Hide CodeMirror cursor when not focused
This commit is contained in:
Paul Adam Davis 2014-06-27 10:04:12 +01:00
parent 08604b0b0e
commit a39d064f0c
2 changed files with 7 additions and 1 deletions

View File

@ -869,6 +869,12 @@ body.zen {
.CodeMirror-measure pre { position: static; }
.CodeMirror:not(.CodeMirror-focused) {
div.CodeMirror-cursor {
visibility: hidden;
}
}
.CodeMirror div.CodeMirror-cursor {
position: absolute;
border-right: none;

File diff suppressed because one or more lines are too long