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

@@ -162,7 +162,7 @@
.ext-chat-sidebar__search-input {
width: 100%;
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
padding: var(--sp-2) var(--sp-6) var(--sp-2) var(--sp-3);
font-size: 13px;
font-family: inherit;
@@ -263,7 +263,7 @@
align-self: center;
background: none;
border: 1px solid var(--border);
border-radius: 4px;
border-radius: var(--radius-sm);
padding: var(--sp-1) var(--sp-3);
font-size: 12px;
color: var(--text-2);
@@ -320,7 +320,7 @@
.ext-chat-msg__body {
max-width: 65%;
background: var(--bg-raised);
border-radius: 12px;
border-radius: var(--radius-lg);
padding: var(--sp-2) var(--sp-3);
}
@@ -380,7 +380,7 @@
right: 0;
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
padding: 2px;
}
@@ -395,7 +395,7 @@
border: none;
padding: var(--sp-1) var(--sp-2);
cursor: pointer;
border-radius: 4px;
border-radius: var(--radius-sm);
font-size: 14px;
line-height: 1;
color: var(--text-2);
@@ -422,7 +422,7 @@
width: 100%;
min-width: 200px;
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
padding: var(--sp-2) var(--sp-2);
font-size: 14px;
font-family: inherit;
@@ -451,7 +451,7 @@
.ext-chat-compose__input {
flex: 1;
border: 1px solid var(--border);
border-radius: 8px;
border-radius: var(--radius);
padding: var(--sp-2) var(--sp-3);
font-size: 14px;
font-family: inherit;
@@ -567,7 +567,7 @@
.ext-chat-new__title {
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
padding: var(--sp-2) var(--sp-3);
font-size: 14px;
font-family: inherit;
@@ -590,7 +590,7 @@
font-size: 12px;
font-weight: 500;
padding: 3px var(--sp-2);
border-radius: 12px;
border-radius: var(--radius-lg);
}
.ext-chat-new__chip button {