buddy-builder 1.4.1 → 1.4.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 +57 -0
- package/dist/main.cjs +5 -3
- package/dist/main.cjs.map +2 -2
- package/dist/renderer/app.js +29 -29
- package/dist/renderer/app.js.map +3 -3
- package/dist/renderer/styles/sidebar.css +23 -6
- package/package.json +1 -1
|
@@ -237,7 +237,6 @@
|
|
|
237
237
|
margin-left: auto;
|
|
238
238
|
font-size: 10px;
|
|
239
239
|
color: var(--text-muted);
|
|
240
|
-
opacity: 0.6;
|
|
241
240
|
white-space: nowrap;
|
|
242
241
|
flex-shrink: 0;
|
|
243
242
|
}
|
|
@@ -250,7 +249,7 @@
|
|
|
250
249
|
padding: 8px 14px;
|
|
251
250
|
border: none;
|
|
252
251
|
background: transparent;
|
|
253
|
-
color: var(--text-
|
|
252
|
+
color: var(--text-secondary);
|
|
254
253
|
cursor: pointer;
|
|
255
254
|
font-size: 13px;
|
|
256
255
|
font-family: inherit;
|
|
@@ -260,7 +259,7 @@
|
|
|
260
259
|
|
|
261
260
|
.session-item:hover {
|
|
262
261
|
background: var(--hover-bg);
|
|
263
|
-
color: var(--text
|
|
262
|
+
color: var(--text);
|
|
264
263
|
}
|
|
265
264
|
|
|
266
265
|
.session-item.active {
|
|
@@ -277,7 +276,7 @@
|
|
|
277
276
|
|
|
278
277
|
.session-dot.state-idle { background: var(--success); }
|
|
279
278
|
.session-dot.state-busy { background: var(--warning); animation: pulse 1.5s ease-in-out infinite; }
|
|
280
|
-
.session-dot.state-dead { background: var(--text-muted); opacity: 0.
|
|
279
|
+
.session-dot.state-dead { background: var(--text-muted); opacity: 0.7; }
|
|
281
280
|
|
|
282
281
|
.session-label {
|
|
283
282
|
flex: 1;
|
|
@@ -350,8 +349,7 @@
|
|
|
350
349
|
.session-kill:hover { opacity: 1 !important; background: rgba(224, 30, 90, 0.15); }
|
|
351
350
|
|
|
352
351
|
.session-item.session-dead .session-label {
|
|
353
|
-
|
|
354
|
-
opacity: 0.6;
|
|
352
|
+
opacity: 0.8;
|
|
355
353
|
}
|
|
356
354
|
|
|
357
355
|
.session-item.popped-out {
|
|
@@ -676,3 +674,22 @@
|
|
|
676
674
|
|
|
677
675
|
.naming-btn-ok:hover { opacity: 0.85; }
|
|
678
676
|
.naming-btn-ok:disabled { opacity: 0.4; cursor: default; }
|
|
677
|
+
|
|
678
|
+
/* ─── Default folder prompt ─── */
|
|
679
|
+
|
|
680
|
+
.default-folder-prompt-path {
|
|
681
|
+
font-family: var(--font-mono, monospace);
|
|
682
|
+
font-size: 13px;
|
|
683
|
+
color: var(--accent);
|
|
684
|
+
background: var(--bg-0);
|
|
685
|
+
border-radius: var(--radius);
|
|
686
|
+
padding: 8px 10px;
|
|
687
|
+
margin-bottom: 8px;
|
|
688
|
+
word-break: break-all;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.default-folder-prompt-hint {
|
|
692
|
+
font-size: 12px;
|
|
693
|
+
color: var(--text-muted);
|
|
694
|
+
line-height: 1.5;
|
|
695
|
+
}
|