mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Global: Add underline while cursor hovering to the clickable counters in the left menu
This commit is contained in:
parent
1174ddfa4f
commit
c2b6db1b8a
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||||
|
|
|
@ -29,6 +29,10 @@ a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.linkunderline:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue