forked from alemi/upub
fix(web): more consistent link hovering
This commit is contained in:
parent
a2715d2978
commit
b0ffc6187f
2 changed files with 6 additions and 3 deletions
|
@ -63,6 +63,9 @@
|
||||||
a.upub-title:hover {
|
a.upub-title:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
a.hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
a.hover:hover {
|
a.hover:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
|
@ -182,11 +182,11 @@ pub fn ActorBanner(object: serde_json::Value) -> impl IntoView {
|
||||||
<div>
|
<div>
|
||||||
<table class="align" >
|
<table class="align" >
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="2" ><img class="avatar-circle" src={avatar_url} /></td>
|
<td rowspan="2" ><a href={uri.clone()} ><img class="avatar-circle" src={avatar_url} /></a></td>
|
||||||
<td><b>{display_name}</b></td>
|
<td><b>{display_name}</b></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="top" ><a class="clean" href={uri} ><small>{username}@{domain}</small></a></td>
|
<td class="top" ><a class="hover" href={uri} ><small>{username}@{domain}</small></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -352,7 +352,7 @@ pub fn InlineActivity(activity: serde_json::Value) -> impl IntoView {
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="rev">
|
<td class="rev">
|
||||||
<a class="clean hover" href={Uri::web("objects", &object_id)} >
|
<a class="hover" href={Uri::web("objects", &object_id)} >
|
||||||
<small>{Uri::pretty(&object_id)}</small>
|
<small>{Uri::pretty(&object_id)}</small>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue