Fix: Prevented the main media buttons from varying in margin and size due to a media query

dev: fixed formatting
This commit is contained in:
lscambo13
2025-06-07 12:37:00 -07:00
parent 1b79ce7f0e
commit b9731e8b69

View File

@@ -365,7 +365,7 @@ html {
} }
.layout-desktop .cardOverlayButton-br button[data-action="menu"], .layout-desktop .cardOverlayButton-br button[data-action="menu"],
.layout-desktop .listItemButton[data-action="menu"]{ .layout-desktop .listItemButton[data-action="menu"] {
display: none; display: none;
} }
@@ -1845,6 +1845,13 @@ div[data-type="PhotoAlbum"] .play_arrow:before {
/* justify-content: center; */ /* justify-content: center; */
} }
@media (min-width: 100em) {
.mainDetailButtons {
font-size: unset;
margin: 1em 0;
}
}
.localnav>.emby-button { .localnav>.emby-button {
background: var(--lighterGradientPoint) !important; background: var(--lighterGradientPoint) !important;
color: #fff; color: #fff;
@@ -2484,24 +2491,27 @@ div[data-role=controlgroup] a.ui-btn-active {
color: var(--dimTextColor); color: var(--dimTextColor);
} }
.channelPrograms+.channelPrograms, .guide-channelHeaderCell+.guide-channelHeaderCell { .channelPrograms+.channelPrograms,
.guide-channelHeaderCell+.guide-channelHeaderCell {
margin-top: 0; margin-top: 0;
} }
.channelPrograms, .guide-channelHeaderCell, .programCell{ .channelPrograms,
.guide-channelHeaderCell,
.programCell {
border-color: transparent; border-color: transparent;
/* this disables 'color coded backgrounds' */ /* this disables 'color coded backgrounds' */
background-color: transparent !important; background-color: transparent !important;
} }
.guideProgramName{ .guideProgramName {
background-color: rgba(255, 255, 255, .05); background-color: rgba(255, 255, 255, .05);
height: -webkit-fill-available; height: -webkit-fill-available;
margin: .35em 0 .35em .7em; margin: .35em 0 .35em .7em;
border-radius: var(--smallerRadius); border-radius: var(--smallerRadius);
} }
.guide-programNameCaret{ .guide-programNameCaret {
display: none; display: none;
} }