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

add tv guide hover menus

This commit is contained in:
Luke Pulverenti 2014-01-15 17:19:45 -05:00
parent 817effb7d8
commit e768e496ed
11 changed files with 267 additions and 58 deletions

View file

@ -49,7 +49,7 @@
.nowPlayingMediaInfo {
display: none;
display: inline-block;
}
.nowPlayingText {
@ -60,9 +60,9 @@
font-weight: normal;
}
@media all and (min-width: 650px) {
@media all and (max-width: 650px) {
.nowPlayingMediaInfo {
display: inline-block;
display: none;
}
}
@ -164,19 +164,36 @@ input[type="range"]::-ms-fill-upper {
display: none; /* display and visibility only */
}
@media all and (max-width: 600px) {
.volumeButton, .volumeSliderContainer, .nowPlayingText, .chaptersButton, .audioTracksButton {
@media all and (max-width: 800px) {
.volumeButton, .volumeSliderContainer, .muteButton, .unmuteButton, .nowPlayingMediaInfo {
display: none!important;
}
.positionSliderContainer {
width: 50px;
}
}
@media all and (max-width: 750px) {
@media all and (max-width: 600px) {
.chaptersButton, .audioTracksButton, .sendMediaButton {
display: none!important;
}
.positionSliderContainer, .currentTime {
top: 0!important;
position: relative!important;
}
}
@media all and (max-width: 500px) {
.positionSliderContainer {
width: 50px;
width: 80px;
}
.previousTrackButton, .nextTrackButton {
display: none!important;
}
}
@media all and (max-width: 400px) {
.playlistButton {
display: none!important;
}
}