Added sorting, started on paging

This commit is contained in:
2024-09-10 21:58:24 -04:00
parent 1e3dc2938b
commit 7a525930db
18 changed files with 558 additions and 177 deletions

View File

@@ -0,0 +1,61 @@
table {
border-collapse: collapse;
}
thead {
th {
border: 1px solid #ddd;
background-color: #eee;
text-align: left;
vertical-align: top;
margin: 2px;
padding: 0px 2px;
}
th.highlight {
background-color: #cdf;
}
.spacer {
border: none;
background-color: inherit;
}
}
tbody {
td {
border: 1px solid #ddd;
text-align: right;
padding: 2px;
}
td.highlight {
background-color: #def;
}
td:hover {
background-color: #eff;
}
}
tfoot {
td {
text-align: center;
}
}
.left {
text-align: left;
}
.unused {
color: #ddd;
}
.button {
color: #777;
}
.clickable {
cursor: pointer;
}