add support for some samsung drives

This commit is contained in:
2026-06-03 12:54:18 -07:00
parent 2333cb36bc
commit 9096e7adde
7 changed files with 125 additions and 26 deletions

View File

@ -129,3 +129,17 @@ li {
background-color: #2c3e50; /* Dark background for meter */
}
/* Sort arrow */
th.sortable::after {
content: '';
float: right;
margin-left: 4px;
border: 4px solid transparent;
}
th.sortable.asc::after {
border-bottom-color: #333; /* ▲ */
}
th.sortable.desc::after {
border-top-color: #333; /* ▼ */
}