Worked on the saving api method.

This commit is contained in:
2025-07-02 22:22:25 +10:00
parent b6d51c7cfa
commit 4ce23cc392
4 changed files with 81 additions and 27 deletions

View File

@@ -8,10 +8,28 @@ body { display: none; }
overflow-y: scroll;
overflow-x: clip;
}
.events td.dt {
text-align: right;
font-family: monospace;
}
.events tr:hover td {
background: lightgrey;
}
.events td {
border: none;
}
.selection td {
background-color: darkgrey;
color: white;
}
.events td:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.events td:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.tt {
font-family: monospace;
}