Feat v0.6.14 visual polish (#49)
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m42s
CI/CD / test-sqlite (push) Successful in 3m1s
CI/CD / build-and-deploy (push) Successful in 1m8s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #49.
This commit is contained in:
2026-04-01 13:25:04 +00:00
committed by xcaliber
parent 3af62a9cc5
commit c9b9e68c18
35 changed files with 436 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;
}