Various CSS improvements

This commit is contained in:
James Cole
2023-01-29 14:49:53 +01:00
parent a5a95055c5
commit 9bffa86706
7 changed files with 784 additions and 73 deletions

View File

@@ -100,9 +100,15 @@ table.sortable > thead th:not([data-defaultsort=disabled]) {
top: 0;
left: 0;
}
table.sortable > thead th:hover:not([data-defaultsort=disabled]) {
background: #efefef;
@media (prefers-color-scheme: light) {
table.sortable > thead th:hover:not([data-defaultsort=disabled]) {
background: #efefef;
}
}
@media (prefers-color-scheme: dark) {
table.sortable > thead th:hover:not([data-defaultsort=disabled]) {
background: #2a2f34;
}
}
table.sortable > thead th div.mozilla {