📝 Add is-focused class to cursor example

This is required to take effect for the default Atom light syntax
theme.

Closes #2834
This commit is contained in:
Kevin Sawicki 2014-07-06 10:08:24 -07:00
parent a1c1879ba6
commit df8e0a8464

View File

@ -169,7 +169,7 @@ For example, to change the color of the cursor, you could add the following
rule to your _~/.atom/styles.less_ file:
```less
.editor .cursor {
.editor.is-focused .cursor {
border-color: pink;
}
```