typebulb 0.17.2 → 0.17.4
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/README.md +2 -0
- package/dist/agents/claude/client.js +12 -6
- package/dist/agents/claude/styles.css +4 -0
- package/dist/index.js +120 -109
- package/dist/render.js +52 -46
- package/package.json +1 -1
|
@@ -508,6 +508,10 @@ body {
|
|
|
508
508
|
.server-row:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); }
|
|
509
509
|
/* Keyboard-highlighted row (arrow-key cursor) — a touch stronger than hover so it stands out. */
|
|
510
510
|
.server-row.active { background: color-mix(in srgb, var(--accent) 16%, transparent); }
|
|
511
|
+
/* Breakout spotlight (bulbsPill.ts): the new bulb's row stays bright while the rest dim, until the
|
|
512
|
+
menu closes or that row is hovered. The transition eases the dim in and back out. */
|
|
513
|
+
.server-row { transition: opacity .3s ease; }
|
|
514
|
+
.server-row.dimmed { opacity: .3; }
|
|
511
515
|
.server-name {
|
|
512
516
|
flex: 1; min-width: 0;
|
|
513
517
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|