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

fixes #689 - Support grouping latest items

This commit is contained in:
Luke Pulverenti 2014-07-05 01:21:13 -04:00
parent eeafc46d94
commit 46f9a6a331
28 changed files with 382 additions and 144 deletions

View file

@ -1197,3 +1197,53 @@ a.itemTag:hover {
.channelHeader a {
text-decoration: none;
}
.groupingMenuScroller {
max-height: 200px;
min-width: 240px;
overflow-x: hidden;
overflow-y: auto;
padding-right: 8px;
}
@media all and (min-width: 400px) {
.groupingMenuScroller {
min-width: 300px;
}
}
@media all and (min-width: 500px) {
.groupingMenuScroller {
min-width: 400px;
}
}
@media all and (min-width: 600px) {
.groupingMenuScroller {
min-width: 500px;
}
}
@media all and (min-height: 400px) {
.groupingMenuScroller {
max-height: 300px;
}
}
@media all and (min-height: 500px) {
.groupingMenuScroller {
max-height: 400px;
}
}
@media all and (min-height: 600px) {
.groupingMenuScroller {
max-height: 500px;
}
}

View file

@ -77,7 +77,7 @@
width: 130px;
}
#nowPlayingBar .sliderContainer {
.nowPlayingBar .sliderContainer {
margin-top: 14px;
}
@ -126,12 +126,12 @@ input[type="range"]::-ms-fill-upper {
@media all and (max-width: 800px) {
#nowPlayingBar .mediaButton {
.nowPlayingBar .mediaButton {
margin-top: 0;
margin-bottom: 0;
}
#nowPlayingBar .mediaButton:not(#playButton):not(#pauseButton):not(.remoteControlButton) {
.nowPlayingBar .mediaButton:not(#playButton):not(#pauseButton):not(.remoteControlButton) {
display: none;
}
@ -139,11 +139,11 @@ input[type="range"]::-ms-fill-upper {
float: right;
}
#nowPlayingBar #playButton, #nowPlayingBar #pauseButton {
.nowPlayingBar #playButton, .nowPlayingBar #pauseButton {
float: right;
}
#nowPlayingBar .currentTime, #nowPlayingBar .positionSliderContainer, #nowPlayingBar .volumeSliderContainer, #nowPlayingBar .muteButton, #nowPlayingBar .unmuteButton {
.nowPlayingBar .currentTime, .nowPlayingBar .positionSliderContainer, .nowPlayingBar .volumeSliderContainer, #nowPlayingBar .muteButton, #nowPlayingBar .unmuteButton {
display: none !important;
}