diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-06 16:36:45 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-06 16:36:45 +0200 |
commit | f94c9c82d144690bfe24a93554e47cfa6a3b2275 (patch) | |
tree | aa1c3b01dab226de599935ce798e408e99c81cec /css | |
parent | e79eb3693220430ecbe2cac68187d525cf6474a3 (diff) |
Refactor renderLine
Hide the cursor when console is blurred. Do not change the color of
character under cursor when cursor is in the unblinked phase.
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq/console.css | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/css/codeq/console.css b/css/codeq/console.css index c3ae853..723f3d5 100644 --- a/css/codeq/console.css +++ b/css/codeq/console.css @@ -14,20 +14,14 @@ padding: 0; } .cq-con-text { - } -.cq-con-cursor { - color: black; - background: greenyellow; -} -.cq-con-cursor.inverted { - color: greenyellow; - background: black; -} - .cq-con-text.input { color: #a6e1ec; } .cq-con-text.error { color: #d9534f; -}
\ No newline at end of file +} +.cq-con-cursor.inverted { + color: black; + background: greenyellow; +} |