diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 17:55:03 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 17:55:03 +0200 |
commit | 6f02515e2aff2a8750ad3515b23b345f01c64ab2 (patch) | |
tree | 829f556ea78c5f981fabfdc4819c716bb0ead773 /client/src/app/videos/+video-edit/video-add-components | |
parent | 9f77adb8fe9be0064599c183bb8f221ebbc5ede5 (diff) | |
download | PeerTube-6f02515e2aff2a8750ad3515b23b345f01c64ab2.tar.gz PeerTube-6f02515e2aff2a8750ad3515b23b345f01c64ab2.tar.zst PeerTube-6f02515e2aff2a8750ad3515b23b345f01c64ab2.zip |
Enlarge right column in video-edit on small screens
Diffstat (limited to 'client/src/app/videos/+video-edit/video-add-components')
-rw-r--r-- | client/src/app/videos/+video-edit/video-add-components/video-send.scss | 6 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-add-components/video-upload.component.html | 3 |
2 files changed, 1 insertions, 8 deletions
diff --git a/client/src/app/videos/+video-edit/video-add-components/video-send.scss b/client/src/app/videos/+video-edit/video-add-components/video-send.scss index 1979d0061..ebe14c59e 100644 --- a/client/src/app/videos/+video-edit/video-add-components/video-send.scss +++ b/client/src/app/videos/+video-edit/video-add-components/video-send.scss | |||
@@ -43,10 +43,4 @@ $width-size: 190px; | |||
43 | .button-file { | 43 | .button-file { |
44 | @include peertube-button-file(max-content); | 44 | @include peertube-button-file(max-content); |
45 | } | 45 | } |
46 | |||
47 | .button-file-extension { | ||
48 | display: block; | ||
49 | font-size: 12px; | ||
50 | margin-top: 5px; | ||
51 | } | ||
52 | } | 46 | } |
diff --git a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.html b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.html index be3a9662b..b4e1ceeca 100644 --- a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.html +++ b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.html | |||
@@ -2,11 +2,10 @@ | |||
2 | <div class="first-step-block"> | 2 | <div class="first-step-block"> |
3 | <my-global-icon class="upload-icon" iconName="upload"></my-global-icon> | 3 | <my-global-icon class="upload-icon" iconName="upload"></my-global-icon> |
4 | 4 | ||
5 | <div class="button-file form-control"> | 5 | <div class="button-file form-control" [ngbTooltip]="'(extensions: ' + videoExtensions + ')'" container="body"> |
6 | <span i18n>Select the file to upload</span> | 6 | <span i18n>Select the file to upload</span> |
7 | <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" autofocus /> | 7 | <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" autofocus /> |
8 | </div> | 8 | </div> |
9 | <span class="button-file-extension">({{ videoExtensions }})</span> | ||
10 | 9 | ||
11 | <div class="form-group form-group-channel"> | 10 | <div class="form-group form-group-channel"> |
12 | <label i18n for="first-step-channel">Channel</label> | 11 | <label i18n for="first-step-channel">Channel</label> |