mirror of
https://gitlab.com/brutaldon/brutaldon.git
synced 2024-12-04 14:46:24 -05:00
Revert "Expand reply/boost/fav buttons into icon+text"
This reverts commit 7692cd3bcc
.
This commit is contained in:
parent
1eb32dc189
commit
c71f1cf16d
@ -85,32 +85,32 @@
|
|||||||
<nav class="level is-mobile">
|
<nav class="level is-mobile">
|
||||||
<div class="level-left">
|
<div class="level-left">
|
||||||
<a href="{% url "reply" toot.id %}" class="level-item">
|
<a href="{% url "reply" toot.id %}" class="level-item">
|
||||||
<span ><span class="fa fa-reply">
|
<span class="icon is-small"><span class="fa fa-reply">
|
||||||
<span>Reply</span>
|
<span class="is-invisible">Reply</span>
|
||||||
</span></span>
|
</span></span>
|
||||||
</a>
|
</a>
|
||||||
{% if toot.visibility != 'private' and toot.visibility != 'direct' %}
|
{% if toot.visibility != 'private' and toot.visibility != 'direct' %}
|
||||||
<a href="{% url "boost" toot.id %}" class="level-item">
|
<a href="{% url "boost" toot.id %}" class="level-item">
|
||||||
<span >
|
<span class="icon is-small">
|
||||||
{% if toot.reblogged %}
|
{% if toot.reblogged %}
|
||||||
<span class="fa fa-retweet has-text-warning">
|
<span class="fa fa-retweet has-text-warning">
|
||||||
<strong >Boosted</strong>
|
<strong class="is-invisible" >Boosted</strong>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="fa fa-retweet" >
|
<span class="fa fa-retweet" >
|
||||||
<span >Boost</span>
|
<span class="is-invisible" >Boost</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{% url "fav" toot.id %}" class="level-item">
|
<a href="{% url "fav" toot.id %}" class="level-item">
|
||||||
<span>
|
<span class="icon is-small">
|
||||||
{% if toot.favourited %}
|
{% if toot.favourited %}
|
||||||
<span class="fa fa-heart has-text-warning">
|
<span class="fa fa-heart has-text-warning">
|
||||||
<strong >Favorited</strong>
|
<strong class="is-invisible" >Favorited</strong>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="fa fa-heart">
|
<span class="fa fa-heart">
|
||||||
<span >Favorite</span>
|
<span class="is-invisible" >Favorite</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user