Add thumbnail info if live

pull/3284/head
Chocobozzz 2020-10-27 08:45:30 +01:00 committed by Chocobozzz
parent b5b687550d
commit da0310f821
3 changed files with 13 additions and 4 deletions

View File

@ -268,7 +268,7 @@
>{{ tag }}</a>
</div>
<div class="video-attribute">
<div class="video-attribute" *ngIf="!video.isLive">
<span i18n class="video-attribute-label">Duration</span>
<span class="video-attribute-value">{{ video.duration | myDurationFormatter }}</span>
</div>

View File

@ -26,7 +26,8 @@
<div class="video-thumbnail-label-overlay warning"><ng-content select="label-warning"></ng-content></div>
<div class="video-thumbnail-label-overlay danger"><ng-content select="label-danger"></ng-content></div>
<div class="video-thumbnail-duration-overlay">{{ video.durationLabel }}</div>
<div class="video-thumbnail-duration-overlay" *ngIf="!video.isLive">{{ video.durationLabel }}</div>
<div i18n class="video-thumbnail-live-overlay" *ngIf="video.isLive">LIVE</div>
<div class="play-overlay">
<div class="icon"></div>

View File

@ -20,7 +20,8 @@
.video-thumbnail-watch-later-overlay,
.video-thumbnail-label-overlay,
.video-thumbnail-duration-overlay {
.video-thumbnail-duration-overlay,
.video-thumbnail-live-overlay {
@include static-thumbnail-overlay;
border-radius: 3px;
@ -41,13 +42,20 @@
&.danger { background-color: red; }
}
.video-thumbnail-duration-overlay {
.video-thumbnail-duration-overlay,
.video-thumbnail-live-overlay {
position: absolute;
padding: 0 3px;
right: 5px;
bottom: 5px;
}
.video-thumbnail-live-overlay {
background-color: rgba(224, 8, 8, 0.7);
color: #fff;
font-weight: $font-semibold;
}
.video-thumbnail-actions-overlay {
position: absolute;
display: flex;