Make toots hint more strongly when they are part of a thread.

This commit is contained in:
Jason McBrayer 2018-12-07 08:57:19 -05:00
parent ae66d5b064
commit 9825b67f57
1 changed files with 7 additions and 1 deletions

View File

@ -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 }}
&nbsp;&nbsp; &nbsp;&nbsp;
{% 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 %}