🐛 Fixed visibility of spellcheck errors in Night Shift mode (#874)

closes https://github.com/TryGhost/Ghost/issues/9056

- decrease transparency of background color applied to spellcheck errors in night shift
This commit is contained in:
Kevin Ansfield 2017-09-28 03:46:48 +01:00 committed by Aileen Nowak
parent fb549645f8
commit e59555c2d2

View File

@ -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);
}