mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Video player fixes
Mobile playback fixed - video no longer hidden by default and unhidden on playing Footer notifications fixed
This commit is contained in:
parent
941824a5fb
commit
96e64c4f1f
5 changed files with 79 additions and 39 deletions
|
@ -254,8 +254,20 @@ input[type="range"]::-ms-fill-upper {
|
|||
display: none; /* display and visibility only */
|
||||
}
|
||||
|
||||
@media all and (max-width: 1200px) {
|
||||
.volumeSliderContainer, .sendMediaButton {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 960px) {
|
||||
.volumeSliderContainer, .audioTracksButton, .chaptersButton, .sendMediaButton {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 800px) {
|
||||
.volumeButton, .volumeSliderContainer, .muteButton, .unmuteButton, .nowPlayingMediaInfo {
|
||||
.volumeButton, .volumeSliderContainer, .muteButton, .unmuteButton, .nowPlayingMediaInfo, .sendMediaButton {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
|
@ -264,10 +276,8 @@ input[type="range"]::-ms-fill-upper {
|
|||
.positionSliderContainer {
|
||||
width: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 600px) {
|
||||
.chaptersButton, .audioTracksButton, .sendMediaButton {
|
||||
.chaptersButton, .audioTracksButton, .qualityButton, .subtitleButton {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue