Show queued tasks

This commit is contained in:
Joscha 2023-08-06 20:31:11 +02:00
parent 2c0a496897
commit ad5da60b5a
8 changed files with 180 additions and 25 deletions

View file

@ -37,6 +37,21 @@ details>summary {
margin-left: 0;
}
table {
border-collapse: collapse;
}
thead tr,
tbody tr:hover {
background-color: #ddd;
}
th+th,
td+td {
padding-left: 2ch;
}
/* Nav bar */
nav {
@ -117,3 +132,17 @@ nav img {
.commit pre {
white-space: pre-wrap;
}
/* Queue */
.queue td:nth-child(2) {
text-align: right;
}
.queue td:nth-child(3) {
text-align: center;
}
.queue .odd {
background-color: #eee;
}