From a22f80d388d0904fc56e0b69949b8432a00a2a1f Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Thu, 21 Sep 2017 10:14:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20Fixed=20unreadable=20Unsplash?= =?UTF-8?q?=20search=20text=20in=20Night=20Shift=20mode=20(#866)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes https://github.com/TryGhost/Ghost/issues/9030 - don't change the search input's background color when the input has focus 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 7829666abc..d78372eb7f 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -308,6 +308,10 @@ input, color: #fff; } +.gh-unsplash-search:focus { + background-color: color(var(--lightgrey)); +} + .gh-unsplash-zoom { background: rgba(0,0,0,0.8); }