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:
parent
eeafc46d94
commit
46f9a6a331
28 changed files with 382 additions and 144 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue