From 428984bca2f1e797c616cad4cdf9bec68e5810cd Mon Sep 17 00:00:00 2001 From: Zimo Date: Mon, 25 Mar 2019 14:34:19 +0100 Subject: [PATCH] Fixed integration icon background for Night shift refs. https://github.com/TryGhost/Ghost-Admin/commit/35d8e43c88b0a7bd7c5c0e1716f1d0861654927d The blending mode used on light theme didn't work for Night shift (made all the icons blend into the dark background). --- 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 5eed182804..a29c6abe81 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -370,4 +370,8 @@ input:focus, .gh-nav-list .gh-nav-nightshift span svg path { fill: color-mod(var(--midgrey) l(-5%)); +} + +.apps-card-app-icon { + mix-blend-mode: normal; } \ No newline at end of file