修复后台最近传输记录的问题

This commit is contained in:
2026-03-28 19:29:13 +08:00
parent 8b5f7d517e
commit 689c356a55
7 changed files with 60 additions and 21 deletions

View File

@@ -1298,6 +1298,8 @@ body[data-theme="dark"] .batch-item:hover {
.admin-table {
width: 100%;
min-width: 0;
table-layout: fixed;
margin-top: 10px;
border-collapse: collapse;
font-size: 14px;
@@ -1320,6 +1322,7 @@ body[data-theme="dark"] .batch-item:hover {
padding: 14px 12px;
color: var(--text-main);
border-bottom: 1px solid var(--item-border);
vertical-align: top;
}
.admin-table tbody tr:last-child td {
@@ -1330,6 +1333,22 @@ body[data-theme="dark"] .batch-item:hover {
background-color: var(--item-bg-hover);
}
.admin-record-type-cell {
width: 42%;
}
.admin-record-type {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
overflow-wrap: anywhere;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-height: 1.45;
max-height: calc(1.45em * 2);
}
.hidden {
display: none !important;
}