models table improvements

Co-authored-by: Copilot <copilot@github.com>
Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-05-08 12:16:21 +02:00
parent 8293a12137
commit f1b6e82ccf
9 changed files with 222 additions and 57 deletions
+24
View File
@@ -2193,6 +2193,30 @@ div:has(>#tab-gallery-folders) {
background-color: var(--button-primary-border-color) !important;
}
.simple-table th.sortable {
cursor: pointer;
user-select: none;
position: relative;
padding-right: 1.2em;
}
.simple-table th.sortable::after {
content: '↕';
position: absolute;
right: 0.3em;
opacity: 0.55;
}
.simple-table th.sortable.sorted-asc::after {
content: '↑';
opacity: 1;
}
.simple-table th.sortable.sorted-desc::after {
content: '↓';
opacity: 1;
}
.simple-table tr:nth-child(odd) {
background-color: var(--neutral-900);
}