Fix cursor line highlight style

This commit is contained in:
Nathan Sobo
2012-11-02 12:16:03 -06:00
parent 4539977800
commit 045cdda41d
4 changed files with 19 additions and 16 deletions

View File

@@ -10,7 +10,7 @@ You can change the background color using the following CSS:
```css
.editor.focused .line.cursor-line,
.editor.focused .line-number.cursor-line-number-background {
.editor.focused .line-number.cursor-line {
background-color: green;
}
```
@@ -18,7 +18,7 @@ You can change the background color using the following CSS:
You can change the line number foreground color using the following CSS:
```css
.editor.focused .line-number.cursor-line-number {
.editor.focused .line-number.cursor-line {
color: blue;
}
```