aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-16 22:13:07 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-16 22:13:07 +0100
commita0dedc02ca870a31298eb35d5105a1ebc34dbb4a (patch)
treeca4db4ff9aa0576e22cb3db853a3a4643f9a12b6 /client/src/app/videos
parent2de7f588eb7185525cc8687872fed443a24fd27b (diff)
downloadPeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.gz
PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.zst
PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.zip
(consistency) channel nameWithHost copy button, comment avatar link
Diffstat (limited to 'client/src/app/videos')
-rw-r--r--client/src/app/videos/+video-watch/comment/video-comment.component.html13
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.scss3
2 files changed, 9 insertions, 7 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.html b/client/src/app/videos/+video-watch/comment/video-comment.component.html
index 80e8cae1d..04bb1f7a2 100644
--- a/client/src/app/videos/+video-watch/comment/video-comment.component.html
+++ b/client/src/app/videos/+video-watch/comment/video-comment.component.html
@@ -1,11 +1,12 @@
1<div class="root-comment"> 1<div class="root-comment">
2 <div class="left"> 2 <div class="left">
3 <img 3 <a *ngIf="!comment.isDeleted" [href]="comment.account.url" target="_blank" rel="noopener noreferrer">
4 *ngIf="!comment.isDeleted" 4 <img
5 class="comment-avatar" 5 class="comment-avatar"
6 [src]="comment.accountAvatarUrl" 6 [src]="comment.accountAvatarUrl"
7 alt="Avatar" 7 alt="Avatar"
8 /> 8 />
9 </a>
9 10
10 <div class="vertical-border"></div> 11 <div class="vertical-border"></div>
11 </div> 12 </div>
diff --git a/client/src/app/videos/+video-watch/video-watch.component.scss b/client/src/app/videos/+video-watch/video-watch.component.scss
index a8400c196..ddf6cccea 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.scss
+++ b/client/src/app/videos/+video-watch/video-watch.component.scss
@@ -155,9 +155,10 @@ $video-info-margin-left: 44px;
155 155
156 .video-info-date-views { 156 .video-info-date-views {
157 flex-grow: 1; 157 flex-grow: 1;
158 align-self: start;
158 margin-bottom: 10px; 159 margin-bottom: 10px;
159 margin-right: 10px; 160 margin-right: 10px;
160 font-size: 16px; 161 font-size: 1em;
161 } 162 }
162 163
163 .video-info-channel { 164 .video-info-channel {