exp(orbit): mount hooks and session top strip

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-23 01:07:40 +02:00
parent cebf0e238d
commit 9e1256e200
3 changed files with 295 additions and 0 deletions
+139
View File
@@ -11180,3 +11180,142 @@ html[data-app-hidden="true"] *::after {
.np-dash-stats-values { gap: 16px; }
.np-dash-stat-value { font-size: 18px; }
}
/* ─────────────────────────────────────────────────────────────────────
Orbit — session top strip
───────────────────────────────────────────────────────────────────── */
.orbit-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 500;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 12px;
padding: 6px 14px;
background: color-mix(in srgb, var(--ctp-base, #1e1e2e) 80%, transparent);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border, rgba(255,255,255,0.08)));
color: var(--text-primary);
font-size: 12px;
letter-spacing: 0.01em;
animation: orbit-bar-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes orbit-bar-in {
from { opacity: 0; transform: translateY(-100%); }
to { opacity: 1; transform: translateY(0); }
}
.orbit-bar__left {
display: flex;
align-items: center;
gap: 8px;
min-width: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.orbit-bar__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 6px color-mix(in srgb, var(--accent) 70%, transparent);
animation: orbit-pulse 2s ease-in-out infinite;
flex-shrink: 0;
}
@keyframes orbit-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.6; transform: scale(0.85); }
}
.orbit-bar__name {
font-weight: 600;
color: var(--accent);
overflow: hidden;
text-overflow: ellipsis;
}
.orbit-bar__sep {
color: rgba(255, 255, 255, 0.35);
flex-shrink: 0;
}
.orbit-bar__count,
.orbit-bar__host {
color: var(--text-muted);
flex-shrink: 0;
}
.orbit-bar__center {
display: flex;
align-items: center;
justify-content: center;
}
.orbit-bar__shuffle {
font-variant-numeric: tabular-nums;
color: var(--text-muted);
font-weight: 500;
padding: 3px 10px;
border-radius: 999px;
background: color-mix(in srgb, var(--text-primary) 5%, transparent);
border: 1px solid color-mix(in srgb, var(--text-primary) 8%, transparent);
}
.orbit-bar__right {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
}
.orbit-bar__catchup {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
border-radius: 999px;
background: color-mix(in srgb, var(--accent) 16%, transparent);
border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
color: var(--accent);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.02em;
cursor: pointer;
transition: background 150ms ease, border-color 150ms ease, transform 120ms ease;
}
.orbit-bar__catchup:hover {
background: color-mix(in srgb, var(--accent) 26%, transparent);
border-color: color-mix(in srgb, var(--accent) 55%, transparent);
transform: translateY(-1px);
}
.orbit-bar__exit {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border-radius: 50%;
background: color-mix(in srgb, var(--text-primary) 5%, transparent);
border: 1px solid color-mix(in srgb, var(--text-primary) 10%, transparent);
color: var(--text-muted);
cursor: pointer;
transition: color 150ms ease, background 150ms ease, transform 180ms ease;
}
.orbit-bar__exit:hover {
color: var(--ctp-red, #f38ba8);
background: color-mix(in srgb, var(--ctp-red, #f38ba8) 12%, transparent);
transform: rotate(90deg);
}
/* Push the rest of the shell down while the bar is visible. */
.app-shell:has(.orbit-bar) { padding-top: 32px; }