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

@@ -91,7 +91,7 @@
font-size: 13px;
padding: 1px var(--sp-1);
border: 1px solid var(--accent);
border-radius: 3px;
border-radius: var(--radius-sm);
background: var(--bg-surface);
color: var(--text);
font-family: var(--font);
@@ -329,7 +329,7 @@
font-size: 13px;
background: var(--bg-raised);
padding: 2px var(--sp-2);
border-radius: 3px;
border-radius: var(--radius-sm);
color: var(--accent);
}
.ext-notes-preview pre {
@@ -409,7 +409,7 @@
font-size: 11px;
background: var(--bg-raised);
border: 1px solid var(--border);
border-radius: 10px;
border-radius: var(--radius-lg);
color: var(--text-2);
margin: 2px 2px;
white-space: nowrap;
@@ -569,8 +569,8 @@
border-bottom-style: solid;
}
.ext-notes-wikilink.ext-notes-wikilink--unresolved {
color: var(--danger, #e53e3e);
border-bottom-color: var(--danger, #e53e3e);
color: var(--danger);
border-bottom-color: var(--danger);
opacity: 0.7;
}
.ext-notes-wikilink.ext-notes-wikilink--unresolved:hover {
@@ -608,7 +608,7 @@
color: var(--text-2);
font-size: 10px;
padding: 0 var(--sp-2);
border-radius: 8px;
border-radius: var(--radius);
line-height: 16px;
}
.ext-notes-backlinks-panel__item {
@@ -616,7 +616,7 @@
align-items: center;
gap: var(--sp-2);
padding: var(--sp-1) var(--sp-2);
border-radius: 4px;
border-radius: var(--radius-sm);
cursor: pointer;
font-size: 13px;
}
@@ -711,7 +711,7 @@
flex: 1;
position: relative;
overflow: hidden;
background: var(--bg-surface, #fff);
background: var(--bg-surface);
min-height: 0;
}
.ext-notes-graph-pane canvas {
@@ -730,7 +730,7 @@
align-items: center;
z-index: 5;
font-size: 12px;
color: var(--text-2, #666);
color: var(--text-2);
}
.ext-notes-graph-toolbar label {
display: flex;
@@ -743,8 +743,8 @@
.ext-notes-graph-tooltip {
position: absolute;
pointer-events: none;
background: var(--bg-raised, #fff);
border: 1px solid var(--border, #ddd);
background: var(--bg-raised);
border: 1px solid var(--border);
border-radius: var(--radius, 6px);
padding: var(--sp-2) var(--sp-3);
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
@@ -766,13 +766,13 @@
.ext-notes-graph-tooltip__tags .ext-notes-tag-pill {
font-size: 10px;
padding: 1px var(--sp-2);
border-radius: 8px;
background: var(--bg-hover, #eee);
color: var(--text-2, #666);
border-radius: var(--radius);
background: var(--bg-hover);
color: var(--text-2);
}
.ext-notes-graph-tooltip__edges {
font-size: 11px;
color: var(--text-3, #999);
color: var(--text-3);
margin-top: var(--sp-1);
}
.ext-notes-graph-empty {
@@ -780,7 +780,7 @@
align-items: center;
justify-content: center;
height: 100%;
color: var(--text-3, #999);
color: var(--text-3);
font-size: 14px;
}