]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.component.scss
Add a warning when uploading videos using root
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.component.scss
1 @import '_variables';
2 @import '_mixins';
3 @import '_bootstrap-variables';
4 @import '_miniature';
5
6 $other-videos-width: 260px;
7 $player-factor: 1.7; // 16/9
8
9 @function getPlayerHeight($width){
10 @return calc(#{$width} / #{$player-factor})
11 }
12
13 @function getPlayerWidth($height){
14 @return calc(#{$height} * #{$player-factor})
15 }
16
17 @mixin playlist-below-player {
18 width: 100% !important;
19 height: auto !important;
20 max-height: 300px !important;
21 max-width: initial;
22 border-bottom: 1px solid $separator-border-color !important;
23 }
24
25 .root {
26 &.theater-enabled #video-wrapper {
27 flex-direction: column;
28 justify-content: center;
29
30 #videojs-wrapper {
31 width: 100%;
32 }
33
34 ::ng-deep .video-js {
35 $height: calc(100vh - #{$header-height} - #{$theater-bottom-space});
36
37 height: $height;
38 width: 100%;
39 max-width: initial;
40 }
41
42 my-video-watch-playlist ::ng-deep .playlist {
43 @include playlist-below-player;
44 }
45 }
46 }
47
48 .blacklisted-label {
49 font-weight: $font-semibold;
50 }
51
52 #video-wrapper {
53 background-color: #000;
54 display: flex;
55 justify-content: center;
56 margin: 0 -15px;
57
58 #videojs-wrapper {
59 display: flex;
60 justify-content: center;
61 flex-grow: 1;
62 }
63
64 .remote-server-down {
65 color: #fff;
66 display: flex;
67 flex-direction: column;
68 align-items: center;
69 text-align: center;
70 justify-content: center;
71 background-color: #141313;
72 width: 100%;
73 font-size: 24px;
74 height: 500px;
75
76 @media screen and (max-width: 1000px) {
77 font-size: 20px;
78 }
79
80 @media screen and (max-width: 600px) {
81 font-size: 16px;
82 }
83 }
84
85 ::ng-deep .video-js {
86 width: 100%;
87 max-width: getPlayerWidth(66vh);
88 height: 66vh;
89
90 // VideoJS create an inner video player
91 video {
92 outline: 0;
93 position: relative !important;
94 }
95 }
96
97 @media screen and (max-width: 600px) {
98 .remote-server-down,
99 ::ng-deep .video-js {
100 width: 100vw;
101 height: getPlayerHeight(100vw)
102 }
103 }
104 }
105
106 .alert {
107 text-align: center;
108 border-radius: 0;
109 }
110
111 .flex-direction-column {
112 flex-direction: column;
113 }
114
115 #video-not-found {
116 height: 300px;
117 line-height: 300px;
118 margin-top: 50px;
119 text-align: center;
120 font-weight: $font-semibold;
121 font-size: 15px;
122 }
123
124 .video-bottom {
125 display: flex;
126 margin-top: 40px;
127
128 .video-info {
129 flex-grow: 1;
130 // Set min width for flex item
131 min-width: 1px;
132 max-width: 100%;
133
134 .video-info-first-row {
135 display: flex;
136
137 & > div:first-child {
138 flex-grow: 1;
139 }
140
141 .video-info-name {
142 margin-right: 30px;
143 min-height: 40px; // Align with the action buttons
144 font-size: 27px;
145 font-weight: $font-semibold;
146 flex-grow: 1;
147 }
148
149 .video-info-first-row-bottom {
150 display: grid;
151 grid-template-columns: 1fr auto;
152 align-items: center;
153 width: 100%;
154 }
155
156 .video-info-date-views {
157 flex-grow: 1;
158 margin-bottom: 10px;
159 margin-right: 10px;
160 font-size: 16px;
161 }
162
163 .video-info-channel {
164 font-weight: $font-semibold;
165 font-size: 15px;
166
167 a {
168 @include disable-default-a-behaviour;
169
170 color: var(--mainForegroundColor);
171
172 &:hover {
173 opacity: 0.8;
174 }
175
176 img {
177 @include avatar(18px);
178
179 margin: -2px 2px 0 5px;
180 }
181 }
182
183 my-subscribe-button {
184 margin-left: 5px;
185 }
186 }
187
188 .video-info-by {
189
190 a {
191 @include disable-default-a-behaviour;
192
193 display: inline;
194 align-items: center;
195 font-size: 13px;
196 color: var(--mainForegroundColor);
197
198 span:hover {
199 opacity: 0.8;
200 }
201
202 img {
203 @include avatar(18px);
204
205 margin-top: -2px;
206 margin-left: 7px;
207 }
208 }
209
210 my-help {
211 position: relative;
212 top: 1px;
213 margin-left: 2px;
214 }
215 }
216
217 my-feed {
218 margin-left: 5px;
219 margin-top: 1px;
220 }
221
222 .video-actions-rates {
223 margin: 0 0 10px 0;
224 align-items: start;
225 width: max-content;
226
227 .video-actions {
228 height: 40px; // Align with the title
229 display: flex;
230 align-items: center;
231
232 .action-button:not(:first-child),
233 .action-dropdown,
234 my-video-actions-dropdown {
235 margin-left: 10px;
236 }
237
238 .action-button {
239 @include peertube-button;
240 @include grey-button;
241 @include button-with-icon(21px, 0, -1px);
242 @include apply-svg-color($grey-foreground-color);
243
244 font-size: 15px;
245 font-weight: $font-semibold;
246 display: inline-block;
247 padding: 0 10px 0 10px;
248 white-space: nowrap;
249
250 &::after {
251 display: none;
252 }
253
254 .action-button-like,
255 .action-button-dislike {
256 .count {
257 margin-right: 5px;
258 }
259 }
260
261 &.action-button-like.activated {
262 background-color: $green;
263
264 .count {
265 color: #fff;
266 }
267
268 my-global-icon {
269 @include apply-svg-color(#fff);
270 }
271 }
272
273 &.action-button-dislike.activated {
274 background-color: $red;
275
276 .count {
277 color: #fff;
278 }
279
280 my-global-icon {
281 @include apply-svg-color(#fff);
282 }
283 }
284
285 &.action-button-support {
286 color: var(--supportButtonColor);
287 background-color: var(--supportButtonBackgroundColor);
288
289 &:hover {
290 opacity: 0.9;
291 }
292
293 my-global-icon {
294 @include apply-svg-color(var(--supportButtonColor));
295 }
296 }
297
298 &.action-button-save {
299 my-global-icon {
300 top: 0 !important;
301 right: -1px;
302 }
303 }
304
305 .icon-text {
306 margin-left: 3px;
307 }
308 }
309 }
310
311 .video-info-likes-dislikes-bar {
312 $likes-bar-height: 2px;
313 height: $likes-bar-height;
314 margin-top: -$likes-bar-height;
315 width: 186px;
316 background-color: $red;
317 position: relative;
318 top: 10px;
319
320 .likes-bar {
321 height: 100%;
322 background-color: $green;
323 }
324 }
325 }
326 }
327
328 .video-info-description {
329 margin: 20px 0;
330 font-size: 15px;
331
332 .video-info-description-html {
333 @include peertube-word-wrap;
334 }
335
336 .glyphicon, .description-loading {
337 margin-left: 3px;
338 }
339
340 .description-loading {
341 display: inline-block;
342 }
343
344 .video-info-description-more {
345 cursor: pointer;
346 font-weight: $font-semibold;
347 color: $grey-foreground-color;
348 font-size: 14px;
349
350 .glyphicon {
351 position: relative;
352 top: 2px;
353 }
354 }
355 }
356
357 .video-attributes .video-attribute {
358 font-size: 13px;
359 display: block;
360 margin-bottom: 12px;
361
362 .video-attribute-label {
363 min-width: 142px;
364 padding-right: 5px;
365 display: inline-block;
366 color: $grey-foreground-color;
367 font-weight: $font-bold;
368 }
369
370 a.video-attribute-value {
371 @include disable-default-a-behaviour;
372 color: var(--mainForegroundColor);
373
374 &:hover {
375 opacity: 0.9;
376 }
377 }
378
379 &.video-attribute-tags {
380 .video-attribute-value:not(:nth-child(2)) {
381 &::before {
382 content: ', '
383 }
384 }
385 }
386 }
387 }
388
389 ::ng-deep .other-videos {
390 padding-left: 15px;
391 flex-basis: $other-videos-width;
392 min-width: $other-videos-width;
393
394 .title-page {
395 margin-top: 0 !important;
396 }
397
398 .video-miniature {
399 display: flex;
400 width: $other-videos-width;
401 height: 100%;
402 margin-bottom: 20px;
403 flex-wrap: wrap;
404
405 .video-thumbnail {
406 margin-right: 10px
407 }
408 }
409 }
410 }
411
412 my-video-comments {
413 display: inline-block;
414 width: 100%;
415 margin-bottom: 20px;
416 }
417
418 // If the view is not expanded, take into account the menu
419 .privacy-concerns {
420 width: calc(100% - #{$menu-width});
421 }
422
423 @media screen and (max-width: $small-view) {
424 .privacy-concerns {
425 margin-left: $menu-width - 15px; // Menu is absolute
426 }
427 }
428
429 :host-context(.expanded) {
430 .privacy-concerns {
431 width: 100%;
432 margin-left: -15px;
433 }
434 }
435
436 .privacy-concerns {
437 position: fixed;
438 bottom: 0;
439
440 padding: 5px 15px;
441
442 display: flex;
443 flex-wrap: nowrap;
444 align-items: center;
445 justify-content: flex-start;
446 background-color: rgba(0, 0, 0, 0.9);
447 color: #fff;
448
449 .privacy-concerns-text {
450 margin: 0 5px;
451 }
452
453 a {
454 @include disable-default-a-behaviour;
455
456 color: var(--mainColor);
457 transition: color 0.3s;
458
459 &:hover {
460 color: #fff;
461 }
462 }
463
464 .privacy-concerns-okay {
465 background-color: var(--mainColor);
466 padding: 5px 8px 5px 7px;
467 margin-left: auto;
468 border-radius: 3px;
469 cursor: pointer;
470 transition: background-color 0.3s;
471 font-weight: $font-semibold;
472
473 &:hover {
474 background-color: #000;
475 }
476 }
477 }
478
479 @media screen and (max-width: 1600px) {
480 .video-bottom .video-info .video-attributes .video-attribute {
481 margin-bottom: 5px;
482 }
483 }
484
485 @media screen and (max-width: 1300px) {
486 .privacy-concerns {
487 font-size: 12px;
488 padding: 2px 5px;
489
490 .privacy-concerns-text {
491 margin: 0;
492 }
493 }
494 }
495
496 @media screen and (max-width: 1100px) {
497 #video-wrapper {
498 flex-direction: column;
499 justify-content: center;
500
501 my-video-watch-playlist ::ng-deep .playlist {
502 @include playlist-below-player;
503 }
504 }
505
506 .video-bottom {
507 flex-direction: column;
508
509 ::ng-deep .other-videos {
510 padding-left: 0 !important;
511
512 ::ng-deep .video-miniature {
513 flex-direction: row;
514 width: auto;
515 }
516 }
517 }
518 }
519
520 @media screen and (max-width: 600px) {
521 .video-bottom {
522 margin: 20px 0 0 0 !important;
523
524 .video-info {
525 padding: 0;
526
527 .video-info-first-row {
528
529 .video-info-name {
530 font-size: 20px;
531 height: auto;
532 }
533 }
534 }
535 }
536
537 ::ng-deep .other-videos .video-miniature {
538 flex-direction: column;
539 }
540
541 .privacy-concerns {
542 width: 100%;
543
544 strong {
545 display: none;
546 }
547 }
548 }
549
550 @media screen and (max-width: 450px) {
551 .video-bottom {
552 .action-button .icon-text {
553 display: none !important;
554 }
555
556 .video-info .video-info-first-row {
557 .video-info-name {
558 font-size: 18px;
559 }
560
561 .video-info-date-views {
562 font-size: 14px;
563 }
564
565 .video-actions-rates {
566 margin-top: 10px;
567 }
568 }
569
570 .video-info-description {
571 font-size: 14px !important;
572 }
573 }
574 }