]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.component.scss
Video-watch hooks modifications for videojs
[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
1f788f20 242 &.action-button-like.activated {
41a676db 243 background-color: $green;
4e1b0973 244
457bb213
C
245 my-global-icon {
246 @include apply-svg-color(#fff);
1f788f20 247 }
7b272fd7 248 }
6e33bf28 249
1f788f20 250 &.action-button-dislike.activated {
41a676db 251 background-color: $red;
d38b8281 252
457bb213
C
253 my-global-icon {
254 @include apply-svg-color(#fff);
1f788f20 255 }
7b272fd7 256 }
457bb213 257
f0a39880
C
258 &.action-button-save {
259 my-global-icon {
260 top: 0 !important;
261 right: -1px;
262 }
263 }
264
457bb213
C
265 .icon-text {
266 margin-left: 3px;
267 }
b1fa3eba 268 }
4e1b0973 269 }
6a9e1d42 270
1f788f20 271 .video-info-likes-dislikes-bar {
2d9fea16
RK
272 $likes-bar-height: 2px;
273 height: $likes-bar-height;
274 margin-top: -$likes-bar-height;
1f788f20 275 width: 186px;
1d6587aa 276 background-color: $red;
2d9fea16
RK
277 position: relative;
278 top: 10px;
6a9e1d42 279
1f788f20
C
280 .likes-bar {
281 height: 100%;
1d6587aa 282 background-color: $green;
1f788f20 283 }
6a9e1d42
C
284 }
285 }
d1992b93
C
286 }
287
b1fa3eba
C
288 .video-info-description {
289 margin: 20px 0;
290 font-size: 15px;
d1992b93 291
54a932e8 292 .video-info-description-html {
7a14004b 293 @include peertube-word-wrap;
54a932e8
C
294 }
295
9e9afa45
C
296 .glyphicon, .description-loading {
297 margin-left: 3px;
298 }
299
80958c78
C
300 .description-loading {
301 display: inline-block;
302 }
303
b1fa3eba 304 .video-info-description-more {
2de96f4d 305 cursor: pointer;
b1fa3eba 306 font-weight: $font-semibold;
457bb213 307 color: $grey-foreground-color;
b1fa3eba 308 font-size: 14px;
2de96f4d
C
309
310 .glyphicon {
311 position: relative;
312 top: 2px;
313 }
314 }
09223546
C
315 }
316
1f788f20
C
317 .video-attributes .video-attribute {
318 font-size: 13px;
319 display: block;
320 margin-bottom: 12px;
321
322 .video-attribute-label {
adb115f5 323 min-width: 142px;
c6c357ac 324 padding-right: 5px;
1f788f20 325 display: inline-block;
457bb213 326 color: $grey-foreground-color;
1f788f20 327 font-weight: $font-bold;
3eeeb87f 328 }
4278710d
C
329
330 a.video-attribute-value {
331 @include disable-default-a-behaviour;
9a0fc840 332 color: var(--mainForegroundColor);
4278710d
C
333
334 &:hover {
335 opacity: 0.9;
336 }
337 }
338
339 &.video-attribute-tags {
340 .video-attribute-value:not(:nth-child(2)) {
341 &::before {
342 content: ', '
343 }
344 }
345 }
3eeeb87f 346 }
41c3dfac
C
347 }
348
03652b31 349 ::ng-deep .other-videos {
1c66c35c 350 padding-left: 15px;
9a18a625 351 flex-basis: $other-videos-width;
011e1e6b 352 min-width: $other-videos-width;
f7ecffa4 353
41c3dfac 354 .title-page {
9a2f7ea7 355 margin-top: 0 !important;
41c3dfac
C
356 }
357
8ff3f883 358 .video-miniature {
41c3dfac 359 display: flex;
9a18a625 360 width: $other-videos-width;
41c3dfac
C
361 height: 100%;
362 margin-bottom: 20px;
9e01e510 363 flex-wrap: wrap;
a01f107b 364
22a16e36
C
365 .video-thumbnail {
366 margin-right: 10px
41c3dfac
C
367 }
368 }
a01f107b 369 }
d1992b93 370}
41c3dfac 371
1d6587aa
C
372my-video-comments {
373 display: inline-block;
66467298 374 width: 100%;
1d6587aa
C
375 margin-bottom: 20px;
376}
377
2b3b76ab
C
378// If the view is not expanded, take into account the menu
379.privacy-concerns {
380 width: calc(100% - #{$menu-width});
381}
382
8ff3f883
C
383@media screen and (max-width: $small-view) {
384 .privacy-concerns {
28e0e40d 385 margin-left: $menu-width - 15px; // Menu is absolute
8ff3f883
C
386 }
387}
388
2b3b76ab
C
389:host-context(.expanded) {
390 .privacy-concerns {
391 width: 100%;
28e0e40d 392 margin-left: -15px;
2b3b76ab
C
393 }
394}
395
396.privacy-concerns {
397 position: fixed;
398 bottom: 0;
399
400 padding: 5px 15px;
401
402 display: flex;
28e0e40d 403 flex-wrap: nowrap;
2b3b76ab
C
404 align-items: center;
405 justify-content: flex-start;
406 background-color: rgba(0, 0, 0, 0.9);
407 color: #fff;
408
409 .privacy-concerns-text {
410 margin: 0 5px;
411 }
412
413 a {
414 @include disable-default-a-behaviour;
415
9a0fc840 416 color: var(--mainColor);
2b3b76ab
C
417 transition: color 0.3s;
418
419 &:hover {
420 color: #fff;
421 }
422 }
423
424 .privacy-concerns-okay {
9a0fc840 425 background-color: var(--mainColor);
2b3b76ab
C
426 padding: 5px 8px 5px 7px;
427 margin-left: auto;
428 border-radius: 3px;
429 cursor: pointer;
430 transition: background-color 0.3s;
431 font-weight: $font-semibold;
432
433 &:hover {
434 background-color: #000;
435 }
436 }
437}
438
07fa4c97 439@media screen and (max-width: 1600px) {
8ff3f883
C
440 .video-bottom .video-info .video-attributes .video-attribute {
441 margin-bottom: 5px;
b9828abe
C
442 }
443}
b2731bff 444
23f4c3d4 445@media screen and (max-width: 1300px) {
2b3b76ab
C
446 .privacy-concerns {
447 font-size: 12px;
448 padding: 2px 5px;
449
450 .privacy-concerns-text {
451 margin: 0;
452 }
453 }
07fa4c97
C
454}
455
9a18a625 456@media screen and (max-width: 1100px) {
3143ae17
C
457 #video-wrapper {
458 flex-direction: column;
459 justify-content: center;
460
03652b31 461 my-video-watch-playlist ::ng-deep .playlist {
3143ae17
C
462 @include playlist-below-player;
463 }
464 }
465
9a18a625
C
466 .video-bottom {
467 flex-direction: column;
468
03652b31 469 ::ng-deep .other-videos {
9a18a625
C
470 padding-left: 0 !important;
471
03652b31 472 ::ng-deep .video-miniature {
9a18a625
C
473 flex-direction: row;
474 width: auto;
475 }
476 }
477 }
478}
479
1f788f20 480@media screen and (max-width: 600px) {
b2731bff 481 .video-bottom {
11dd0c2e 482 margin: 20px 0 0 0 !important;
1f788f20
C
483
484 .video-info {
93ea9c47 485 padding: 0;
1f788f20
C
486
487 .video-info-first-row {
488
489 .video-info-name {
490 font-size: 20px;
491 height: auto;
492 }
493 }
494 }
b2731bff 495 }
2b3b76ab 496
03652b31 497 ::ng-deep .other-videos .video-miniature {
9a18a625 498 flex-direction: column;
a8981e0b
C
499 }
500
2b3b76ab
C
501 .privacy-concerns {
502 width: 100%;
503
504 strong {
505 display: none;
506 }
507 }
b2731bff 508}
07fa4c97
C
509
510@media screen and (max-width: 450px) {
93ea9c47
C
511 .video-bottom {
512 .action-button .icon-text {
513 display: none !important;
514 }
515
516 .video-info .video-info-first-row {
517 .video-info-name {
518 font-size: 18px;
519 }
520
521 .video-info-date-views {
522 font-size: 14px;
523 }
524
525 .video-actions-rates {
526 margin-top: 10px;
527 }
528 }
529
530 .video-info-description {
531 font-size: 14px !important;
532 }
07fa4c97
C
533 }
534}