From 7e660aad4528a99382a4d44576b51c66c8e9f81a Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Mon, 12 Jun 2023 20:49:15 +1200 Subject: [PATCH] Add styling for columnSplite and pageLine --- themes/codeMirror/customEditorStyles.less | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/themes/codeMirror/customEditorStyles.less b/themes/codeMirror/customEditorStyles.less index 39bad9504..4db332c20 100644 --- a/themes/codeMirror/customEditorStyles.less +++ b/themes/codeMirror/customEditorStyles.less @@ -1,4 +1,4 @@ -.codeEditor .CodeMirror { +.editor .codeEditor .CodeMirror { // Themes with dark backgrounds &.cm-s-3024-night, &.cm-s-abbott, @@ -49,8 +49,20 @@ &.cm-s-yonce, &.cm-s-zenburn { - .CodeMirror-code .block:not(.cm-comment) { - color: magenta; + .CodeMirror-code { + .block:not(.cm-comment) { + color: magenta; + } + .columnSplit { + color: black; + background-color: rgba(35,153,153,0.5); + } + .pageLine { + background-color: rgba(255,255,255,0.75); + & ~ pre.CodeMirror-line { + color: black; + } + } } } } \ No newline at end of file