From b14dfebe2f4d01e712aedee11d27eaa8a772901b Mon Sep 17 00:00:00 2001 From: Sanne de Vries <65487235+sanne-san@users.noreply.github.com> Date: Thu, 30 May 2024 10:10:09 +0200 Subject: [PATCH] Fixed broken post-title background color in dark mode (#20287) No ref --- ghost/admin/app/styles/app-dark.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghost/admin/app/styles/app-dark.css b/ghost/admin/app/styles/app-dark.css index 2d1f21d051..354e3e1fe2 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -744,6 +744,11 @@ input:focus, /* Editor */ +.gh-editor-title, +.gh-editor-subtitle { + background: var(--white); +} + .gh-editor-title::placeholder { color: var(--midlightgrey-d2); }