Global: Add underline while cursor hovering to the clickable counters in the left menu

This commit is contained in:
veselcraft 2023-08-15 02:39:48 +03:00
parent 1174ddfa4f
commit c2b6db1b8a
No known key found for this signature in database
GPG key ID: 9CF0B42766CCF7BA
2 changed files with 5 additions and 1 deletions

View file

@ -176,7 +176,7 @@
<a href="{$thisUser->getURL()}" class="link" title="{_my_page} [Alt+Shift+.]" accesskey=".">{_my_page}</a> <a href="{$thisUser->getURL()}" class="link" title="{_my_page} [Alt+Shift+.]" accesskey=".">{_my_page}</a>
<a href="/friends{$thisUser->getId()}" class="link">{_my_friends} <a href="/friends{$thisUser->getId()}" class="link">{_my_friends}
<object type="internal/link" n:if="$thisUser->getFollowersCount() > 0"> <object type="internal/link" n:if="$thisUser->getFollowersCount() > 0">
<a href="/friends{$thisUser->getId()}?act=incoming"> <a href="/friends{$thisUser->getId()}?act=incoming" class="linkunderline">
(<b>{$thisUser->getFollowersCount()}</b>) (<b>{$thisUser->getFollowersCount()}</b>)
</a> </a>
</object> </object>

View file

@ -29,6 +29,10 @@ a {
cursor: pointer; cursor: pointer;
} }
.linkunderline:hover {
text-decoration: underline;
}
p { p {
margin: 5px 0; margin: 5px 0;
} }