aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/+video-watch')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.html2
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.scss31
2 files changed, 32 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html
index dfed4768c..43b175acc 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.html
+++ b/client/src/app/videos/+video-watch/video-watch.component.html
@@ -1,7 +1,7 @@
1<div class="row"> 1<div class="row">
2 <!-- We need the video container for videojs so we just hide it --> 2 <!-- We need the video container for videojs so we just hide it -->
3 <div [hidden]="videoNotFound" id="video-container"> 3 <div [hidden]="videoNotFound" id="video-container">
4 <video id="video-element" class="video-js vjs-peertube-skin"></video> 4 <video id="video-element" class="video-js vjs-peertube-skin vjs-fluid"></video>
5 </div> 5 </div>
6 6
7 <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div> 7 <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div>
diff --git a/client/src/app/videos/+video-watch/video-watch.component.scss b/client/src/app/videos/+video-watch/video-watch.component.scss
index 2ccfd2749..fcf625d6c 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.scss
+++ b/client/src/app/videos/+video-watch/video-watch.component.scss
@@ -7,9 +7,14 @@
7 width: 888px; 7 width: 888px;
8 height: 500px; 8 height: 500px;
9 9
10 @media screen and (max-width: 800px) {
11 height: auto;
12 }
13
10 // VideoJS create an inner video player 14 // VideoJS create an inner video player
11 video { 15 video {
12 outline: 0; 16 outline: 0;
17 position: relative !important;
13 } 18 }
14 } 19 }
15} 20}
@@ -210,3 +215,29 @@
210 } 215 }
211} 216}
212 217
218
219@media screen and (max-width: 800px) {
220 .other-videos {
221 display: none;
222 }
223
224 .video-bottom {
225 .video-info {
226 .video-info-name-actions {
227 align-items: left;
228 flex-direction: column;
229 margin-bottom: 30px;
230 }
231
232 .video-info-date-views-bar {
233 align-items: left;
234 flex-direction: column;
235 margin-bottom: 30px;
236
237 .video-info-likes-dislikes-bar {
238 margin-top: 0;
239 }
240 }
241 }
242 }
243}