From 46458487fd8250597bf8f151b9ccc1c5fbe50d2d Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 16 Aug 2017 10:04:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Unsplash=20when=20using=20?= =?UTF-8?q?Night=20Shift=20(#828)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes https://github.com/TryGhost/Ghost/issues/8905 - import unsplash css file in `app-dark.css` - add background and logo styles to match night shift styles --- ghost/admin/app/styles/app-dark.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/styles/app-dark.css b/ghost/admin/app/styles/app-dark.css index 8f620c18b0..440dc8194f 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -34,6 +34,7 @@ @import "components/publishmenu.css"; @import "components/popovers.css"; @import "components/tour.css"; +@import "components/unsplash.css"; /* Layouts: Groups of Components @@ -127,7 +128,8 @@ input, stroke: var(--darkgrey); } -.gh-main { +.gh-main, +.gh-unsplash-window { background: #263238; } @@ -281,7 +283,8 @@ input, border-color: #fff; } -.gh-logo { +.gh-logo, +.gh-unsplash-logo { filter: invert(100%) brightness(150%); } @@ -300,3 +303,7 @@ input, .user-cover-edit { color: #fff; } + +.gh-unsplash-zoom { + background: rgba(0,0,0,0.8); +}