Fixed wrongly sized clickable link to comment authors. Added link to reply author's channel (#1298)
This commit is contained in:
parent
fce8e25e46
commit
67218ab5f1
|
@ -37,11 +37,15 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commentAuthor {
|
.commentAuthorWrapper {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-left: 68px;
|
margin-left: 68px;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.commentAuthor {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,10 +48,14 @@
|
||||||
@click="goToChannel(comment.authorLink)"
|
@click="goToChannel(comment.authorLink)"
|
||||||
>
|
>
|
||||||
<p
|
<p
|
||||||
class="commentAuthor"
|
class="commentAuthorWrapper"
|
||||||
@click="goToChannel(comment.authorLink)"
|
|
||||||
>
|
>
|
||||||
{{ comment.author }}
|
<span
|
||||||
|
class="commentAuthor"
|
||||||
|
@click="goToChannel(comment.authorLink)"
|
||||||
|
>
|
||||||
|
{{ comment.author }}
|
||||||
|
</span>
|
||||||
<span class="commentDate">
|
<span class="commentDate">
|
||||||
{{ comment.time }}
|
{{ comment.time }}
|
||||||
</span>
|
</span>
|
||||||
|
@ -108,8 +112,13 @@
|
||||||
:src="reply.authorThumb"
|
:src="reply.authorThumb"
|
||||||
class="commentThumbnail"
|
class="commentThumbnail"
|
||||||
>
|
>
|
||||||
<p class="commentAuthor">
|
<p class="commentAuthorWrapper">
|
||||||
{{ reply.author }}
|
<span
|
||||||
|
class="commentAuthor"
|
||||||
|
@click="goToChannel(reply.authorLink)"
|
||||||
|
>
|
||||||
|
{{ reply.author }}
|
||||||
|
</span>
|
||||||
<span class="commentDate">
|
<span class="commentDate">
|
||||||
{{ reply.time }}
|
{{ reply.time }}
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue