Add link to the account page in comment

pull/2780/head
Chocobozzz 2020-05-14 14:41:24 +02:00
parent 2f398c19fd
commit 83e9886eed
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 16 additions and 7 deletions

View File

@ -20,10 +20,16 @@
<div *ngIf="highlightedComment === true" class="highlighted-comment" i18n>Highlighted comment</div>
<div class="comment-account-date">
<a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account">
<span class="comment-account-name" [ngClass]="{ 'video-author': video.account.id === comment.account.id }">{{ comment.account.displayName }}</span>
<span class="comment-account-fid ml-1">{{ comment.by }}</span>
</a>
<div class="comment-account">
<a
[routerLink]="[ '/accounts', comment.by ]"
class="comment-account-name" [ngClass]="{ 'video-author': video.account.id === comment.account.id }"
>
{{ comment.account.displayName }}
</a>
<a [href]="comment.account.url" target="_blank" rel="noopener noreferrer" class="comment-account-fid ml-1">{{ comment.by }}</a>
</div>
<a [routerLink]="['/videos/watch', video.uuid, { 'threadId': comment.threadId }]"
class="comment-date" [title]="comment.createdAt">{{ comment.createdAt | myFromNow }}</a>
</div>

View File

@ -63,13 +63,16 @@
}
.comment-account {
@include disable-default-a-behaviour;
word-break: break-all;
color: var(--mainForegroundColor);
font-weight: 600;
font-size: 90%;
a {
@include disable-default-a-behaviour;
color: var(--mainForegroundColor);
}
.comment-account-fid {
opacity: .6;
}