From c9900d91b0c49ec4ed47c52dc424057ae6b4ac0e Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Mon, 15 Jun 2026 14:12:04 -0700 Subject: [PATCH] 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. --- webui/static/video/video-side.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webui/static/video/video-side.css b/webui/static/video/video-side.css index 55e4aedc..48163c35 100644 --- a/webui/static/video/video-side.css +++ b/webui/static/video/video-side.css @@ -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; }