From a0e467200eeaf6f0740489a28a516fee459b106f Mon Sep 17 00:00:00 2001 From: ZDDC Date: Sun, 7 Jun 2026 09:11:28 -0500 Subject: [PATCH] fix(browse): shorten the .zddc form intro so it doesn't dominate the space above Title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The intro

was a 2–3 sentence paragraph; in a narrower preview pane it wrapped to ~9 lines (~170px tall), pushing the Title field far down. It was also redundant with the read-only "Structure & advanced" section + the "Edit raw YAML" button. Tighten it to one concise line ("Project options. Structural keys are read-only — use Edit raw YAML."): now 20px wide / 41px on a narrow pane (was up to ~170px). Co-Authored-By: Claude Opus 4.8 (1M context) --- browse/js/preview-zddc-form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browse/js/preview-zddc-form.js b/browse/js/preview-zddc-form.js index 000898a..3fb6104 100644 --- a/browse/js/preview-zddc-form.js +++ b/browse/js/preview-zddc-form.js @@ -165,7 +165,7 @@ var help = el('p', 'help'); help.style.cssText = 'color:var(--color-text-muted,#666);font-size:.85rem;margin:.3rem 0 .5rem;'; help.textContent = editable - ? 'Fill in the project options below. Structure (the folder shape, WORM, tools) is managed by the baseline and shown read-only — edit it via raw YAML if you must.' + ? 'Project options. Structural keys are read-only — use Edit raw YAML.' : 'Read-only — you need admin authority over this path to edit it.'; shell.appendChild(help);