video: hide Navidrome + Standalone server toggles on the video side

They're music-only, so a CSS rule scoped to body[data-side=video] hides those two
toggle buttons in the shared Server Connections section. Plex/Jellyfin stay
(for connecting a video server). Music side untouched.
This commit is contained in:
BoulderBadgeDad 2026-06-15 14:12:04 -07:00
parent b2dbd6dec5
commit c9900d91b0

View file

@ -1487,3 +1487,9 @@ a.vd-guest:hover .vd-guest-name { color: rgb(var(--vd-accent-rgb)); }
background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.32);
}
.video-noserver.hidden { display: none; }
/* Navidrome + SoulSync Standalone are music-only don't offer them as server
options on the VIDEO side (scoped to body[data-side="video"], so the music side
is untouched). The "Video Source" panel governs which video server is used. */
body[data-side="video"] #navidrome-toggle,
body[data-side="video"] #soulsync-toggle { display: none; }