diff --git a/ghost/admin/app/components/gh-members-list-item.hbs b/ghost/admin/app/components/gh-members-list-item.hbs index faa31fcbe1..9d4cc52fc5 100644 --- a/ghost/admin/app/components/gh-members-list-item.hbs +++ b/ghost/admin/app/components/gh-members-list-item.hbs @@ -47,8 +47,8 @@ {{#if @member.createdAtUTC}} - {{moment-format @member.createdAtUTC "D MMM YYYY"}} - ({{moment-from-now @member.createdAtUTC}}) +
{{moment-format @member.createdAtUTC "D MMM YYYY"}}
+
{{moment-from-now @member.createdAtUTC}}
{{/if}}
diff --git a/ghost/admin/app/styles/layouts/members.css b/ghost/admin/app/styles/layouts/members.css index dc19275846..48869aaacc 100644 --- a/ghost/admin/app/styles/layouts/members.css +++ b/ghost/admin/app/styles/layouts/members.css @@ -293,6 +293,10 @@ p.gh-members-list-email { margin-top: var(--main-layout-section-vpadding); } +.gh-members-list-subscribed-moment::first-letter { + text-transform: uppercase; +} + @media (min-width: 1200px) and (max-width: 1370px) { .members-header .view-actions input.gh-members-list-searchfield { max-width: 130px; @@ -373,6 +377,23 @@ p.gh-members-list-email { font-size: 1.2rem; } + .gh-members-list-subscribed-at div { + display: inline-block; + margin-right: 1px; + } + + .gh-members-list-subscribed-moment::first-letter { + text-transform: none; + } + + .gh-members-list-subscribed-moment::before { + content: "("; + } + + .gh-members-list-subscribed-moment::after { + content: ")"; + } + .gh-members-list-chevron { display: block; position: absolute;