From 60ce10be9fd8d265bfb96be7010c53cd8b1b2c60 Mon Sep 17 00:00:00 2001 From: James Morris Date: Fri, 14 Oct 2022 11:18:56 +0100 Subject: [PATCH] Fixed up more like this and newsletter clicks table at narrower viewports no issue --- ghost/admin/app/components/posts/analytics.hbs | 2 +- ghost/admin/app/styles/layouts/content.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ghost/admin/app/components/posts/analytics.hbs b/ghost/admin/app/components/posts/analytics.hbs index 4c74febbda..f174ac904c 100644 --- a/ghost/admin/app/components/posts/analytics.hbs +++ b/ghost/admin/app/components/posts/analytics.hbs @@ -94,7 +94,7 @@ {{#if this.post.showAudienceFeedback }}

{{format-number this.post.count.positive_feedback}}

-

More like this — {{this.post.count.sentiment}}%

+

More like this{{this.post.count.sentiment}}%

{{/if}} diff --git a/ghost/admin/app/styles/layouts/content.css b/ghost/admin/app/styles/layouts/content.css index 8033c14da6..4d1af46298 100644 --- a/ghost/admin/app/styles/layouts/content.css +++ b/ghost/admin/app/styles/layouts/content.css @@ -968,7 +968,7 @@ a.gh-post-list-signups.active:hover > span, a.gh-post-list-conversions.active:ho .gh-links-list-item { display: grid; - grid-template-columns: 85% 15%; + grid-template-columns: auto minmax(min-content,max-content); padding: 1.6rem 0; border-bottom: 1px solid var(--whitegrey); font-size: 1.4rem; @@ -1016,7 +1016,7 @@ a.gh-post-list-signups.active:hover > span, a.gh-post-list-conversions.active:ho .gh-links-list-header { display: grid; - grid-template-columns: 85% 15%; + grid-template-columns: minmax(auto, 85%) minmax(min-content, 15%); padding: 0 0 8px; border-bottom: 1px solid var(--whitegrey); }