claude-teammate 0.1.63 → 0.1.64
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/package.json +1 -1
- package/src/dashboard/ui.html +11 -3
package/package.json
CHANGED
package/src/dashboard/ui.html
CHANGED
|
@@ -503,9 +503,15 @@ tr:last-child td { border-bottom:none; }
|
|
|
503
503
|
tr:hover td { background:var(--bg); }
|
|
504
504
|
|
|
505
505
|
/* ── Pipeline ── */
|
|
506
|
+
.pipeline-scroll {
|
|
507
|
+
overflow-x: auto;
|
|
508
|
+
}
|
|
509
|
+
|
|
506
510
|
.pipeline {
|
|
507
511
|
display:grid;
|
|
508
|
-
grid-
|
|
512
|
+
grid-auto-flow: column;
|
|
513
|
+
grid-auto-columns: minmax(200px, 1fr);
|
|
514
|
+
min-width: max-content;
|
|
509
515
|
gap:14px;
|
|
510
516
|
margin-bottom:4px;
|
|
511
517
|
}
|
|
@@ -1370,8 +1376,10 @@ tr.clickable:hover td { background:var(--sky-bg) !important; }
|
|
|
1370
1376
|
</div>
|
|
1371
1377
|
<button class="btn" onclick="refreshAll()">↻ Refresh</button>
|
|
1372
1378
|
</div>
|
|
1373
|
-
<div class="pipeline
|
|
1374
|
-
<div class="
|
|
1379
|
+
<div class="pipeline-scroll">
|
|
1380
|
+
<div class="pipeline" id="pipeline-view">
|
|
1381
|
+
<div class="empty"><div class="empty-icon">▸</div><div class="empty-text">Loading…</div></div>
|
|
1382
|
+
</div>
|
|
1375
1383
|
</div>
|
|
1376
1384
|
</div>
|
|
1377
1385
|
|