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

Fixed feature images not showing in mentions feed

refs https://github.com/TryGhost/Team/issues/2502
This commit is contained in:
Djordje Vlaisavljevic 2023-01-30 21:49:40 +00:00
parent 8a153a83ad
commit 368d110b1b
3 changed files with 3 additions and 1 deletions

View file

@ -1486,6 +1486,7 @@ kbd {
/* Mentions */ /* Mentions */
.gh-mention-container { .gh-mention-container {
background-color: var(--whitegrey); background-color: var(--whitegrey);
border: 1px solid var(--whitegrey);
} }
.gh-mention-your-post-link { .gh-mention-your-post-link {

View file

@ -24,6 +24,7 @@
text-decoration: none; text-decoration: none;
border-radius: 3px; border-radius: 3px;
background-color: var(--whitegrey-l1); background-color: var(--whitegrey-l1);
border: 1px solid var(--whitegrey-l1);
overflow: hidden; overflow: hidden;
color: inherit; color: inherit;
} }

View file

@ -54,7 +54,7 @@ module.exports = class BookshelfMentionRepository {
sourceAuthor: model.get('source_author'), sourceAuthor: model.get('source_author'),
sourceExcerpt: model.get('source_excerpt'), sourceExcerpt: model.get('source_excerpt'),
sourceFavicon: model.get('source_favicon'), sourceFavicon: model.get('source_favicon'),
sourceFeaturedImaged: model.get('source_featured_image') sourceFeaturedImage: model.get('source_featured_image')
}); });
} }