clementine-agent 1.18.72 → 1.18.74
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/cli/dashboard.js +4 -1
- package/package.json +1 -1
package/dist/cli/dashboard.js
CHANGED
|
@@ -14980,6 +14980,9 @@ if('serviceWorker' in navigator){navigator.serviceWorker.getRegistrations().then
|
|
|
14980
14980
|
.task-card.compact .task-card-actions .primary {
|
|
14981
14981
|
flex: 1;
|
|
14982
14982
|
}
|
|
14983
|
+
/* ── Recent history row hover (Tasks page bottom zone) ── */
|
|
14984
|
+
.history-row { transition: background 0.12s ease; }
|
|
14985
|
+
.history-row:hover { background: var(--bg-hover); }
|
|
14983
14986
|
/* ── Trick capability strip (skills + MCP + tools at a glance) ─── */
|
|
14984
14987
|
.task-cap-strip {
|
|
14985
14988
|
border-top: 1px solid var(--border-light);
|
|
@@ -23205,7 +23208,7 @@ function renderRecentHistoryList(runs) {
|
|
|
23205
23208
|
var preview = String(entry.outputPreview).slice(0, 140);
|
|
23206
23209
|
errorPreview = '<div style="font-size:11px;color:var(--text-muted);margin-top:2px;word-break:break-word">' + esc(preview) + '</div>';
|
|
23207
23210
|
}
|
|
23208
|
-
rowsHtml += '<div class="history-row" data-trace-job="' + esc(jobName) + '" style="display:grid;grid-template-columns:24px minmax(180px,1.2fr) minmax(180px,1fr) 90px auto;gap:10px;align-items:start;padding:8px 14px;border-bottom:1px solid var(--border);cursor:pointer"
|
|
23211
|
+
rowsHtml += '<div class="history-row" data-trace-job="' + esc(jobName) + '" style="display:grid;grid-template-columns:24px minmax(180px,1.2fr) minmax(180px,1fr) 90px auto;gap:10px;align-items:start;padding:8px 14px;border-bottom:1px solid var(--border);cursor:pointer">'
|
|
23209
23212
|
+ '<div style="color:' + statusColor + ';font-size:14px;line-height:18px;text-align:center" title="' + esc(status) + '">' + statusIcon + '</div>'
|
|
23210
23213
|
+ '<div style="min-width:0">'
|
|
23211
23214
|
+ '<div style="font-weight:500;color:var(--text-primary);font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" title="' + esc(jobName) + '">' + esc(jobName) + attemptLabel + '</div>'
|