From a16dd5e8dd3dd5aab3a621dddcc8ae4f0573e59b Mon Sep 17 00:00:00 2001 From: Sanne de Vries Date: Thu, 4 Aug 2022 18:04:55 +0200 Subject: [PATCH] Fixed post title placeholder being invisible in dark mode --- 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 0a1be0a959..70a1e3b9de 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -877,6 +877,10 @@ input:focus, /* Editor */ +.gh-editor-title::placeholder { + color: var(--midlightgrey-d2); +} + .gh-btn-editor { background: var(--white) !important; }