Files
fusion/packages/dashboard/app/components/ShellConnectionStatus.css
Fusion 9c484cf19c docs(FN-3408): document shell connection chrome contracts
- Add architecture notes describing shell connection chrome contracts
- Expand dashboard README with shell chrome expectations and integration details
- Add desktop README note aligning desktop shell behavior with documented contracts

Fusion-Task-Id: FN-3408
2026-05-08 00:40:15 -07:00

35 lines
710 B
CSS

.shell-connection-status {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
}
.shell-connection-status__kind {
color: var(--text-muted);
font-size: calc(var(--space-sm) + var(--space-xs));
}
.shell-connection-status__summary {
color: var(--text);
max-width: calc(var(--space-2xl) * 8);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shell-connection-status__action {
color: var(--color-info);
font-size: calc(var(--space-sm) + var(--space-xs));
}
@media (max-width: 768px) {
.shell-connection-status {
width: 100%;
justify-content: flex-start;
}
.shell-connection-status__summary {
max-width: calc(var(--space-2xl) * 5);
}
}