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;
|
||||
}
|
||||
|
||||
|
|
|
@ -692,7 +692,7 @@ h1 .imageLink {
|
|||
|
||||
.footerNotification {
|
||||
text-shadow: none;
|
||||
padding: .75em 1em;
|
||||
padding: 0 1em .75em;
|
||||
margin: 0;
|
||||
font-weight: normal;
|
||||
border-top: 1px solid #555;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue