diff --git a/ghost/admin/app/components/gh-member-settings-form-cp.hbs b/ghost/admin/app/components/gh-member-settings-form-cp.hbs index 854b9d04a0..bf660ed77e 100644 --- a/ghost/admin/app/components/gh-member-settings-form-cp.hbs +++ b/ghost/admin/app/components/gh-member-settings-form-cp.hbs @@ -121,7 +121,10 @@

- {{product.name}} + {{product.name}} + {{#unless (eq product.subscriptions.length 1 )}} + ({{product.subscriptions.length}} subscriptions) + {{/unless}}

{{#each product.subscriptions as |sub|}}
@@ -138,7 +141,7 @@ Active {{/if}}
-
Created on {{sub.startDate}}
+
Created on {{sub.startDate}}
diff --git a/ghost/admin/app/styles/layouts/members.css b/ghost/admin/app/styles/layouts/members.css index c1b592eb71..5950bc68ed 100644 --- a/ghost/admin/app/styles/layouts/members.css +++ b/ghost/admin/app/styles/layouts/members.css @@ -1616,6 +1616,10 @@ p.gh-members-import-errordetail:first-of-type { border-top: 1px solid var(--whitegrey); } +.gh-memberproduct-created { + margin-top: 1px; +} + .gh-memberproduct-archived .gh-memberproduct-name { opacity: 0.5; } @@ -1687,4 +1691,10 @@ p.gh-members-import-errordetail:first-of-type { .gh-memberproduct-subscription .action-menu > .gh-btn svg { margin: 0; +} + +.gh-memberproduct-subcount { + font-size: 1.4rem; + font-weight: 400; + color: var(--midgrey); } \ No newline at end of file