buddy-builder 1.4.3 → 1.4.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/dist/main.cjs +1 -1
- package/dist/main.cjs.map +1 -1
- package/dist/renderer/app.js +52 -52
- package/dist/renderer/app.js.map +3 -3
- package/dist/renderer/styles/base.css +1 -1
- package/dist/renderer/styles/sidebar.css +30 -0
- package/package.json +1 -1
|
@@ -278,6 +278,20 @@
|
|
|
278
278
|
.session-dot.state-busy { background: var(--warning); animation: pulse 1.5s ease-in-out infinite; }
|
|
279
279
|
.session-dot.state-dead { background: var(--text-muted); opacity: 0.7; }
|
|
280
280
|
|
|
281
|
+
.session-item-text {
|
|
282
|
+
flex: 1;
|
|
283
|
+
min-width: 0;
|
|
284
|
+
display: flex;
|
|
285
|
+
flex-direction: column;
|
|
286
|
+
gap: 2px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.session-item-row {
|
|
290
|
+
display: flex;
|
|
291
|
+
align-items: center;
|
|
292
|
+
gap: 8px;
|
|
293
|
+
}
|
|
294
|
+
|
|
281
295
|
.session-label {
|
|
282
296
|
flex: 1;
|
|
283
297
|
overflow: hidden;
|
|
@@ -285,6 +299,22 @@
|
|
|
285
299
|
white-space: nowrap;
|
|
286
300
|
}
|
|
287
301
|
|
|
302
|
+
.session-snippet {
|
|
303
|
+
font-size: 11px;
|
|
304
|
+
color: var(--text-muted);
|
|
305
|
+
overflow: hidden;
|
|
306
|
+
text-overflow: ellipsis;
|
|
307
|
+
white-space: nowrap;
|
|
308
|
+
line-height: 1.3;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.session-snippet mark {
|
|
312
|
+
background: rgba(88, 166, 255, 0.25);
|
|
313
|
+
color: var(--text);
|
|
314
|
+
border-radius: 2px;
|
|
315
|
+
padding: 0 1px;
|
|
316
|
+
}
|
|
317
|
+
|
|
288
318
|
/* ─── Favorite star ─── */
|
|
289
319
|
|
|
290
320
|
.session-fav {
|