diff --git a/ui-src/src/App.tsx b/ui-src/src/App.tsx
index 94d892d..926dbba 100644
--- a/ui-src/src/App.tsx
+++ b/ui-src/src/App.tsx
@@ -872,23 +872,23 @@ export default function App() {
{entry.status_code ?? "-"}
{entry.profile_name || status?.config?.profile_name || "-"}
{entry.lifecycle_state || "sent"}
-
+
发
{timestamp(entry.started_at)}
-
+
首
{durationSeconds(entry.first_response_delay_ms)}
-
+
总
{durationSeconds(entry.duration_ms)}
-
+
体
{bytesFormat(entry.request_body_bytes)}
-
+
收
{timestamp(entry.finished_at)}
diff --git a/ui-src/src/styles.css b/ui-src/src/styles.css
index e07c4bd..9dec1b8 100644
--- a/ui-src/src/styles.css
+++ b/ui-src/src/styles.css
@@ -580,10 +580,36 @@ a {
.meta-key {
margin-right: 5px;
- color: #66707c;
+ color: currentColor;
font-size: 10px;
font-weight: 820;
letter-spacing: 0.04em;
+ opacity: 0.72;
+}
+
+.meta-sent {
+ color: #155f53;
+ background: #d9efe8;
+}
+
+.meta-first {
+ color: #315f80;
+ background: #dcecf7;
+}
+
+.meta-total {
+ color: #744d18;
+ background: #f6e3bd;
+}
+
+.meta-body {
+ color: #773f33;
+ background: #f8ddd5;
+}
+
+.meta-received {
+ color: #425268;
+ background: #e5eaef;
}
.request-grid {