UI enhancemnts

This commit is contained in:
Kazuma
2026-06-09 19:34:31 -04:00
parent fbadd7fb6e
commit 5655cde6bf
55 changed files with 6226 additions and 465 deletions
+28
View File
@@ -75,6 +75,34 @@ button {
&:hover:not(:disabled) { background: #163356; }
}
// ── btn-glossary (ghost — "? Glossary" in section header) ──────────────
.btn-glossary {
@extend %btn-inline-flex;
background: transparent;
color: var(--text-faint);
border: 1px solid var(--border);
font-size: var(--fs-sm);
font-weight: 500;
letter-spacing: 0.03em;
padding: 4px 11px;
border-radius: var(--radius-sm);
white-space: nowrap;
transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
&:hover {
color: var(--text-muted);
background: var(--bg-card);
border-color: var(--border-input);
}
&.btn-glossary-active {
color: #60a5fa;
background: #1e3a5f22;
border-color: #1e3a5f88;
}
}
// ── btn-analyze (ghost blue — "✦ Analyze" in section header) ────────────
.btn-analyze {