feat(logs): add request id parsing and refactor row layout

This commit is contained in:
hkfires
2025-12-24 10:46:33 +08:00
parent 561e06503c
commit 02a01e5afc
2 changed files with 103 additions and 66 deletions

View File

@@ -187,15 +187,8 @@
.rowMain {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.rowMeta {
display: flex;
align-items: center;
flex-wrap: wrap;
align-items: baseline;
gap: 6px;
min-width: 0;
}
@@ -236,6 +229,15 @@
}
}
.requestIdBadge {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
'Courier New', monospace;
font-size: 11px;
color: #0891b2;
background: rgba(8, 145, 178, 0.1);
border-color: rgba(8, 145, 178, 0.25);
}
.statusBadge {
font-variant-numeric: tabular-nums;
}
@@ -308,6 +310,5 @@
.message {
color: var(--text-secondary);
white-space: pre-wrap;
word-break: break-word;
white-space: nowrap;
}