mirror of
https://gitlab.com/brutaldon/brutaldon.git
synced 2024-12-04 14:46:24 -05:00
Fixed something for FULLBRUTALISM mode
In the more beautiful mode Brutaldon shows by icon color if an post is already boosted or favourited. In the Fullbrutalism there is now way to see if I already boosted or favourited an post. With my changes Brutaldon can show the words "favorited" and "boosted" in Fullbrutalism mode.
This commit is contained in:
parent
7420755110
commit
9c3bf20bca
@ -93,10 +93,11 @@
|
|||||||
<span class="icon is-small">
|
<span class="icon is-small">
|
||||||
{% if toot.reblogged %}
|
{% if toot.reblogged %}
|
||||||
<i class="fa fa-retweet has-text-warning">
|
<i class="fa fa-retweet has-text-warning">
|
||||||
|
<span class="is-invisible" >Boosted</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<i class="fa fa-retweet" >
|
<i class="fa fa-retweet" >
|
||||||
{% endif %}
|
|
||||||
<span class="is-invisible" >Boost</span>
|
<span class="is-invisible" >Boost</span>
|
||||||
|
{% endif %}
|
||||||
</i>
|
</i>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
@ -105,10 +106,11 @@
|
|||||||
<span class="icon is-small">
|
<span class="icon is-small">
|
||||||
{% if toot.favourited %}
|
{% if toot.favourited %}
|
||||||
<i class="fa fa-heart has-text-warning">
|
<i class="fa fa-heart has-text-warning">
|
||||||
|
<span class="is-invisible" >Favorited</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<i class="fa fa-heart">
|
<i class="fa fa-heart">
|
||||||
{% endif %}
|
|
||||||
<span class="is-invisible" >Favorite</span>
|
<span class="is-invisible" >Favorite</span>
|
||||||
|
{% endif %}
|
||||||
</i>
|
</i>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
Loading…
Reference in New Issue
Block a user