mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
🐛 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:
parent
265dd54ae9
commit
46458487fd
@ -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);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user