typebulb 0.14.7 → 0.14.9
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 +180 -180
- package/dist/agents/claude/styles.css +12 -2
- package/dist/index.js +113 -112
- package/package.json +1 -1
|
@@ -365,7 +365,7 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
365
365
|
}
|
|
366
366
|
.bulb-filter-clear:hover { color: var(--accent); }
|
|
367
367
|
/* Filter-mode toggle (full-text search) — inset at the input's right edge; the clear × shifts
|
|
368
|
-
inward beside it.
|
|
368
|
+
inward beside it. Both comboboxes render it (SearchComboboxPill's modeToggle). */
|
|
369
369
|
.bulb-filter-control.has-trailing .bulb-filter { padding-right: 3.8rem; }
|
|
370
370
|
.bulb-filter-control.has-trailing .bulb-filter-clear { right: 2.5rem; }
|
|
371
371
|
.bulb-filter-mode {
|
|
@@ -386,9 +386,19 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
386
386
|
/* The shared grid for the launcher rows: each .server-row is a subgrid spanning these tracks, so
|
|
387
387
|
columns line up row-to-row. auto cols size to their widest content (tight, no slack); 1fr is the
|
|
388
388
|
name. A small right padding keeps the selected-row highlight off the scrollbar. */
|
|
389
|
-
|
|
389
|
+
/* grid-auto-rows: max-content — the grid twin of .picker-row's flex:none: when the list overflows
|
|
390
|
+
the popover cap, plain auto rows compress to each row's min-height contribution, so a full-text
|
|
391
|
+
row's snippet line bleeds under the next row as overlapping text. max-content tracks never
|
|
392
|
+
compress; the list scrolls, rows keep their content height. */
|
|
393
|
+
.bulb-list { display: grid; grid-template-columns: auto 1fr auto auto auto; grid-auto-rows: max-content; column-gap: .6rem; row-gap: .15rem; align-items: center; align-content: start; padding-right: 4px; flex: 1; min-height: 0; overflow-y: auto; }
|
|
390
394
|
/* A stopped bulb's name isn't a link (no running URL), so it stays plain foreground. */
|
|
391
395
|
.server-name.stopped { color: var(--fg); }
|
|
396
|
+
/* The 1fr name column: name + (in full-text mode) its hit count read together, the badge
|
|
397
|
+
right-aligned at the column's end by the name's flex:1 — the session row's preview/hits layout. */
|
|
398
|
+
.bulb-name-cell { display: flex; align-items: baseline; gap: .6rem; min-width: 0; }
|
|
399
|
+
/* Full-text snippet in the launcher: a second internal row of the row's subgrid, aligned under the
|
|
400
|
+
name column (the session picker indents past its dot gutter instead — override that margin). */
|
|
401
|
+
.bulb-list .picker-snippet { grid-column: 2 / -1; margin: 0 .4rem .2rem 0; }
|
|
392
402
|
.bulb-time { color: var(--muted); font-size: .72rem; font-variant-numeric: tabular-nums; text-align: right; margin-right: .4rem; }
|
|
393
403
|
/* The row's chrome buttons share one reset; sizing + colour differ below. Play/stop are round icon
|
|
394
404
|
buttons (friendlier, space-economic); the trust switch is text. Logs is a link, not a button
|