typebulb 0.13.1 → 0.13.3
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 +3 -3
- package/dist/agents/claude/client.js +21 -6
- package/dist/agents/claude/styles.css +4 -3
- package/dist/index.js +164 -149
- package/dist/render.js +17 -2
- package/package.json +1 -1
|
@@ -272,9 +272,10 @@ body {
|
|
|
272
272
|
color: var(--accent); text-decoration: none; cursor: pointer;
|
|
273
273
|
}
|
|
274
274
|
.server-name:hover { text-decoration: underline; }
|
|
275
|
-
/* Port
|
|
276
|
-
|
|
277
|
-
|
|
275
|
+
/* Port links to the running server (localhost:<port>) — accent like the name, so a running
|
|
276
|
+
bulb's clickable :port reads as live against a stopped bulb's muted last-run time. */
|
|
277
|
+
.server-port { color: var(--accent); font-size: .76rem; font-variant-numeric: tabular-nums; text-decoration: none; text-align: right; margin-right: .4rem; }
|
|
278
|
+
a.server-port:hover { text-decoration: underline; }
|
|
278
279
|
/* Logs reads like a link (flips to this server's console), not a button. */
|
|
279
280
|
.server-logs { color: var(--muted); font-size: .76rem; text-decoration: none; cursor: pointer; margin-left: .5rem; }
|
|
280
281
|
.server-logs:hover, .server-logs.on { color: var(--accent); text-decoration: underline; }
|