From 94785e6a3dadd446e37951c0df1a7d2f60228cf5 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Fri, 3 Feb 2012 08:00:55 +0000 Subject: [PATCH] Selected text now using CSS style Fix to incorrect CSS ref (- .span) to make selected text highlight as intended --- lib/editor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/editor.css b/lib/editor.css index f58fb32..fa9b274 100644 --- a/lib/editor.css +++ b/lib/editor.css @@ -33,7 +33,7 @@ html, body {margin: 0px} .cm-s-icecoder span.cm-hr {color: #999;} .cm-s-icecoder span.cm-link {color: #ff0;} -.cm-s-icecoder span.CodeMirror-selected {background: #ff0000 !important;} +.cm-s-icecoder .CodeMirror-selected {background: #000000 !important;} .cm-s-icecoder .CodeMirror-gutter {background: #333; border-right: 1px solid #e8e8e8;} .cm-s-icecoder .CodeMirror-gutter-text {color: #999; width: 35px;} .cm-s-icecoder .CodeMirror-cursor {border-left: 1px solid white !important;}