From 1cab2c2832249b70b806976938f0eab0c36ee082 Mon Sep 17 00:00:00 2001 From: til-schneider Date: Wed, 3 Feb 2016 19:02:04 +0100 Subject: [PATCH] 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 --- src/client/less/view.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client/less/view.less b/src/client/less/view.less index 1d15ae0..e0f015e 100644 --- a/src/client/less/view.less +++ b/src/client/less/view.less @@ -85,6 +85,11 @@ footer { // The original selection background of the railscasts theme is nearly not visible 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 {