1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

hide some media buttons on small screens

This commit is contained in:
Luke Pulverenti 2013-07-17 14:44:32 -04:00
parent 7cdf76fb3a
commit 2ec48f8266

View file

@ -886,16 +886,20 @@ input[type="range"]::-ms-fill-upper {
@media all and (max-width: 600px) { @media all and (max-width: 600px) {
.volumeButton, .volumeSlider, .nowPlayingText { .volumeButton, .volumeSlider, .nowPlayingText, .chaptersButton, .audioTracksButton {
display: none!important; display: none!important;
} }
#nowPlayingBar > *:not(#mediaElement):not(.mediaFlyoutContainer):not(.barBackground ) {
margin: 0 .5em;
}
.positionSlider { .positionSlider {
width: 50px; width: 50px;
} }
.itemVideo:not(.fullscreenVideo) { .itemVideo:not(.fullscreenVideo) {
left: -300px; left: -250px;
} }
} }