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>
|
<p class="is-hidden"></p>
|
||||||
<nav class="level is-mobile">
|
<nav class="level is-mobile">
|
||||||
<div class="level-left">
|
<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="icon is-small"><i class="fa fa-reply">
|
||||||
<span class="is-invisible">Reply</span>
|
<span class="is-invisible">Reply</span>
|
||||||
</i></span>
|
</i></span>
|
||||||
</a>
|
</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">
|
<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">
|
||||||
|
@ -79,7 +82,9 @@
|
||||||
</i>
|
</i>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</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">
|
<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">
|
||||||
|
@ -91,6 +96,7 @@
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="level-right">
|
<div class="level-right">
|
||||||
<span class="level-item">
|
<span class="level-item">
|
||||||
{{ toot.visibility }}
|
{{ toot.visibility }}
|
||||||
|
|
Loading…
Reference in New Issue