From 10474c549ee4905c6cace8c4d93e2e15c79b3a86 Mon Sep 17 00:00:00 2001 From: ZDDC Date: Tue, 16 Jun 2026 07:19:49 -0500 Subject: [PATCH] ux(classifier): tighten Folder Tree row spacing Folder rows kept 0.5rem padding from before the name+count were stacked, leaving a lot of blank vertical space between items. Drop to 0.1rem vertical (file rows are already this tight) and set a compact line-height. Co-Authored-By: Claude Opus 4.8 (1M context) --- classifier/css/layout.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classifier/css/layout.css b/classifier/css/layout.css index 98b6dcf..18ac28d 100644 --- a/classifier/css/layout.css +++ b/classifier/css/layout.css @@ -185,11 +185,12 @@ .folder-item { display: flex; align-items: flex-start; /* toggle/icon sit on the name line; count drops below */ - padding: 0.5rem; + padding: 0.1rem 0.5rem; /* tight: the name + count are already stacked */ cursor: pointer; border-radius: var(--radius); user-select: none; transition: background-color 0.15s; + line-height: 1.25; } .folder-item:hover {