Files
fusion/plugins/fusion-plugin-dependency-graph/src/GraphToolbar.css
Fusion f859108779 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
2026-05-07 04:28:37 -07:00

36 lines
775 B
CSS

.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);
}
}