Skip to content

Commit

Permalink
Global: Add underline while cursor hovering to the clickable counters…
Browse files Browse the repository at this point in the history
… in the left menu
  • Loading branch information
veselcraft committed Aug 14, 2023
1 parent 1174ddf commit c2b6db1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Web/Presenters/templates/@layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<a href="{$thisUser->getURL()}" class="link" title="{_my_page} [Alt+Shift+.]" accesskey=".">{_my_page}</a>
<a href="/friends{$thisUser->getId()}" class="link">{_my_friends}
<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>)
</a>
</object>
Expand Down
4 changes: 4 additions & 0 deletions Web/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ a {
cursor: pointer;
}

.linkunderline:hover {
text-decoration: underline;
}

p {
margin: 5px 0;
}
Expand Down

0 comments on commit c2b6db1

Please sign in to comment.