0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Added a small tweak to the percentages on post list

refs https://github.com/TryGhost/Team/issues/1965
This commit is contained in:
James Morris 2022-09-26 12:29:46 +01:00
parent 7e780681d9
commit 97af5c3731
2 changed files with 8 additions and 2 deletions

View file

@ -126,7 +126,7 @@
{{#if this.isOpenStatHovered}}
{{format-number @post.email.openedCount}}
{{else}}
{{@post.email.openRate}}%
{{@post.email.openRate}}<sup>%</sup>
{{/if}}
</span>
<span class="gh-content-email-stats">
@ -146,7 +146,7 @@
{{#if this.isClickStatHovered}}
{{format-number @post.count.clicks}}
{{else}}
{{@post.clickRate}}%
{{@post.clickRate}}<sup>%</sup>
{{/if}}
</span>
<span class="gh-content-email-stats">

View file

@ -1052,6 +1052,12 @@ a.gh-post-list-signups.active:hover > span, a.gh-post-list-conversions.active:ho
margin: 0 0 3px;
}
.gh-content-email-stats-value sup {
top: -0.225em;
font-size: 75%;
padding: 0 0 0 1px;
}
a.gh-post-list-cta {
display: flex;
align-items: center;