typebulb 0.15.1 → 0.15.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 +2 -2
- package/dist/agents/claude/client.js +83 -81
- package/dist/agents/claude/styles.css +5 -4
- package/dist/index.js +194 -190
- package/dist/servers.js +15 -15
- package/package.json +1 -1
|
@@ -589,13 +589,14 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
589
589
|
.md :first-child { margin-top: 0; }
|
|
590
590
|
.md :last-child { margin-bottom: 0; }
|
|
591
591
|
.md p { margin: .5rem 0; }
|
|
592
|
-
/* Thematic break — also the divider between merged consecutive user sends (see
|
|
593
|
-
|
|
592
|
+
/* Thematic break — also the divider between merged consecutive user sends (see applyUser): faint
|
|
593
|
+
so the bubble still reads as one turn, but legible in both themes. Mixed off --fg (text contrast)
|
|
594
|
+
rather than --border + opacity: --border is itself dim in dark mode, so dimming it again left the
|
|
595
|
+
line invisible there — and the faintness is a property of the line's color, not the element. */
|
|
594
596
|
.md hr {
|
|
595
597
|
border: none;
|
|
596
|
-
border-top: 1px solid var(--
|
|
598
|
+
border-top: 1px solid color-mix(in srgb, var(--fg) 12%, transparent);
|
|
597
599
|
margin: .55rem 0;
|
|
598
|
-
opacity: .5;
|
|
599
600
|
}
|
|
600
601
|
.md pre {
|
|
601
602
|
background: var(--veil);
|