Change reply icon
This commit is contained in:
parent
213db9a0d4
commit
437406a578
2 changed files with 12 additions and 13 deletions
|
@ -1,2 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg class="icon icon-tabler icon-tabler-arrow-forward" width="24" height="24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none" stroke="none"/><path d="m15.525 10.7 4.6 4.6-4.6 4.6m4.6-4.6h-12.65a4.6 4.6 0 0 1 0-9.2h1.15" stroke-width="2.3"/></svg>
|
|
Before Width: | Height: | Size: 442 B |
|
@ -14,15 +14,6 @@
|
||||||
<div class="actor-address" :title="'@' + actorAddress">
|
<div class="actor-address" :title="'@' + actorAddress">
|
||||||
@{{ actorAddress }}
|
@{{ actorAddress }}
|
||||||
</div>
|
</div>
|
||||||
<a
|
|
||||||
class="icon icon-small"
|
|
||||||
:href="post.uri"
|
|
||||||
:title="'Visibility: ' + post.visibility"
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
>
|
|
||||||
<visibility-icon :visibility="post.visibility"></visibility-icon>
|
|
||||||
</a>
|
|
||||||
<a
|
<a
|
||||||
v-if="inThread && post.in_reply_to_id"
|
v-if="inThread && post.in_reply_to_id"
|
||||||
class="icon"
|
class="icon"
|
||||||
|
@ -33,6 +24,15 @@
|
||||||
>
|
>
|
||||||
<img :src="require('@/assets/tabler/corner-left-up.svg')">
|
<img :src="require('@/assets/tabler/corner-left-up.svg')">
|
||||||
</a>
|
</a>
|
||||||
|
<a
|
||||||
|
class="icon icon-small"
|
||||||
|
:href="post.uri"
|
||||||
|
:title="'Visibility: ' + post.visibility"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
>
|
||||||
|
<visibility-icon :visibility="post.visibility"></visibility-icon>
|
||||||
|
</a>
|
||||||
<a
|
<a
|
||||||
class="timestamp"
|
class="timestamp"
|
||||||
@click="navigateTo(post.id)"
|
@click="navigateTo(post.id)"
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
<router-link
|
<router-link
|
||||||
v-if="!inThread"
|
v-if="!inThread"
|
||||||
class="icon"
|
class="icon"
|
||||||
title="View comments"
|
title="View replies"
|
||||||
:to="{ name: 'post', params: { postId: post.id }}"
|
:to="{ name: 'post', params: { postId: post.id }}"
|
||||||
>
|
>
|
||||||
<img :src="require('@/assets/forkawesome/comment-o.svg')">
|
<img :src="require('@/assets/forkawesome/comment-o.svg')">
|
||||||
|
@ -70,7 +70,8 @@
|
||||||
title="Reply"
|
title="Reply"
|
||||||
@click="commentFormVisible = !commentFormVisible"
|
@click="commentFormVisible = !commentFormVisible"
|
||||||
>
|
>
|
||||||
<img :src="require('@/assets/tabler/arrow-forward.svg')">
|
<img :src="require('@/assets/forkawesome/comment-o.svg')">
|
||||||
|
<span>{{ post.replies_count }}</span>
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
v-if="canRepost()"
|
v-if="canRepost()"
|
||||||
|
|
Loading…
Reference in a new issue