Make cursor a bit transparent when editor is not focused

This commit is contained in:
Nathan Sobo
2012-08-15 14:54:20 -07:00
parent 847b514164
commit 85b6cc3cf5

View File

@@ -93,6 +93,11 @@
.editor .cursor {
position: absolute;
border-left: 2px solid;
opacity: 0.65;
}
.editor.focused .cursor {
opacity: 1;
}
.editor.focused .cursor.idle {