Fix: Prevent overflow in Server Info, Episodes, Nav Bar and TV Network sections

This commit is contained in:
lscambo13
2024-12-05 11:58:10 -08:00
parent 58a4dc261b
commit f267a2283b

View File

@@ -584,6 +584,7 @@ html {
.localnav>.emby-button {
background: var(--lighterGradientPoint) !important;
color: #fff;
padding: .8em .8em;
}
div[data-role=controlgroup] a.ui-btn-active {
@@ -626,6 +627,11 @@ div[data-role=controlgroup] a.ui-btn-active {
padding: 1em;
}
.serverInfo>:nth-child(2n) {
-webkit-flex: 1 0 60%;
flex: 1 0 60%;
}
.listItemIcon:not(.listItemIcon-transparent) {
background-color: var(--lighterGradientPoint) !important;
}
@@ -803,5 +809,5 @@ div[data-role=controlgroup] a.ui-btn-active {
.backdropCard,
.bannerCard {
width: 47%;
width: 46%;
}