mirror of https://gitlab.com/brutaldon/brutaldon
Minor layout fix in toot partial
This commit is contained in:
parent
8d6ebfc0b2
commit
25cbb258c6
|
@ -63,12 +63,15 @@
|
|||
<p class="is-hidden"></p>
|
||||
<nav class="level is-mobile">
|
||||
<div class="level-left">
|
||||
<a class="level-item" href="{% url "reply" toot.id %}">
|
||||
<div class="level-item">
|
||||
<a href="{% url "reply" toot.id %}">
|
||||
<span class="icon is-small"><i class="fa fa-reply">
|
||||
<span class="is-invisible">Reply</span>
|
||||
</i></span>
|
||||
</a>
|
||||
<a class="level-item" href="{% url "boost" toot.id %}">
|
||||
</div>
|
||||
<div class="level-item">
|
||||
<a href="{% url "boost" toot.id %}">
|
||||
<span class="icon is-small">
|
||||
{% if toot.reblogged %}
|
||||
<i class="fa fa-retweet has-text-warning">
|
||||
|
@ -79,7 +82,9 @@
|
|||
</i>
|
||||
</span>
|
||||
</a>
|
||||
<a class="level-item" href="{% url "fav" toot.id %}">
|
||||
</div>
|
||||
<div class="level-item">
|
||||
<a href="{% url "fav" toot.id %}">
|
||||
<span class="icon is-small">
|
||||
{% if toot.favourited %}
|
||||
<i class="fa fa-heart has-text-warning">
|
||||
|
@ -91,6 +96,7 @@
|
|||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="level-right">
|
||||
<span class="level-item">
|
||||
{{ toot.visibility }}
|
||||
|
|
Loading…
Reference in New Issue