highlight table sorting

This commit is contained in:
Dennis Eichhorn 2020-09-10 21:06:07 +02:00
parent 4192f86a6b
commit 4286d1843c
2 changed files with 12 additions and 0 deletions

View File

@ -4471,6 +4471,10 @@ table.default {
background: var(--table-head-background); }
table.default thead td {
border-bottom: 1px solid var(--box-border); }
table.default thead input[type=radio] {
display: none; }
table.default thead input[type=radio]:checked + label i {
color: var(--box-highlight); }
table.default .empty {
text-align: center;
color: #d8d8d8; }

View File

@ -92,6 +92,14 @@ table.default {
td {
border-bottom: 1px solid var(--box-border);
}
input[type=radio] {
display: none;
&:checked + label i {
color: var(--box-highlight);;
}
}
}
.empty {