feat(FN-3086): enhance graph navigation with toolbar and keyboard controls

The merge introduces a new Cursor CLI plugin provider with dashboard authentication (FN-3396), enabling Fusion to bundle Cursor's CLI as a native AI model source alongside native shell guide and bridge contract documentation (FN-3577). It also completes the dependency graph plugin's navigation contr

Fusion-Task-Id: FN-3086
This commit is contained in:
Fusion
2026-05-07 04:21:33 -07:00
committed by gsxdsm
parent 3735e0565a
commit f859108779
10 changed files with 518 additions and 126 deletions

View File

@@ -0,0 +1,35 @@
.graph-toolbar {
position: absolute;
right: var(--space-md);
bottom: var(--space-md);
display: flex;
flex-direction: column;
gap: var(--space-xs);
padding: var(--space-sm);
background: var(--surface);
border: var(--btn-border-width) solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
z-index: 10;
}
.graph-toolbar__zoom-label {
min-width: 3.5ch;
color: var(--text-muted);
font-family: var(--font-mono);
font-size: 0.75rem;
text-align: center;
}
@media (max-width: 768px) {
.graph-toolbar {
right: var(--space-sm);
bottom: var(--space-sm);
padding: var(--space-md);
}
.graph-toolbar .btn-icon {
min-width: calc(var(--space-xs) * 11);
min-height: calc(var(--space-xs) * 11);
}
}