diff --git a/ghost/admin/app/styles/layouts/mentions.css b/ghost/admin/app/styles/layouts/mentions.css index 5da2b4e51c..b78f20abd7 100644 --- a/ghost/admin/app/styles/layouts/mentions.css +++ b/ghost/admin/app/styles/layouts/mentions.css @@ -11,6 +11,10 @@ grid-column: span 2; } +.gh-mentions-list.is-empty { + grid-column: span 3; +} + .gh-mention-card { display: block; position: relative; @@ -24,6 +28,11 @@ color: var(--midgrey); } +.gh-mention-card:hover { + transition: box-shadow 0.1s ease-in; + box-shadow: 0 1px 4px -1px rgb(0 0 0 / 10%); +} + .gh-mention-header { width: 100%; display: flex; @@ -175,7 +184,7 @@ } .gh-mentions-explainer { - background-color: var(--whitegrey); + background: var(--main-color-content-greybg); border-radius: 5px; padding: 24px; } diff --git a/ghost/admin/app/templates/mentions.hbs b/ghost/admin/app/templates/mentions.hbs index 512288b354..f5e5f9dded 100644 --- a/ghost/admin/app/templates/mentions.hbs +++ b/ghost/admin/app/templates/mentions.hbs @@ -12,6 +12,13 @@ {{svg-jar "arrow-right-small"}}Mentions + {{else}} +
+ + Dashboard + + {{svg-jar "arrow-right-small"}}Mentions +
{{/if}}

{{#if this.post }} @@ -31,7 +38,7 @@
-
+
{{#if this.mentionsInfinityModel}}
{{#each this.mentionsInfinityModel as |mention|}} @@ -83,12 +90,14 @@ @scrollable=".gh-main" @triggerOffset={{1000}} />
-
-
- -

Introducing Mentions

-

Whenever another person or site links to you, you’ll receive a notification in your dashboard to show you who’s talking about your content — and, when you link to someone else’s work, they’ll be notified, too.

+ {{#if this.mentionsInfinityModel}} +
+
+ +

Introducing Mentions

+

Whenever another person or site links to you, you’ll receive a notification in your dashboard to show you who’s talking about your content — and, when you link to someone else’s work, they’ll be notified, too.

+
-
+ {{/if}}
diff --git a/ghost/admin/public/assets/img/mentions-background.png b/ghost/admin/public/assets/img/mentions-background.png index da8d0d7306..23a49851c0 100644 Binary files a/ghost/admin/public/assets/img/mentions-background.png and b/ghost/admin/public/assets/img/mentions-background.png differ