feat(export): add persistent session export records in detail panel

This commit is contained in:
tisonhuang
2026-03-04 19:20:16 +08:00
parent 4b57e3e350
commit b6fd842d4e
4 changed files with 232 additions and 13 deletions

View File

@@ -1901,6 +1901,56 @@
}
}
.detail-record-empty {
padding: 10px 12px;
border-radius: 8px;
background: var(--bg-secondary);
font-size: 12px;
color: var(--text-secondary);
}
.detail-record-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.detail-record-item {
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 8px 10px;
background: var(--bg-primary);
.record-row {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 0;
font-size: 12px;
.label {
color: var(--text-secondary);
width: 56px;
flex-shrink: 0;
}
.value {
color: var(--text-primary);
flex: 1;
text-align: right;
word-break: break-all;
&.path {
text-align: left;
}
}
.detail-inline-btn {
flex-shrink: 0;
}
}
}
.table-list {
display: flex;
flex-direction: column;