More CSS tweaks for the in reply to section

This commit is contained in:
Thomas Sileo 2022-10-03 20:05:06 +02:00
parent 919a61f75d
commit 5a20b9d23a
2 changed files with 5 additions and 1 deletions

View File

@ -417,6 +417,10 @@ a.label-btn {
nav {
color: $muted-color;
}
.in-reply-to {
display: inline;
color: $muted-color;
}
.e-content, .activity-og-meta {
a:hover {
text-decoration: underline;

View File

@ -376,7 +376,7 @@
{% endif %}
{% if object.in_reply_to %}
<p class="muted">in reply to <a href="{% if is_admin and object.is_in_reply_to_from_inbox %}{{ url_for("get_lookup") }}?query={% endif %}{{ object.in_reply_to }}" title="{{ object.in_reply_to }}" class="in-reply-to" rel="nofollow">
<p class="in-reply-to">in reply to <a href="{% if is_admin and object.is_in_reply_to_from_inbox %}{{ url_for("get_lookup") }}?query={% endif %}{{ object.in_reply_to }}" title="{{ object.in_reply_to }}" rel="nofollow">
this {{ object.ap_type|lower }}
</a></p>
{% endif %}