mirror of https://github.com/Chocobozzz/PeerTube
Fix playlist overflow in account channels page
parent
216fa9d579
commit
52ebda26f6
|
@ -37,16 +37,18 @@
|
|||
|
||||
<a i18n class="button-show-channel peertube-button-link orange-button-inverted" [routerLink]="getVideoChannelLink(videoChannel)">Show this channel</a>
|
||||
|
||||
<div class="videos">
|
||||
<div class="no-results" i18n *ngIf="getTotalVideosOf(videoChannel) === 0">This channel doesn't have any videos.</div>
|
||||
<div class="videos-overflow-workaround">
|
||||
<div class="videos">
|
||||
<div class="no-results" i18n *ngIf="getTotalVideosOf(videoChannel) === 0">This channel doesn't have any videos.</div>
|
||||
|
||||
<my-video-miniature
|
||||
*ngFor="let video of getVideosOf(videoChannel)"
|
||||
[video]="video" [user]="userMiniature" [displayVideoActions]="true" [displayOptions]="miniatureDisplayOptions"
|
||||
></my-video-miniature>
|
||||
<my-video-miniature
|
||||
*ngFor="let video of getVideosOf(videoChannel)"
|
||||
[video]="video" [user]="userMiniature" [displayVideoActions]="true" [displayOptions]="miniatureDisplayOptions"
|
||||
></my-video-miniature>
|
||||
|
||||
<div *ngIf="getTotalVideosOf(videoChannel)" class="miniature-show-channel">
|
||||
<a i18n [routerLink]="getVideoChannelLink(videoChannel)">SHOW THIS CHANNEL ></a>
|
||||
<div *ngIf="getTotalVideosOf(videoChannel)" class="miniature-show-channel">
|
||||
<a i18n [routerLink]="getVideoChannelLink(videoChannel)">SHOW THIS CHANNEL ></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -77,10 +77,8 @@ my-subscribe-button {
|
|||
display: flex;
|
||||
grid-column: 1 / 3;
|
||||
grid-row: 2;
|
||||
margin-top: 30px;
|
||||
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
my-video-miniature {
|
||||
@include margin-right(15px);
|
||||
|
@ -94,6 +92,11 @@ my-subscribe-button {
|
|||
}
|
||||
}
|
||||
|
||||
.videos-overflow-workaround {
|
||||
margin-top: 30px;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.miniature-show-channel {
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue