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