1
0
mirror of https://github.com/til-schneider/slim-wiki.git synced 2025-08-12 11:34:11 +02:00

Fixed: Syntax errors in the editor (like non-matching closing XML tags) were shown in the same color as the foreground which made them not readable

This commit is contained in:
til-schneider
2016-02-03 19:02:04 +01:00
parent a6c55c13f4
commit 1cab2c2832

View File

@@ -85,6 +85,11 @@ footer {
// The original selection background of the railscasts theme is nearly not visible // The original selection background of the railscasts theme is nearly not visible
background: lighten(@colorEditorBg, 10%) !important; background: lighten(@colorEditorBg, 10%) !important;
} }
span.cm-error {
// The original error background has the same color as the foreground (#da4939) which makes the text not readable
background: #8c0e00;
}
} }
.mode-createUser { .mode-createUser {