From 6b245c9894f1493f0f6a12bb488761d6c538fec4 Mon Sep 17 00:00:00 2001 From: pathmapper Date: Wed, 30 Oct 2019 12:24:25 +0100 Subject: [PATCH] Improve matchingbrackets and cursor visibility --- src/codemirror-maputnik.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/codemirror-maputnik.css b/src/codemirror-maputnik.css index ec706b3..b43c6c0 100644 --- a/src/codemirror-maputnik.css +++ b/src/codemirror-maputnik.css @@ -17,7 +17,7 @@ } .cm-s-maputnik .CodeMirror-cursor { - border-left: solid thin #8e8e8e !important; + border-left: solid thin #f0f0f0 !important; } .cm-s-maputnik.CodeMirror-focused div.CodeMirror-selected { @@ -47,5 +47,11 @@ } .cm-s-maputnik .CodeMirror-matchingbracket { + background-color: #f0f0f0; + color: #565659 !important; +} + +.cm-s-maputnik .CodeMirror-nonmatchingbracket { + background-color: #bb0000; color: white !important; }