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
This commit is contained in:
Fusion
2026-05-08 00:40:12 -07:00
committed by gsxdsm
parent 34a599f0b6
commit 3df6dab652
20 changed files with 487 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
.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);
}
}