Make toots hint more strongly when they are part of a thread.
This commit is contained in:
parent
ae66d5b064
commit
9825b67f57
|
@ -139,7 +139,7 @@
|
||||||
<a href="{% url "reply" toot.id %}" class="level-item">
|
<a href="{% url "reply" toot.id %}" class="level-item">
|
||||||
{% if toot.replies_count > 0 %}
|
{% if toot.replies_count > 0 %}
|
||||||
<span class="fa fa-reply-all">
|
<span class="fa fa-reply-all">
|
||||||
<span class="is-hidden-mobile">Reply+</span>
|
<span class="is-hidden-mobile"><strong>Reply</strong></span>
|
||||||
</span>
|
</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="fa fa-reply">
|
<span class="fa fa-reply">
|
||||||
|
@ -198,9 +198,15 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ toot.visibility }}
|
{{ toot.visibility }}
|
||||||
|
|
||||||
|
{% if toot.in_reply_to_id or toot.replies_count > 0 %}
|
||||||
|
<a class="level-item" href="{% url "thread" toot.id %}">
|
||||||
|
<strong>thread</strong>
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
<a class="level-item" href="{% url "thread" toot.id %}">
|
<a class="level-item" href="{% url "thread" toot.id %}">
|
||||||
thread
|
thread
|
||||||
</a>
|
</a>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue