1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Desktop: Fixed color of links within list in Markdown editor (#6447)

This commit is contained in:
Hieu-Thi Luong 2022-04-27 21:10:28 +09:00 committed by GitHub
parent 0d8c69123b
commit 0d4cb5c16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -465,6 +465,10 @@ function CodeMirror(props: NoteBodyEditorProps, ref: any) {
color: ${theme.color};
}
div.CodeMirror span.cm-variable-2, div.CodeMirror span.cm-variable-3, div.CodeMirror span.cm-keyword {
color: ${theme.color};
}
div.CodeMirror span.cm-quote {
color: ${theme.color};
opacity: ${theme.blockQuoteOpacity};
@ -479,10 +483,6 @@ function CodeMirror(props: NoteBodyEditorProps, ref: any) {
opacity: 0.5;
}
div.CodeMirror span.cm-variable-2, div.CodeMirror span.cm-variable-3, div.CodeMirror span.cm-keyword {
color: ${theme.color};
}
div.CodeMirror span.cm-comment {
color: ${theme.codeColor};
}