typebulb 0.16.0 → 0.16.1
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 +139 -139
- package/dist/agents/claude/styles.css +14 -0
- package/dist/index.js +115 -115
- package/package.json +1 -1
|
@@ -1182,6 +1182,20 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
1182
1182
|
.turn-summary-text { font-style: italic; }
|
|
1183
1183
|
.turn-summary:hover .turn-summary-text { color: var(--fg); }
|
|
1184
1184
|
|
|
1185
|
+
/* An expanded abandoned-branch (fork) stub renders its orphan messages here — set apart from the live
|
|
1186
|
+
transcript with a left rule and slight fade, signalling "this is not the active conversation"
|
|
1187
|
+
(TB-LostMessage.md). The stub header itself is a .turn-summary row above. */
|
|
1188
|
+
.fork-body {
|
|
1189
|
+
margin-top: .4rem;
|
|
1190
|
+
padding-left: .6rem;
|
|
1191
|
+
border-left: 2px solid color-mix(in srgb, var(--fg) 18%, transparent);
|
|
1192
|
+
opacity: .82;
|
|
1193
|
+
/* --turn-color is a custom property and INHERITS — the stub's own .bubble.turn-N sets it, so without
|
|
1194
|
+
this reset every nested orphan bubble inherits the parent turn's color and redraws the stripe
|
|
1195
|
+
(the recursive-line bug). Reset to transparent so .bubble::before falls back to no stripe here. */
|
|
1196
|
+
--turn-color: transparent;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1185
1199
|
/* A superseded embed (an earlier same-name version) folds to this "💡 <Name> — Version N" stub — it
|
|
1186
1200
|
reclaims the bulb's full height. Marker-green text (--fold-marker: lime in dark, deep green in light)
|
|
1187
1201
|
on a neutral gray fill (--panel) that hugs the text (width:max-content), no border: text-hugging and
|