Feat v0.6.14 visual polish

Fix v0.6.13 spacing regressions with half-step tokens (--sp-1h 6px,
--sp-2h 10px). Purge ~65 stale hex/rgba fallback values from var() calls
including all old gold #b38a4e references. Self-host DM Sans and JetBrains
Mono woff2 fonts, eliminating Google Fonts CDN dependency. Standardize
border-radius to three tokens (--radius-sm 4px, --radius 8px, --radius-lg
12px) across all kernel CSS and 12 extension packages.

Also fixes: theme settings showing resolved mode instead of stored preference,
surface-inner overflow causing notes scrollbar and chat input clipping at
high zoom, user menu drift at scale >100% from zoom-unaware fixed positioning,
and three undefined CSS variable references.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-01 12:59:06 +00:00
parent 3af62a9cc5
commit 6fff84f40a
35 changed files with 422 additions and 334 deletions

View File

@@ -78,7 +78,7 @@
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 2px 6px;
border-radius: 4px;
border-radius: var(--radius-sm);
font-weight: 600;
}
.ext-workflow-demo-badge-browser { background: var(--success-dim); color: var(--success-light); }
@@ -101,7 +101,7 @@
.ext-workflow-demo-card .ext-workflow-demo-badge {
font-size: 0.7rem;
padding: 2px 8px;
border-radius: 10px;
border-radius: var(--radius-lg);
background: var(--bg-raised);
color: var(--text-2);
white-space: nowrap;
@@ -118,13 +118,13 @@
flex-wrap: wrap;
padding: var(--sp-3);
background: var(--bg-raised);
border-radius: 6px;
border-radius: var(--radius);
overflow-x: auto;
}
.ext-workflow-demo-stage-node {
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
padding: 0.4rem 0.6rem;
min-width: 80px;
text-align: center;
@@ -168,7 +168,7 @@
/* Collapsible sections */
.ext-workflow-demo-card-collapsible {
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
font-size: 0.8rem;
}
.ext-workflow-demo-card-collapsible summary {
@@ -188,7 +188,7 @@
background: var(--bg-raised);
color: var(--text);
padding: var(--sp-2);
border-radius: 4px;
border-radius: var(--radius-sm);
overflow-x: auto;
font-size: 0.72rem;
line-height: 1.4;
@@ -208,7 +208,7 @@
.ext-workflow-demo-card .ext-workflow-demo-btn {
padding: 0.4rem 1rem;
border: none;
border-radius: 6px;
border-radius: var(--radius);
font-size: 0.8rem;
cursor: pointer;
font-weight: 500;
@@ -228,7 +228,7 @@
padding: var(--sp-1) var(--sp-2);
background: var(--input-bg);
border: 1px solid var(--border);
border-radius: 4px;
border-radius: var(--radius-sm);
color: var(--text);
font-family: var(--mono);
}
@@ -237,7 +237,7 @@
font-size: 0.7rem;
background: var(--bg-raised);
border: 1px solid var(--border);
border-radius: 4px;
border-radius: var(--radius-sm);
color: var(--text-2);
cursor: pointer;
}