From 55edb5522a571e88c3071f5ba990abded27d327c Mon Sep 17 00:00:00 2001 From: Saberlve Date: Wed, 15 Apr 2026 21:01:55 +0800 Subject: [PATCH] fix: restructure .window-body to single column so import-actions spans full width The import-actions div was a sibling of import-split in a 2-column grid, causing it to only occupy the right 60% column. Changed .window-body to a 2-row single-column grid so import-actions sits below import-split spanning the full width. Co-Authored-By: Claude Opus 4.6 --- src/zotero_kb/templates/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/zotero_kb/templates/index.html b/src/zotero_kb/templates/index.html index 140f6f9..cafcfb2 100644 --- a/src/zotero_kb/templates/index.html +++ b/src/zotero_kb/templates/index.html @@ -233,7 +233,8 @@ } .window-body { display: grid; - grid-template-columns: 22rem minmax(0, 1fr); + grid-template-columns: 1fr; + grid-template-rows: 1fr auto; min-height: 0; } .import-split { display: grid; grid-template-columns: 40% 60%; height: 100%; gap: 1px; background: var(--line); }