From e59555c2d2deba4c6e9ba56749c23e1e3bc1203f Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 28 Sep 2017 03:46:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20visibility=20of=20spellc?= =?UTF-8?q?heck=20errors=20in=20Night=20Shift=20mode=20(#874)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes https://github.com/TryGhost/Ghost/issues/9056 - decrease transparency of background color applied to spellcheck errors in night shift --- ghost/admin/app/styles/app-dark.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghost/admin/app/styles/app-dark.css b/ghost/admin/app/styles/app-dark.css index 8ebc8d0c10..646e7747d5 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -329,3 +329,7 @@ input, background: var(--lightgrey); color: var(--darkgrey); } + +.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) { + background: rgba(255, 0, 0, .30); +}