Files
web-terminal/public/style.css
Yaojia Wang 67b0a43b39 polish(v0.6): replace toolbar emoji with themed line icons + hover tooltips
The glossy emoji (🔍⚙▦🕘🔗📱) clashed with the Amber dark theme. Swap them
for clean lucide line icons (MIT, stroke=currentColor) so they take the theme
colour — muted by default, Amber on hover — and add a styled CSS hover tooltip
(data-tip, right-anchored so it never clips the edge) showing what each does.

- public/icons.ts: 7 line icons (search/settings/dashboard/history/keyboard/
  share/device), script-generated from lucide
- 7 toolbar modules: innerHTML = ICON_* + data-tip + aria-label
- style.css .toolbtn: 18px svg, --text-dim → --accent on hover, [data-tip] tooltip

Frontend-only. web typecheck + build clean; bundle has 0 toolbar emoji; verified
in-browser: line icons in theme colour, amber + tooltip on hover.
2026-06-30 14:36:26 +02:00

1462 lines
30 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Web Terminal — modern dark UI */
:root {
/* palette (design tokens) — Amber 琥珀金 theme (warm-neutral base + gold accent) */
--bg: #100f0d; /* terminal / deepest surface — warm near-neutral */
--surface-1: #181613; /* tab bar, key bar */
--surface-2: #1f1c17; /* tabs, buttons, cards */
--surface-3: #2a2620; /* hover / active */
--border: rgba(255, 255, 255, 0.07);
--border-strong: rgba(255, 255, 255, 0.14);
--text: #ece9e3;
--text-dim: #a8a299;
--text-faint: #6f6a61;
--accent: #e3a64a; /* amber gold */
--accent-2: #c9892f; /* deeper gold (gradients / hover) */
--accent-soft: rgba(227, 166, 74, 0.15);
--on-accent: #1a1305; /* text/icon color on a gold accent background (contrast) */
--green: #46d07f; /* connection-status: connected */
--amber: #f5b14c; /* connection-status: connecting */
--red: #ff6b6b; /* connection-status: disconnected / error */
--shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
--radius: 9px;
--radius-lg: 14px;
--tabbar-h: 40px;
--keybar-h: 46px;
--ui-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
@media (pointer: coarse) {
:root {
--tabbar-h: 48px;
--keybar-h: 60px;
}
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: var(--bg);
color: var(--text);
font-family: var(--ui-font);
overflow: hidden;
}
* {
scrollbar-width: thin;
scrollbar-color: var(--surface-3) transparent;
}
/* ── Tab bar ─────────────────────────────────────────────────────── */
#tabbar {
position: fixed;
inset: 0 0 auto 0;
height: var(--tabbar-h);
background: linear-gradient(180deg, #181a22, var(--surface-1));
border-bottom: 1px solid var(--border);
display: flex;
align-items: stretch;
z-index: 1001;
}
#tabs {
flex: 1 1 auto;
display: flex;
align-items: center;
gap: 2px;
padding: 0 4px;
overflow-x: auto;
overflow-y: hidden;
}
#tabs::-webkit-scrollbar {
height: 0;
}
/* tabs as floating rounded chips */
.tab {
display: flex;
align-items: center;
gap: 2px;
height: calc(var(--tabbar-h) - 12px);
padding: 0 4px 0 10px;
border-radius: 8px;
color: var(--text-dim);
background: transparent;
cursor: pointer;
white-space: nowrap;
font-size: 13px;
user-select: none;
max-width: 220px;
transition:
background 0.12s ease,
color 0.12s ease;
}
.tab:hover {
background: var(--surface-2);
color: var(--text);
}
.tab.active {
background: var(--surface-3);
color: #fff;
box-shadow: inset 0 0 0 1px var(--border-strong);
}
.tab-dot {
width: 7px;
height: 7px;
border-radius: 50%;
margin-right: 8px;
flex: none;
background: var(--text-faint);
}
.dot-connected {
background: var(--green);
box-shadow: 0 0 6px rgba(70, 208, 127, 0.5);
}
.dot-connecting,
.dot-reconnecting {
background: var(--amber);
}
.dot-exited {
background: var(--red);
}
.tab-label {
padding-right: 4px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tab-rename {
width: 120px;
margin: 0 4px;
padding: 3px 6px;
font: inherit;
font-size: 13px;
color: #fff;
background: var(--bg);
border: 1px solid var(--accent);
border-radius: 6px;
outline: none;
}
/* unread / Claude-waiting accents */
.tab.unread .tab-dot {
box-shadow: 0 0 0 3px var(--accent-soft);
}
.tab.unread .tab-label {
color: #fff;
font-weight: 600;
}
.tab-claude {
margin-right: 4px;
font-size: 12px;
flex: none;
}
.tab.claude-waiting {
background: rgba(245, 177, 76, 0.14);
box-shadow: inset 0 0 0 1px rgba(245, 177, 76, 0.5);
}
.tab.dragging {
opacity: 0.4;
}
.tab.drag-over {
box-shadow: inset 3px 0 0 var(--accent);
}
.tab-close {
background: none;
border: none;
color: var(--text-faint);
cursor: pointer;
font-size: 16px;
line-height: 1;
padding: 3px 6px;
border-radius: 6px;
flex: none;
}
.tab-close:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
@media (pointer: fine) {
.tab:not(.active):not(:hover) .tab-close {
opacity: 0;
}
}
.tab-add {
background: none;
border: none;
color: var(--text-dim);
cursor: pointer;
font-size: 18px;
padding: 0 10px;
flex: none;
border-radius: 7px;
}
.tab-add:hover {
color: #fff;
background: var(--surface-2);
}
/* v0.6: Home (⌂) button — opens the Sessions/Projects chooser over open tabs. */
.tab-home {
background: none;
border: none;
color: var(--text-dim);
cursor: pointer;
font-size: 17px;
padding: 0 10px;
flex: none;
border-radius: 7px;
}
.tab-home:hover {
color: #fff;
background: var(--surface-2);
}
.tab-home.active {
color: var(--on-accent, #1a1408);
background: var(--accent);
}
/* toolbar */
#toolbar {
flex: 0 0 auto;
display: flex;
align-items: center;
gap: 2px;
padding: 0 6px;
border-left: 1px solid var(--border);
}
.toolbtn {
position: relative; /* for the hover tooltip */
display: inline-flex;
align-items: center;
justify-content: center;
background: none;
border: none;
color: var(--text-dim);
cursor: pointer;
padding: 7px 9px;
border-radius: 8px;
line-height: 1;
transition: background 0.12s ease, color 0.12s ease;
}
.toolbtn svg {
display: block;
width: 18px;
height: 18px;
}
.toolbtn:hover {
color: var(--accent);
background: var(--surface-2);
}
/* Hover tooltip (right-anchored so it never clips the screen edge). */
.toolbtn[data-tip]::after {
content: attr(data-tip);
position: absolute;
top: calc(100% + 6px);
right: 0;
white-space: nowrap;
background: var(--surface-3);
color: var(--text);
border: 1px solid var(--border-strong);
padding: 4px 8px;
border-radius: 6px;
font-size: 12px;
font-weight: 500;
opacity: 0;
pointer-events: none;
transition: opacity 0.12s ease;
z-index: 60;
}
.toolbtn[data-tip]:hover::after {
opacity: 1;
}
/* ── Terminal area ───────────────────────────────────────────────── */
#term {
position: absolute;
inset: var(--tabbar-h) 0 var(--keybar-h) 0;
background: var(--bg);
overflow: hidden;
}
.term-pane {
position: absolute;
inset: 0;
padding: 6px 8px 0;
box-sizing: border-box;
overflow: hidden;
}
/* ── Key bar (rounded chips) ─────────────────────────────────────── */
#keybar {
position: fixed;
inset: auto 0 0 0;
height: var(--keybar-h);
background: var(--surface-1);
border-top: 1px solid var(--border);
display: flex;
align-items: center;
gap: 5px;
padding: 0 6px;
overflow-x: auto;
overflow-y: hidden;
z-index: 1000;
}
#keybar::-webkit-scrollbar {
height: 0;
}
#keybar button {
flex: 1 0 auto;
min-width: 50px;
height: calc(var(--keybar-h) - 12px);
padding: 0 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1px;
border: 1px solid var(--border);
background: var(--surface-2);
color: var(--text);
font-family: var(--ui-font);
cursor: pointer;
border-radius: 8px;
transition:
background 0.1s ease,
transform 0.05s ease;
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
#keybar .kb-key {
font-size: 13px;
line-height: 1.1;
}
#keybar .kb-cap {
font-size: 9px;
line-height: 1;
color: var(--text-faint);
letter-spacing: 0.02em;
}
#keybar button:hover {
background: var(--surface-3);
}
#keybar button:active {
transform: translateY(1px);
background: var(--surface-3);
}
#keybar button.keybar-btn-primary {
background: var(--accent-soft);
color: #f0d49a;
border-color: rgba(227, 166, 74, 0.4);
font-weight: 600;
min-width: 54px;
}
#keybar button.keybar-btn-primary:hover {
background: rgba(227, 166, 74, 0.26);
}
#keybar button.keybar-btn-primary .kb-cap {
color: rgba(240, 212, 154, 0.7);
}
/* ── Shared: overlays, cards, inputs, buttons ────────────────────── */
.overlay {
position: fixed;
inset: 0;
z-index: 1200;
display: flex;
background: rgba(8, 9, 12, 0.6);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}
#searchbox {
position: fixed;
top: calc(var(--tabbar-h) + 8px);
right: 10px;
z-index: 1100;
display: flex;
gap: 5px;
padding: 7px;
background: var(--surface-2);
border: 1px solid var(--border-strong);
border-radius: 10px;
box-shadow: var(--shadow);
}
.search-input {
width: 190px;
padding: 5px 8px;
font: inherit;
font-size: 13px;
color: #fff;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 7px;
outline: none;
}
.search-input:focus {
border-color: var(--accent);
}
#searchbox button {
background: var(--surface-3);
border: 1px solid var(--border);
color: var(--text);
cursor: pointer;
border-radius: 7px;
padding: 0 10px;
}
#searchbox button:hover {
background: var(--accent-soft);
}
/* QR + share modals */
#qrmodal,
#sharemodal {
position: fixed;
inset: 0;
z-index: 1200;
display: flex;
align-items: center;
justify-content: center;
background: rgba(8, 9, 12, 0.6);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}
.qr-card {
background: var(--surface-2);
color: var(--text);
border: 1px solid var(--border-strong);
border-radius: var(--radius-lg);
padding: 22px;
text-align: center;
max-width: 90vw;
box-shadow: var(--shadow);
}
.qr-card canvas {
border-radius: 10px;
background: #fff;
padding: 8px;
}
.qr-title {
font-weight: 600;
margin-bottom: 14px;
}
.qr-url {
margin-top: 12px;
font-size: 13px;
color: var(--accent);
word-break: break-all;
}
.qr-note {
margin-top: 8px;
font-size: 12px;
color: var(--text-dim);
max-width: 240px;
}
.qr-close {
margin-top: 16px;
padding: 8px 20px;
border: 1px solid var(--border-strong);
border-radius: 8px;
background: var(--surface-3);
color: #fff;
cursor: pointer;
font: inherit;
}
.qr-close:hover {
background: var(--accent-soft);
}
/* Settings panel */
#settingspanel {
position: fixed;
top: calc(var(--tabbar-h) + 8px);
right: 10px;
z-index: 1100;
background: var(--surface-2);
border: 1px solid var(--border-strong);
border-radius: 12px;
padding: 12px;
min-width: 220px;
box-shadow: var(--shadow);
color: var(--text);
}
.settings-row {
display: flex;
align-items: center;
gap: 6px;
margin: 8px 0;
}
.settings-label {
width: 48px;
color: var(--text-dim);
font-size: 13px;
}
.settings-opt {
background: var(--surface-3);
border: 1px solid var(--border);
color: var(--text);
border-radius: 7px;
padding: 5px 10px;
cursor: pointer;
font: inherit;
font-size: 12px;
transition: background 0.1s ease;
}
.settings-opt:hover {
background: var(--surface-1);
}
.settings-opt.active {
background: var(--accent);
color: var(--on-accent);
border-color: var(--accent);
}
.settings-size {
min-width: 22px;
text-align: center;
}
/* Dashboard + history + shortcuts share the centered-card look */
#dashboard,
#historymodal,
#shortcutsmodal {
position: fixed;
inset: 0;
z-index: 1200;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 60px;
background: rgba(8, 9, 12, 0.6);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}
.dash-card,
.hist-card,
.sc-card {
background: var(--surface-2);
border: 1px solid var(--border-strong);
border-radius: var(--radius-lg);
min-width: 340px;
max-width: 92vw;
max-height: 72vh;
overflow-y: auto;
box-shadow: var(--shadow);
}
.sc-card {
width: 540px;
}
.dash-title,
.hist-title,
.sc-title {
padding: 14px 18px;
font-weight: 600;
color: #fff;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
background: var(--surface-2);
}
/* Shortcut cheat-sheet */
.sc-group {
padding: 12px 18px 4px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--accent);
}
.sc-row {
display: flex;
align-items: center;
gap: 12px;
padding: 6px 18px;
}
.sc-key {
flex: none;
min-width: 110px;
font-family: Menlo, Consolas, monospace;
font-size: 12px;
color: #fff;
background: var(--bg);
border: 1px solid var(--border-strong);
border-radius: 6px;
padding: 3px 8px;
text-align: center;
}
.sc-desc {
flex: 1 1 auto;
color: var(--text-dim);
font-size: 13px;
}
.sc-tag {
flex: none;
font-size: 10px;
color: var(--accent);
background: var(--accent-soft);
border-radius: 5px;
padding: 2px 6px;
}
.dash-row,
.hist-row {
display: flex;
align-items: center;
gap: 10px;
padding: 11px 18px;
cursor: pointer;
color: var(--text);
border-bottom: 1px solid var(--border);
transition: background 0.1s ease;
}
.dash-row:hover,
.hist-row:hover {
background: var(--surface-3);
}
.dash-row.active {
box-shadow: inset 3px 0 0 var(--accent);
}
.dash-name {
flex: 1;
}
.dash-claude {
color: var(--text-dim);
font-size: 13px;
}
.dash-claude.pending {
color: var(--amber);
font-weight: 600;
}
.hist-empty {
padding: 18px;
color: var(--text-dim);
}
.hist-row {
cursor: default;
}
.hist-main {
flex: 1 1 auto;
min-width: 0;
}
.hist-proj {
color: #fff;
font-size: 13px;
}
.hist-prev {
color: var(--text-dim);
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.hist-resume {
flex: none;
background: var(--accent);
color: var(--on-accent);
border: none;
border-radius: 8px;
padding: 7px 15px;
cursor: pointer;
font: inherit;
font-weight: 500;
transition: background 0.1s ease;
}
.hist-resume:hover {
background: var(--accent-2);
}
/* Approval banner (H3) */
#approvalbar {
position: fixed;
inset: auto 0 var(--keybar-h) 0;
z-index: 1050;
display: flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
background: linear-gradient(180deg, rgba(245, 177, 76, 0.16), rgba(245, 177, 76, 0.08));
border-top: 1px solid rgba(245, 177, 76, 0.5);
color: #ffe0ad;
font-size: 14px;
}
.approval-label {
flex: 1 1 auto;
}
#approvalbar button {
flex: none;
border: none;
border-radius: 8px;
padding: 8px 16px;
cursor: pointer;
font: inherit;
font-weight: 600;
}
.approval-yes {
background: var(--green);
color: #06210f;
}
.approval-no {
background: var(--red);
color: #2a0808;
}
/* ── Launcher (home session chooser, shown when no tab is open) ──── */
.launcher {
position: absolute;
inset: 52px 0 0 0; /* mobile: reserve a row for the stacked .home-seg (desktop overrides to 0) */
overflow-y: auto;
padding: 22px 18px 40px;
box-sizing: border-box;
background: var(--bg);
}
.launcher-head {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px 16px;
margin-bottom: 18px;
}
.launcher-title {
font-size: 20px;
font-weight: 700;
color: #fff;
}
.launcher-sub {
flex: 1 1 auto;
color: var(--text-dim);
font-size: 13px;
}
.launcher-actions {
display: flex;
gap: 8px;
}
/* "New session" tile — leads the session grid, matching the session cards. */
.mg-new-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 200px;
background: none;
border: 2px dashed var(--border-strong);
border-radius: 12px;
color: var(--text-dim);
cursor: pointer;
font: inherit;
transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
.mg-new-card:hover {
border-color: var(--accent);
color: var(--accent);
background: var(--accent-soft);
}
.mg-new-plus {
font-size: 34px;
font-weight: 300;
line-height: 1;
}
.mg-new-label {
font-size: 14px;
font-weight: 600;
}
/* ── Session Manager page (manage.html) ──────────────────────────── */
#manage-root {
max-width: 1200px;
margin: 0 auto;
padding: 24px 16px 60px;
height: 100%;
overflow-y: auto;
box-sizing: border-box;
}
.mg-header {
margin-bottom: 18px;
}
.mg-title {
font-size: 22px;
font-weight: 700;
color: #fff;
}
.mg-sub {
color: var(--text-dim);
font-size: 13px;
margin-top: 2px;
}
.mg-bar {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 14px;
}
.mg-btn {
background: var(--surface-2);
border: 1px solid var(--border-strong);
color: var(--text);
border-radius: 8px;
padding: 8px 14px;
cursor: pointer;
font: inherit;
font-size: 13px;
text-decoration: none;
transition: background 0.1s ease;
}
.mg-btn:hover {
background: var(--surface-3);
}
.mg-btn.warn {
border-color: rgba(245, 177, 76, 0.5);
color: var(--amber);
}
.mg-btn.danger {
border-color: rgba(255, 107, 107, 0.5);
color: var(--red);
}
.mg-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
gap: 14px;
}
.mg-card {
display: flex;
flex-direction: column;
gap: 10px;
padding: 12px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 12px;
}
.mg-card-head {
display: flex;
align-items: center;
gap: 8px;
}
.mg-name {
flex: 1 1 auto;
min-width: 0;
color: #fff;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Live preview thumbnail (scaled read-only xterm) */
.mg-thumb {
position: relative;
width: 100%;
min-height: 90px;
background: #0e0f13;
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
cursor: pointer;
}
.mg-thumb:hover {
border-color: var(--accent);
}
.mg-thumb-inner {
position: absolute;
top: 0;
left: 0;
transform-origin: top left;
padding: 4px;
}
.mg-watch {
font-size: 11px;
color: var(--text-faint);
background: var(--surface-3);
border-radius: 5px;
padding: 1px 6px;
}
.mg-watch.live {
color: var(--green);
background: rgba(70, 208, 127, 0.14);
}
.mg-status {
font-size: 11px;
color: var(--text-dim);
}
.mg-status.mg-waiting {
color: var(--amber);
font-weight: 600;
}
.mg-status.mg-working {
color: var(--accent);
}
.mg-meta {
color: var(--text-faint);
font-size: 11px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-family: Menlo, Consolas, monospace;
}
.mg-actions {
display: flex;
gap: 6px;
}
.mg-actions .mg-open {
flex: 1 1 auto;
text-align: center;
}
.mg-open {
background: var(--accent);
color: var(--on-accent);
border-radius: 8px;
padding: 7px 13px;
text-decoration: none;
font-size: 13px;
}
.mg-open:hover {
background: var(--accent-2);
}
.mg-kill {
background: transparent;
border: 1px solid rgba(255, 107, 107, 0.4);
color: var(--red);
border-radius: 8px;
padding: 7px 13px;
cursor: pointer;
font: inherit;
font-size: 13px;
}
.mg-kill:hover {
background: rgba(255, 107, 107, 0.14);
}
.mg-empty {
color: var(--text-dim);
padding: 30px 0;
text-align: center;
}
/* ── v0.6 Projects panel ─────────────────────────────────────────────────── */
/* Panel wrapper (same host as .launcher; toggled via display) */
.proj-panel {
position: absolute;
inset: 52px 0 0 0; /* mobile: reserve a row for the stacked .home-seg (desktop overrides to 0) */
overflow-y: auto;
padding: 22px 18px 40px;
box-sizing: border-box;
background: var(--bg);
}
/* Search box */
.proj-search-wrap {
margin-bottom: 16px;
}
.proj-search {
width: 100%;
max-width: 320px;
padding: 8px 12px;
font: inherit;
font-size: 14px;
color: var(--text);
background: var(--surface-2);
border: 1px solid var(--border-strong);
border-radius: 8px;
outline: none;
box-sizing: border-box;
}
.proj-search:focus {
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-soft);
}
/* Grid — mirrors .mg-grid layout */
.proj-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 14px;
}
/* Project card */
.proj-card {
display: flex;
flex-direction: column;
gap: 8px;
padding: 14px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 12px;
transition: border-color 0.12s ease;
}
.proj-card:hover {
border-color: var(--border-strong);
}
/* Card header row */
.proj-card-head {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
/* Repo name */
.proj-name {
flex: 1 1 auto;
color: #fff;
font-weight: 600;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Branch chip */
.proj-branch {
font-size: 11px;
color: var(--accent);
background: var(--accent-soft);
border-radius: 5px;
padding: 2px 7px;
white-space: nowrap;
flex: none;
}
/* Dirty indicator (● dot) */
.proj-dirty {
font-size: 10px;
color: var(--amber);
flex: none;
}
/* Meta line (last-active time) */
.proj-meta {
font-size: 11px;
color: var(--text-faint);
font-family: Menlo, Consolas, monospace;
}
/* Favourite star toggle */
.proj-fav {
background: none;
border: none;
color: var(--text-faint);
cursor: pointer;
font-size: 15px;
padding: 0 2px;
line-height: 1;
flex: none;
transition: color 0.12s ease;
}
.proj-fav:hover {
color: var(--accent);
}
.proj-fav.on {
color: var(--accent);
}
/* Sessions list (1:N) */
.proj-sessions-list {
display: flex;
flex-direction: column;
gap: 4px;
}
/* One running-session row */
.proj-session-row {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 10px;
border-radius: 8px;
background: var(--surface-3);
cursor: pointer;
font-size: 13px;
color: var(--text);
transition: background 0.1s ease;
}
.proj-session-row:hover {
background: rgba(255, 255, 255, 0.08);
}
/* Status dot on a session row — colours from THEME.md v0.6 note */
.proj-session-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex: none;
background: var(--text-faint);
}
.proj-dot-working {
background: var(--accent);
box-shadow: 0 0 5px var(--accent-soft);
}
.proj-dot-waiting {
background: var(--amber);
}
.proj-dot-idle {
background: #8b8a86;
}
.proj-dot-unknown {
background: var(--text-faint);
}
/* Session title */
.proj-session-title {
flex: 1 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Kill (✕) on a session row — close the session straight from the card. */
.proj-session-kill {
flex: none;
width: 20px;
height: 20px;
line-height: 1;
padding: 0;
border: none;
border-radius: 5px;
background: none;
color: var(--text-faint);
cursor: pointer;
font-size: 11px;
transition: background 0.1s ease, color 0.1s ease;
}
.proj-session-kill:hover {
background: var(--red, #e5484d);
color: #fff;
}
/* Client-count badge (👁 N) */
.proj-session-badge {
font-size: 11px;
color: var(--text-dim);
background: var(--surface-2);
border-radius: 4px;
padding: 1px 5px;
flex: none;
}
/* " New" / " start claude here" action button */
/* Launcher row — Claude · Codex · VS Code, each a brand-logo icon button. */
.proj-launchers {
display: flex;
gap: 8px;
margin-top: 2px;
}
.proj-launch {
position: relative; /* for the active count badge */
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
padding: 9px 4px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 9px;
cursor: pointer;
font: inherit;
color: var(--text-dim); /* drives the logo colour (currentColor) by default */
transition: background 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
}
.proj-launch svg {
display: block;
}
.proj-launch-cap {
font-size: 11px;
font-weight: 600;
color: var(--text-dim);
}
.proj-launch:hover {
background: var(--surface-3);
border-color: var(--border-strong);
transform: translateY(-1px);
}
.proj-launch:active {
transform: translateY(0);
}
.proj-launch:hover .proj-launch-cap {
color: var(--text);
}
/* Brand colours on the logos (currentColor) */
.proj-launch-claude {
color: #d97757; /* Claude coral */
}
.proj-launch-codex {
color: #e7e8ec; /* OpenAI mark — near-white on dark */
}
.proj-launch-vscode {
color: #3aa0e3; /* VS Code blue */
}
/* Active state — a matching session is running (Claude logo when a Claude
* session is live). Coral ring + faint tint draw the eye without shouting. */
.proj-launch-active {
background: rgba(217, 119, 87, 0.14);
border-color: #d97757;
box-shadow: 0 0 0 1px rgba(217, 119, 87, 0.45) inset;
}
.proj-launch-active .proj-launch-cap {
color: #e9b9a6;
}
.proj-launch-badge {
position: absolute;
top: 4px;
right: 6px;
min-width: 15px;
height: 15px;
padding: 0 3px;
box-sizing: border-box;
border-radius: 8px;
background: #d97757;
color: #1a1408;
font-size: 9px;
font-weight: 700;
line-height: 15px;
text-align: center;
}
/* ── Project detail view ─────────────────────────────────────────── */
.proj-name-link {
cursor: pointer;
}
.proj-name-link:hover {
text-decoration: underline;
text-underline-offset: 2px;
}
.proj-detail-inner {
max-width: 900px;
margin: 0 auto;
}
.proj-back {
background: none;
border: 1px solid var(--border);
color: var(--text-dim);
border-radius: 8px;
padding: 6px 12px;
font: inherit;
font-size: 13px;
cursor: pointer;
margin-bottom: 16px;
transition: background 0.12s ease, color 0.12s ease;
}
.proj-back:hover {
background: var(--surface-2);
color: var(--text);
}
.proj-detail-head {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.proj-detail-name {
margin: 0;
font-size: 22px;
font-weight: 700;
color: #fff;
}
.proj-detail-path {
margin: 4px 0 8px;
font-family: Menlo, Consolas, monospace;
font-size: 12px;
color: var(--text-faint);
word-break: break-all;
}
.proj-section-title {
margin: 22px 0 10px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--text-faint);
}
/* Worktrees */
.proj-wt-list {
display: flex;
flex-direction: column;
gap: 6px;
}
.proj-wt-row {
display: flex;
align-items: center;
gap: 10px;
padding: 9px 12px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 8px;
}
.proj-wt-branch {
font-weight: 600;
color: var(--text);
}
.proj-wt-tag {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 2px 7px;
border-radius: 999px;
background: var(--surface-3);
color: var(--text-dim);
}
.proj-wt-tag-current {
background: var(--accent);
color: var(--on-accent);
}
.proj-wt-path {
margin-left: auto;
font-family: Menlo, Consolas, monospace;
font-size: 11px;
color: var(--text-faint);
word-break: break-all;
}
/* Detailed session rows */
.proj-detail-sessions {
display: flex;
flex-direction: column;
gap: 8px;
}
.proj-dsession {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 8px;
}
.proj-dsession-main {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
flex: 1;
}
.proj-dsession-title {
font-weight: 600;
color: var(--text);
}
.proj-dsession-meta {
font-size: 12px;
color: var(--text-dim);
}
.proj-dsession-open {
background: var(--accent);
color: var(--on-accent);
border: none;
border-radius: 7px;
padding: 6px 14px;
font: inherit;
font-weight: 600;
cursor: pointer;
}
.proj-dsession-open:hover {
background: var(--accent-2);
}
.proj-dsession-kill {
background: none;
border: 1px solid var(--border);
color: var(--text-dim);
border-radius: 7px;
width: 30px;
height: 30px;
cursor: pointer;
font-size: 14px;
}
.proj-dsession-kill:hover {
background: var(--red, #e5484d);
border-color: var(--red, #e5484d);
color: #fff;
}
/* Empty state */
.proj-empty {
color: var(--text-dim);
padding: 30px 0;
text-align: center;
}
/* ── Home segmented control (P6 builds the DOM; styles defined here per spec) */
/* Horizontal pill container, centered above the home grid */
/* Segmented control: a single rounded "track" holding two pill buttons, with
* the active one filled (iOS-style). Centred with fit-content + margin auto. */
.home-seg {
width: fit-content;
margin: 10px auto 12px;
display: flex;
gap: 3px;
padding: 3px;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 999px;
}
/* Inactive segment */
.home-seg-btn {
background: transparent;
border: none;
color: var(--text-dim);
cursor: pointer;
font: inherit;
font-size: 13px;
font-weight: 500;
padding: 6px 22px;
border-radius: 999px;
transition: background 0.12s ease, color 0.12s ease;
}
.home-seg-btn:not(.active):hover {
color: var(--text);
background: var(--surface-3);
}
/* Active segment — Amber accent; text uses --on-accent for contrast */
.home-seg-btn.active {
background: var(--accent);
color: var(--on-accent);
font-weight: 600;
}
.home-seg-btn.active:hover {
background: var(--accent-2);
}
/* On the home chooser (Sessions/Projects), there is no active terminal, so the
* bottom key-bar is just noise — hide it. Toggled by TabApp.updateHomeView(). */
body.home-open #keybar {
display: none;
}
/* Home chooser hides the key-bar, so reclaim its reserved space at the bottom. */
body.home-open #term {
bottom: 0;
}
/* Desktop: float the Sessions/Projects toggle top-right, on the SAME row as the
* panel's filter/header — instead of a dedicated row that left a big empty band.
* The panels fill from the top; the launcher header reserves room for the pill.
* (Mobile keeps the stacked, centred toggle — see .home-seg above — to avoid
* overlapping the full-width filter box on narrow screens.) */
@media (min-width: 769px) {
.home-seg {
position: absolute;
top: 16px;
right: 20px;
margin: 0;
z-index: 6;
}
.launcher,
.proj-panel {
inset: 0;
}
.launcher-head {
padding-right: 240px; /* clear the absolutely-positioned .home-seg */
}
}