From 48eff57ed09329a702cb1ef228b02137c194fba7 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:06:29 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20sync=20tab=20content=20clipping=20?= =?UTF-8?q?=E2=80=94=20enable=20vertical=20scrolling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sync-tab-content had overflow:hidden which clipped long content like the file import preview table and server playlist editor. Changed to overflow-y:auto so all sync tabs scroll when content exceeds the container height. --- webui/static/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webui/static/style.css b/webui/static/style.css index c5e0d300..9a507f0b 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -11894,7 +11894,8 @@ body.helper-mode-active #dashboard-activity-feed:hover { flex-direction: column; gap: 15px; flex-grow: 1; - overflow: hidden; + overflow-y: auto; + overflow-x: hidden; } .sync-tab-content.active {