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:
Niklas Poslovski 2018-06-13 18:35:23 +02:00 committed by GitHub
parent 7420755110
commit 9c3bf20bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

View File

@ -93,11 +93,12 @@
<span class="icon is-small">
{% if toot.reblogged %}
<i class="fa fa-retweet has-text-warning">
<span class="is-invisible" >Boosted</span>
{% else %}
<i class="fa fa-retweet" >
<i class="fa fa-retweet" >
<span class="is-invisible" >Boost</span>
{% endif %}
<span class="is-invisible" >Boost</span>
</i>
</i>
</span>
</a>
{% endif %}
@ -105,11 +106,12 @@
<span class="icon is-small">
{% if toot.favourited %}
<i class="fa fa-heart has-text-warning">
<span class="is-invisible" >Favorited</span>
{% else %}
<i class="fa fa-heart">
<i class="fa fa-heart">
<span class="is-invisible" >Favorite</span>
{% endif %}
<span class="is-invisible" >Favorite</span>
</i>
</i>
</span>
</a>
</div>