From 237220c937a7e9797baafba52ee60aa2cffbee0e Mon Sep 17 00:00:00 2001 From: dtrai2 Date: Fri, 1 Nov 2024 17:39:00 +0100 Subject: [PATCH] fix color of cursor in editor when using dark mode in dark mode the cursor was black which made it difficult to see --- frontend/css/editor.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/css/editor.css b/frontend/css/editor.css index 7975f7b57..7f2d7958c 100644 --- a/frontend/css/editor.css +++ b/frontend/css/editor.css @@ -36,4 +36,8 @@ .cm-editor .cm-selectionMatch { background-color: var(--editor-selectionmatch); } + +.cm-editor .cm-cursor { + border-left-color: var(--text-color-lighter); +} /* stylelint-enable selector-class-pattern */