typebulb 0.15.5 → 0.15.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/claude/client.js +1 -1
- package/dist/agents/claude/styles.css +6 -4
- package/dist/index.js +133 -133
- package/package.json +1 -1
|
@@ -419,14 +419,16 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
419
419
|
.btn-icon { display: block; }
|
|
420
420
|
/* A stopped bulb's play button is dormant — the title is the primary launch target — so it's
|
|
421
421
|
hidden until the row is hovered or keyboard-selected. visibility (not display) reserves its slot,
|
|
422
|
-
so the name column doesn't shift when it appears.
|
|
423
|
-
|
|
422
|
+
so the name column doesn't shift when it appears. Painted the fold-marker green, matching the
|
|
423
|
+
:port link: green is the live-app axis (play to launch → :port to open it), distinct from the
|
|
424
|
+
blue source/name. The green even travels left→right as a bulb goes stopped→running. */
|
|
425
|
+
.bulb-launch { color: var(--fold-marker); visibility: hidden; }
|
|
424
426
|
.server-row:hover .bulb-launch, .server-row.active .bulb-launch { visibility: visible; }
|
|
425
|
-
.bulb-launch:hover { border-color: var(--
|
|
427
|
+
.bulb-launch:hover { border-color: var(--fold-marker); background: color-mix(in srgb, var(--fold-marker) 12%, transparent); }
|
|
426
428
|
/* Launching: stays visible (hover-independent) and shimmers until the row flips to a stop button,
|
|
427
429
|
so the ~2s wait reads as "working" rather than a dead click. Transient — driven by the in-memory
|
|
428
430
|
launching set, never persisted. */
|
|
429
|
-
.bulb-launch.launching { visibility: visible; border-color: var(--
|
|
431
|
+
.bulb-launch.launching { visibility: visible; border-color: var(--fold-marker); }
|
|
430
432
|
.server-stop { color: var(--muted); }
|
|
431
433
|
.server-stop:hover { color: var(--err); border-color: var(--err); }
|
|
432
434
|
/* Elevation prompt (VS-Code-Workspace-Trust style) — a modal over the whole view, since a
|