Add frontend debug tracing

This commit is contained in:
Mikei386
2026-06-23 06:56:26 +02:00
parent 3fec83cf73
commit 068973ab9b
6 changed files with 197 additions and 26 deletions
+37
View File
@@ -306,6 +306,43 @@
gap: 10px;
}
.u-nav .debug-log {
border-top: 1px solid var(--line);
display: grid;
gap: 8px;
margin-top: 14px;
padding-top: 12px;
}
.u-nav .debug-log header {
align-items: center;
display: flex;
justify-content: space-between;
}
.u-nav .debug-entry {
background: var(--surface-2);
border: 1px solid var(--line);
border-radius: 6px;
padding: 8px;
}
.u-nav .debug-entry time {
color: var(--muted);
display: block;
font-size: 12px;
}
.u-nav .debug-entry pre {
color: var(--text);
font: 12px/1.35 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
margin: 6px 0 0;
max-height: 140px;
overflow: auto;
white-space: pre-wrap;
word-break: break-word;
}
.u-nav .job {
border: 1px solid var(--line);
border-radius: 8px;