forked from cybrespace/pinafore
fix style nit
This commit is contained in:
parent
03e0ac72d2
commit
7ec109c6af
|
@ -7,26 +7,24 @@
|
|||
{{numStatusesDisplay}}
|
||||
</span>
|
||||
</div>
|
||||
<div class="account-profile-details-item">
|
||||
<a href='/accounts/{{account.id}}/follows'>
|
||||
<span class="account-profile-details-item-title">
|
||||
Follows
|
||||
</span>
|
||||
<span class="account-profile-details-item-datum">
|
||||
{{numFollowingDisplay}}
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="account-profile-details-item">
|
||||
<a href='/accounts/{{account.id}}/followers'>
|
||||
<span class="account-profile-details-item-title">
|
||||
Followers
|
||||
</span>
|
||||
<span class="account-profile-details-item-datum">
|
||||
{{numFollowersDisplay}}
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a class="account-profile-details-item"
|
||||
href='/accounts/{{account.id}}/follows'>
|
||||
<span class="account-profile-details-item-title">
|
||||
Follows
|
||||
</span>
|
||||
<span class="account-profile-details-item-datum">
|
||||
{{numFollowingDisplay}}
|
||||
</span>
|
||||
</a>
|
||||
<a class="account-profile-details-item"
|
||||
href='/accounts/{{account.id}}/followers'>
|
||||
<span class="account-profile-details-item-title">
|
||||
Followers
|
||||
</span>
|
||||
<span class="account-profile-details-item-datum">
|
||||
{{numFollowersDisplay}}
|
||||
</span>
|
||||
</a>
|
||||
<!-- TODO: re-enable this when we support profile editing -->
|
||||
{{#if account && verifyCredentials && account.id !== verifyCredentials.id}}
|
||||
<div class="account-profile-more-options">
|
||||
|
@ -57,6 +55,7 @@
|
|||
}
|
||||
|
||||
.account-profile-details-item:hover {
|
||||
text-decoration: none;
|
||||
background: var(--button-bg-hover);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue