diff options
author | Chocobozzz <me@florianbigard.com> | 2023-07-13 13:37:10 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-07-17 11:31:46 +0200 |
commit | 28dd2f14f5bdfd4781e489c42db6eaa7d40d560b (patch) | |
tree | c46a1b3f1df55e1ab80eab9e651784ddb91bde9c /client/src/sass | |
parent | 930e1b939a8f4bdc6586eb5bc1fc531e6c13bfcd (diff) | |
download | PeerTube-28dd2f14f5bdfd4781e489c42db6eaa7d40d560b.tar.gz PeerTube-28dd2f14f5bdfd4781e489c42db6eaa7d40d560b.tar.zst PeerTube-28dd2f14f5bdfd4781e489c42db6eaa7d40d560b.zip |
Some player fixes on Android, Safari and iOS
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/player/peertube-skin.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/sass/player/peertube-skin.scss b/client/src/sass/player/peertube-skin.scss index 572ae7050..6610512e2 100644 --- a/client/src/sass/player/peertube-skin.scss +++ b/client/src/sass/player/peertube-skin.scss | |||
@@ -88,13 +88,13 @@ body { | |||
88 | &.vjs-has-autoplay:not(.vjs-has-started), | 88 | &.vjs-has-autoplay:not(.vjs-has-started), |
89 | &.vjs-updating-resolution { | 89 | &.vjs-updating-resolution { |
90 | .vjs-poster { | 90 | .vjs-poster { |
91 | opacity: 0; | 91 | display: none !important; |
92 | visibility: hidden; | ||
93 | } | 92 | } |
94 | } | 93 | } |
95 | 94 | ||
96 | // Hide the big play button on autoplay | 95 | // Hide the big play button on autoplay or resolution change |
97 | &.vjs-has-autoplay { | 96 | &.vjs-has-autoplay, |
97 | &.vjs-updating-resolution { | ||
98 | .vjs-big-play-button { | 98 | .vjs-big-play-button { |
99 | display: none !important; | 99 | display: none !important; |
100 | } | 100 | } |