mirror of
https://github.com/vladmandic/automatic
synced 2026-09-18 16:54:33 +02:00
models table improvements
Co-authored-by: Copilot <copilot@github.com> Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user