diff options
author | Kim <1877318+kimsible@users.noreply.github.com> | 2020-05-11 11:16:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 11:16:21 +0200 |
commit | 8a3183e50dab38ea79b9557840dce546aa1958ca (patch) | |
tree | 83c137b82c1190cd4113efacd9cb2010193bc649 /client/src/app/+my-account/my-account-videos/my-account-videos.component.html | |
parent | 8544d8f561f6cd630973da041f36e46500fe95b7 (diff) | |
download | PeerTube-8a3183e50dab38ea79b9557840dce546aa1958ca.tar.gz PeerTube-8a3183e50dab38ea79b9557840dce546aa1958ca.tar.zst PeerTube-8a3183e50dab38ea79b9557840dce546aa1958ca.zip |
Fix non-fixed header and menu when overflow-x body on touchscreens (#2711)
* Make my-account-videos responsive on small screens
* Make my-account-channels responsive for small screens
* Make search result responsive on small screen
Co-authored-by: kimsible <kimsible@users.noreply.github.com>
Diffstat (limited to 'client/src/app/+my-account/my-account-videos/my-account-videos.component.html')
-rw-r--r-- | client/src/app/+my-account/my-account-videos/my-account-videos.component.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html index b07b9c1a6..55cbfda95 100644 --- a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html +++ b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html | |||
@@ -23,15 +23,17 @@ | |||
23 | </ng-template> | 23 | </ng-template> |
24 | 24 | ||
25 | <ng-template ptTemplate="rowButtons" let-video> | 25 | <ng-template ptTemplate="rowButtons" let-video> |
26 | <my-delete-button (click)="deleteVideo(video)"></my-delete-button> | 26 | <div class="action-button"> |
27 | <my-delete-button (click)="deleteVideo(video)"></my-delete-button> | ||
27 | 28 | ||
28 | <my-edit-button [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> | 29 | <my-edit-button [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> |
29 | 30 | ||
30 | <my-button i18n-label label="Change ownership" | 31 | <my-button i18n-label label="Change ownership" |
31 | className="action-button-change-ownership grey-button" | 32 | className="action-button-change-ownership grey-button" |
32 | icon="im-with-her" | 33 | icon="im-with-her" |
33 | (click)="changeOwnership($event, video)" | 34 | (click)="changeOwnership($event, video)" |
34 | ></my-button> | 35 | ></my-button> |
36 | </div> | ||
35 | </ng-template> | 37 | </ng-template> |
36 | </my-videos-selection> | 38 | </my-videos-selection> |
37 | 39 | ||