aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r--client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html3
-rw-r--r--client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss6
2 files changed, 8 insertions, 1 deletions
diff --git a/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html b/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html
index bbfcab2ae..e493ad8d7 100644
--- a/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html
+++ b/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html
@@ -13,6 +13,7 @@
13 </div> 13 </div>
14 14
15 <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count"> 15 <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count">
16 <span i18n *ngIf="!playlist && i === 0 && length !== 0 && autoPlayNextVideo" class="title-page-next-video-label">Next video to be played</span>
16 <my-video-miniature 17 <my-video-miniature
17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature" [displayAsRow]="displayAsRow" 18 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature" [displayAsRow]="displayAsRow"
18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()" 19 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()"
@@ -20,7 +21,7 @@
20 > 21 >
21 </my-video-miniature> 22 </my-video-miniature>
22 23
23 <hr *ngIf="!playlist && i === 0 && length > 1" /> 24 <hr *ngIf="!playlist && i === 0 && length > 1 && autoPlayNextVideo" />
24 </ng-container> 25 </ng-container>
25 </ng-container> 26 </ng-container>
26</div> 27</div>
diff --git a/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss b/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss
index 84ed25ae8..784d0e961 100644
--- a/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss
+++ b/client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.scss
@@ -37,6 +37,12 @@
37 } 37 }
38} 38}
39 39
40.title-page-next-video-label {
41 display: block;
42 margin-bottom: 5px;
43 font-weight: $font-semibold;
44}
45
40hr { 46hr {
41 margin-top: 0; 47 margin-top: 0;
42} 48}