From 6d6740f9986e278269c42419a94abe8265b41132 Mon Sep 17 00:00:00 2001 From: Jonathan Straub Date: Thu, 17 Dec 2020 08:58:38 +0100 Subject: [PATCH] Matching color of description cursor with text color Fixes #2556 Signed-off-by: Jonathan Straub --- src/components/card/Description.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/card/Description.vue b/src/components/card/Description.vue index 9f12e8f95..8abb0064f 100644 --- a/src/components/card/Description.vue +++ b/src/components/card/Description.vue @@ -298,6 +298,10 @@ h5 { color: var(--color-text-maxcontrast); } +.CodeMirror-cursor { + border-left: 1px solid var(--color-main-text); +} + .editor-preview, .editor-statusbar { display: none;