chore(orbit): launch popover with create / join / help entries

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-24 17:57:37 +02:00
parent a1edec4a72
commit e6cb27bf3b
5 changed files with 285 additions and 9 deletions
+40
View File
@@ -11878,6 +11878,46 @@ html[data-psy-native-hidden="true"] *::after {
}
.orbit-start-trigger:hover svg { transform: rotate(45deg); }
/* Launch popover — three-option menu anchored below the topbar trigger. */
.orbit-launch-pop {
min-width: 220px;
padding: 6px;
background: var(--ctp-base, #1e1e2e);
border: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(255,255,255,0.1));
border-radius: var(--radius-md);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
display: flex;
flex-direction: column;
gap: 2px;
}
.orbit-launch-pop__item {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
padding: 9px 10px;
background: transparent;
border: none;
border-radius: var(--radius-sm);
color: var(--text-primary);
font-size: 13px;
font-weight: 500;
text-align: left;
cursor: pointer;
transition: background 120ms ease, color 120ms ease;
}
.orbit-launch-pop__item svg {
color: var(--accent);
flex-shrink: 0;
}
.orbit-launch-pop__item:hover:not(:disabled) {
background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.orbit-launch-pop__item:disabled {
opacity: 0.45;
cursor: not-allowed;
}
/* ── Start-session modal ────────────────────────────────────────── */
.orbit-start-overlay {
align-items: center;