🐛 Fix Unsplash when using Night Shift (#828)

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
This commit is contained in:
Kevin Ansfield 2017-08-16 10:04:07 +01:00 committed by John O'Nolan
parent 265dd54ae9
commit 46458487fd

View File

@ -34,6 +34,7 @@
@import "components/publishmenu.css"; @import "components/publishmenu.css";
@import "components/popovers.css"; @import "components/popovers.css";
@import "components/tour.css"; @import "components/tour.css";
@import "components/unsplash.css";
/* Layouts: Groups of Components /* Layouts: Groups of Components
@ -127,7 +128,8 @@ input,
stroke: var(--darkgrey); stroke: var(--darkgrey);
} }
.gh-main { .gh-main,
.gh-unsplash-window {
background: #263238; background: #263238;
} }
@ -281,7 +283,8 @@ input,
border-color: #fff; border-color: #fff;
} }
.gh-logo { .gh-logo,
.gh-unsplash-logo {
filter: invert(100%) brightness(150%); filter: invert(100%) brightness(150%);
} }
@ -300,3 +303,7 @@ input,
.user-cover-edit { .user-cover-edit {
color: #fff; color: #fff;
} }
.gh-unsplash-zoom {
background: rgba(0,0,0,0.8);
}