Cursor is colored / blinks on on focused editor pane

This commit is contained in:
Nathan Sobo
2012-03-19 09:31:03 -06:00
parent 1437858241
commit 509bac15b6
3 changed files with 16 additions and 5 deletions

View File

@@ -67,11 +67,15 @@
.editor .cursor {
position: absolute;
border-left: 3px solid #9dff9d;
border-left: 3px solid rgba(255, 255, 255, .4);
opacity: 0.7;
}
.editor .cursor.idle {
.editor.focused .cursor {
border-color: #9dff9d;
}
.editor.focused .cursor.idle {
-webkit-animation: blink 0.6s;
-webkit-animation-iteration-count: infinite;
}