0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed missing background of image uploader in PSM

This commit is contained in:
Peter Zimon 2021-03-09 12:59:25 +01:00
parent c554081c4f
commit 9a38d74a65
2 changed files with 4 additions and 3 deletions

View file

@ -148,6 +148,7 @@
.settings-menu-content .gh-image-uploader {
margin: 0 0 1.6rem 0;
background: color-mod(var(--whitegrey-l1) l(+2%));
}
.settings-menu-content .gh-image-uploader .description {

View file

@ -143,13 +143,13 @@
width: 36px;
height: 36px;
padding: 10px;
opacity: 0.17;
transition: opacity 0.5s ease;
opacity: 0.33;
transition: opacity 0.3s ease;
}
.gh-image-uploader-unsplash:hover {
cursor: pointer;
opacity: 0.8;
opacity: 1.0;
transition: opacity 0.3s ease;
}