feat: add date and time sorting controls

This commit is contained in:
Codex
2026-06-13 23:26:17 +08:00
parent 839149c258
commit ad77a19fbd
3 changed files with 133 additions and 6 deletions
+26
View File
@@ -358,6 +358,32 @@ th {
font-weight: 700;
}
.sort-header-button {
display: inline-flex;
align-items: center;
justify-content: flex-start;
min-width: 64px;
padding: 0;
border: 0;
background: transparent;
color: inherit;
cursor: pointer;
font: inherit;
font-weight: 700;
white-space: nowrap;
}
.sort-header-button:hover,
.sort-header-button:focus-visible {
color: var(--accent-strong);
}
.sort-header-button:focus-visible {
border-radius: 4px;
outline: 2px solid rgba(15, 118, 110, 0.35);
outline-offset: 3px;
}
td {
font-size: 14px;
}