2024-12-06, 03:55 AM
(This post was last modified: 2024-12-06, 03:57 AM by Iskelderon. Edited 1 time in total.)
I had to add a snippet in my server custom CSS block, since a recent change cut off the height of the sections on the main page.
You probably just wanted to style the height for detail pages, but the scrollers are also used on the index page.
Probably only happens for people like me who have nuked the scroll behavior there with the traditional snippet:
You probably just wanted to style the height for detail pages, but the scrollers are also used on the index page.
Code:
#indexPage .emby-scroller-container {
max-height: 150em;
}
Probably only happens for people like me who have nuked the scroll behavior there with the traditional snippet:
Code:
/* Disable scrolling of home cards */
@media all and (min-width: 50em) {
.homePage .emby-scroller,
#specialsCollapsible .emby-scroller,
#musicVideosCollapsible.emby-scroller,
#scenesCollapsible.emby-scroller {
margin-right: 0;
}
.homePage .emby-scrollbuttons,
#specialsCollapsible .emby-scrollbuttons,
#musicVideosCollapsible .emby-scrollbuttons,
#scenesCollapsible .emby-scrollbuttons {
display: none;
}
.homePage .itemsContainer,
#specialsCollapsible .itemsContainer,
#musicVideosCollapsible .itemsContainer,
#scenesCollapsible .itemsContainer {
flex-wrap: wrap;
}
#specialsCollapsible .overflowBackdropCard,
#musicVideosCollapsible .overflowBackdropCard,
#scenesCollapsible .overflowBackdropCard {
max-width: 13.4vw !important;
}