]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.component.scss
improve likes-dislikes bar usability
[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 5
9a18a625 6$player-factor: 1.7; // 16/9
dd4f25ee 7$video-info-margin-left: 44px;
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
7fc441cc
RK
111.flex-direction-column {
112 flex-direction: column;
113}
114
9c89a45c
C
115#video-not-found {
116 height: 300px;
117 line-height: 300px;
118 margin-top: 50px;
119 text-align: center;
fb4fd623
C
120 font-weight: $font-semibold;
121 font-size: 15px;
9c89a45c
C
122}
123
b1fa3eba 124.video-bottom {
9a18a625 125 display: flex;
b1fa3eba 126 margin-top: 40px;
d1992b93 127
b1fa3eba
C
128 .video-info {
129 flex-grow: 1;
20acba1c
C
130 // Set min width for flex item
131 min-width: 1px;
e452d2e2 132 max-width: 100%;
3eeeb87f 133
1f788f20 134 .video-info-first-row {
b1fa3eba 135 display: flex;
1f788f20 136
196b7790 137 & > div:first-child {
1f788f20
C
138 flex-grow: 1;
139 }
d1992b93 140
b1fa3eba 141 .video-info-name {
b2731bff 142 margin-right: 30px;
196b7790 143 min-height: 40px; // Align with the action buttons
b1fa3eba
C
144 font-size: 27px;
145 font-weight: $font-semibold;
146 flex-grow: 1;
147 }
09223546 148
7fc441cc
RK
149 .video-info-first-row-bottom {
150 display: grid;
151 grid-template-columns: 1fr auto;
152 align-items: center;
153 width: 100%;
154 }
155
1f788f20 156 .video-info-date-views {
1f788f20 157 flex-grow: 1;
8ff3f883
C
158 margin-bottom: 10px;
159 margin-right: 10px;
160 font-size: 16px;
1f788f20
C
161 }
162
163 .video-info-channel {
164 font-weight: $font-semibold;
165 font-size: 15px;
95166f9a
C
166
167 a {
168 @include disable-default-a-behaviour;
169
9a0fc840 170 color: var(--mainForegroundColor);
95166f9a
C
171
172 &:hover {
173 opacity: 0.8;
174 }
52d9f792
C
175
176 img {
177 @include avatar(18px);
178
94dfca3e 179 margin: -2px 5px 0 0;
52d9f792 180 }
95166f9a 181 }
22a16e36 182
dd4f25ee
RK
183 .video-info-channel-left {
184 flex-grow: 1;
1f788f20 185
dd4f25ee
RK
186 .video-info-channel-left-links {
187 display: flex;
188 flex-direction: column;
189 position: relative;
190 line-height: 1.3;
b7f5b524 191
dd4f25ee
RK
192 a:nth-of-type(2) {
193 font-weight: 500;
194 font-size: 90%;
195 }
b7f5b524
C
196 }
197 }
6e33bf28 198
dd4f25ee
RK
199 my-subscribe-button {
200 margin-left: 5px;
6e33bf28 201 }
1f788f20 202 }
b2731bff 203
c199c427 204 my-feed {
244e76a5
RK
205 margin-left: 5px;
206 margin-top: 1px;
207 }
208
1f788f20 209 .video-actions-rates {
7fc441cc 210 margin: 0 0 10px 0;
2303a803 211 align-items: start;
2de7f588 212 align-self: end;
7fc441cc 213 width: max-content;
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
2de7f588
RK
299 .video-info-likes-dislikes-bar-outerContainer {
300 position: relative;
301 }
302
303 .video-info-likes-dislikes-bar-innerContainer {
304 position: absolute;
305 height: 30px;
306 }
307
1f788f20 308 .video-info-likes-dislikes-bar {
2d9fea16
RK
309 $likes-bar-height: 2px;
310 height: $likes-bar-height;
311 margin-top: -$likes-bar-height;
1f788f20 312 width: 186px;
1d6587aa 313 background-color: $red;
2d9fea16
RK
314 position: relative;
315 top: 10px;
6a9e1d42 316
1f788f20
C
317 .likes-bar {
318 height: 100%;
1d6587aa 319 background-color: $green;
1f788f20 320 }
6a9e1d42
C
321 }
322 }
d1992b93
C
323 }
324
b1fa3eba
C
325 .video-info-description {
326 margin: 20px 0;
dd4f25ee 327 margin-left: $video-info-margin-left;
b1fa3eba 328 font-size: 15px;
d1992b93 329
54a932e8 330 .video-info-description-html {
7a14004b 331 @include peertube-word-wrap;
54a932e8
C
332 }
333
9e9afa45
C
334 .glyphicon, .description-loading {
335 margin-left: 3px;
336 }
337
80958c78
C
338 .description-loading {
339 display: inline-block;
340 }
341
b1fa3eba 342 .video-info-description-more {
2de96f4d 343 cursor: pointer;
b1fa3eba 344 font-weight: $font-semibold;
457bb213 345 color: $grey-foreground-color;
b1fa3eba 346 font-size: 14px;
2de96f4d
C
347
348 .glyphicon {
349 position: relative;
350 top: 2px;
351 }
352 }
09223546
C
353 }
354
dd4f25ee
RK
355 .video-attributes {
356 margin-left: $video-info-margin-left;
357 }
358
1f788f20
C
359 .video-attributes .video-attribute {
360 font-size: 13px;
361 display: block;
362 margin-bottom: 12px;
363
364 .video-attribute-label {
adb115f5 365 min-width: 142px;
c6c357ac 366 padding-right: 5px;
1f788f20 367 display: inline-block;
457bb213 368 color: $grey-foreground-color;
1f788f20 369 font-weight: $font-bold;
3eeeb87f 370 }
4278710d
C
371
372 a.video-attribute-value {
373 @include disable-default-a-behaviour;
9a0fc840 374 color: var(--mainForegroundColor);
4278710d
C
375
376 &:hover {
377 opacity: 0.9;
378 }
379 }
380
381 &.video-attribute-tags {
382 .video-attribute-value:not(:nth-child(2)) {
383 &::before {
384 content: ', '
385 }
386 }
387 }
3eeeb87f 388 }
41c3dfac
C
389 }
390
03652b31 391 ::ng-deep .other-videos {
1c66c35c 392 padding-left: 15px;
f7ecffa4 393
41c3dfac 394 .title-page {
dd4f25ee 395 margin: 0 !important;
41c3dfac
C
396 }
397
8ff3f883 398 .video-miniature {
41c3dfac 399 display: flex;
94dfca3e 400 width: max-content;
41c3dfac
C
401 height: 100%;
402 margin-bottom: 20px;
9e01e510 403 flex-wrap: wrap;
a01f107b 404
22a16e36
C
405 .video-thumbnail {
406 margin-right: 10px
41c3dfac
C
407 }
408 }
a01f107b 409 }
d1992b93 410}
41c3dfac 411
1d6587aa
C
412my-video-comments {
413 display: inline-block;
66467298 414 width: 100%;
1d6587aa
C
415 margin-bottom: 20px;
416}
417
2b3b76ab
C
418// If the view is not expanded, take into account the menu
419.privacy-concerns {
420 width: calc(100% - #{$menu-width});
421}
422
8ff3f883
C
423@media screen and (max-width: $small-view) {
424 .privacy-concerns {
28e0e40d 425 margin-left: $menu-width - 15px; // Menu is absolute
8ff3f883
C
426 }
427}
428
2b3b76ab
C
429:host-context(.expanded) {
430 .privacy-concerns {
431 width: 100%;
28e0e40d 432 margin-left: -15px;
2b3b76ab
C
433 }
434}
435
436.privacy-concerns {
437 position: fixed;
438 bottom: 0;
439
440 padding: 5px 15px;
441
442 display: flex;
28e0e40d 443 flex-wrap: nowrap;
2b3b76ab
C
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
9a0fc840 456 color: var(--mainColor);
2b3b76ab
C
457 transition: color 0.3s;
458
459 &:hover {
460 color: #fff;
461 }
462 }
463
464 .privacy-concerns-okay {
9a0fc840 465 background-color: var(--mainColor);
2b3b76ab
C
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
07fa4c97 479@media screen and (max-width: 1600px) {
8ff3f883
C
480 .video-bottom .video-info .video-attributes .video-attribute {
481 margin-bottom: 5px;
b9828abe
C
482 }
483}
b2731bff 484
23f4c3d4 485@media screen and (max-width: 1300px) {
2b3b76ab
C
486 .privacy-concerns {
487 font-size: 12px;
488 padding: 2px 5px;
489
490 .privacy-concerns-text {
491 margin: 0;
492 }
493 }
07fa4c97
C
494}
495
9a18a625 496@media screen and (max-width: 1100px) {
3143ae17
C
497 #video-wrapper {
498 flex-direction: column;
499 justify-content: center;
500
03652b31 501 my-video-watch-playlist ::ng-deep .playlist {
3143ae17
C
502 @include playlist-below-player;
503 }
504 }
505
9a18a625
C
506 .video-bottom {
507 flex-direction: column;
508
03652b31 509 ::ng-deep .other-videos {
9a18a625
C
510 padding-left: 0 !important;
511
03652b31 512 ::ng-deep .video-miniature {
9a18a625
C
513 flex-direction: row;
514 width: auto;
515 }
516 }
517 }
518}
519
1f788f20 520@media screen and (max-width: 600px) {
b2731bff 521 .video-bottom {
11dd0c2e 522 margin: 20px 0 0 0 !important;
1f788f20
C
523
524 .video-info {
93ea9c47 525 padding: 0;
1f788f20
C
526
527 .video-info-first-row {
528
529 .video-info-name {
530 font-size: 20px;
531 height: auto;
532 }
533 }
534 }
b2731bff 535 }
2b3b76ab 536
03652b31 537 ::ng-deep .other-videos .video-miniature {
9a18a625 538 flex-direction: column;
a8981e0b
C
539 }
540
2b3b76ab
C
541 .privacy-concerns {
542 width: 100%;
543
544 strong {
545 display: none;
546 }
547 }
b2731bff 548}
07fa4c97
C
549
550@media screen and (max-width: 450px) {
93ea9c47
C
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 }
07fa4c97
C
573 }
574}