diff options
Diffstat (limited to 'client/src/sass/player/peertube-skin.scss')
-rw-r--r-- | client/src/sass/player/peertube-skin.scss | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/client/src/sass/player/peertube-skin.scss b/client/src/sass/player/peertube-skin.scss index d8ce97c04..a6eccf7a2 100644 --- a/client/src/sass/player/peertube-skin.scss +++ b/client/src/sass/player/peertube-skin.scss | |||
@@ -256,7 +256,7 @@ body { | |||
256 | margin-left: .5em; | 256 | margin-left: .5em; |
257 | 257 | ||
258 | .vjs-current-time-display { | 258 | .vjs-current-time-display { |
259 | line-height: calc(#{$control-bar-height} + 1px); | 259 | line-height: calc(#{$control-bar-height} - 1px); |
260 | 260 | ||
261 | &::after { | 261 | &::after { |
262 | content: "/"; | 262 | content: "/"; |
@@ -269,8 +269,9 @@ body { | |||
269 | font-size: $font-size; | 269 | font-size: $font-size; |
270 | display: inline-block; | 270 | display: inline-block; |
271 | padding: 0; | 271 | padding: 0; |
272 | |||
272 | .vjs-duration-display { | 273 | .vjs-duration-display { |
273 | line-height: calc(#{$control-bar-height} + 1px); | 274 | line-height: calc(#{$control-bar-height} - 1px); |
274 | } | 275 | } |
275 | } | 276 | } |
276 | 277 | ||
@@ -279,6 +280,12 @@ body { | |||
279 | } | 280 | } |
280 | } | 281 | } |
281 | 282 | ||
283 | .vjs-live-control { | ||
284 | line-height: $control-bar-height; | ||
285 | min-width: 4em; | ||
286 | width: inherit; | ||
287 | } | ||
288 | |||
282 | .vjs-peertube { | 289 | .vjs-peertube { |
283 | width: 100%; | 290 | width: 100%; |
284 | line-height: $control-bar-height; | 291 | line-height: $control-bar-height; |
@@ -491,7 +498,7 @@ body { | |||
491 | @include disable-outline; | 498 | @include disable-outline; |
492 | 499 | ||
493 | width: 37px; | 500 | width: 37px; |
494 | margin-right: 11px; | 501 | margin-right: $first-control-bar-element-margin-left; |
495 | 502 | ||
496 | .vjs-icon-placeholder { | 503 | .vjs-icon-placeholder { |
497 | display: inline-block; | 504 | display: inline-block; |
@@ -576,9 +583,19 @@ body { | |||
576 | display: none !important; | 583 | display: none !important; |
577 | } | 584 | } |
578 | } | 585 | } |
586 | |||
587 | &.vjs-live { | ||
588 | .vjs-duration { | ||
589 | display: none !important; | ||
590 | } | ||
591 | |||
592 | .vjs-peertube { | ||
593 | display: none !important; | ||
594 | } | ||
595 | } | ||
579 | } | 596 | } |
580 | 597 | ||
581 | @media screen and (max-width: 300px) { | 598 | @media screen and (max-width: 350px) { |
582 | .vjs-dock-text { | 599 | .vjs-dock-text { |
583 | font-size: 13px; | 600 | font-size: 13px; |
584 | } | 601 | } |
@@ -606,8 +623,20 @@ body { | |||
606 | width: 33px; | 623 | width: 33px; |
607 | } | 624 | } |
608 | 625 | ||
609 | .vjs-play-control { | 626 | .vjs-control-bar { |
610 | margin-left: $first-control-bar-element-margin-left; | 627 | > button:first-child { |
628 | margin-left: $first-control-bar-element-margin-left-small-width; | ||
629 | } | ||
630 | } | ||
631 | |||
632 | .vjs-fullscreen-control { | ||
633 | margin-right: $first-control-bar-element-margin-left-small-width; | ||
634 | } | ||
635 | |||
636 | &.vjs-live { | ||
637 | .vjs-current-time { | ||
638 | display: none !important; | ||
639 | } | ||
611 | } | 640 | } |
612 | } | 641 | } |
613 | 642 | ||