More webapp changes+fixes
All checks were successful
Build Docker and Deploy / Build Docker Container (push) Successful in 1m41s
Build Docker and Deploy / Run Unit-Tests (push) Successful in 9m31s
Build Docker and Deploy / Deploy to Server (push) Successful in 18s

This commit is contained in:
2025-12-05 21:36:50 +01:00
parent c554479604
commit 2b7950f5dc
44 changed files with 1245 additions and 189 deletions

View File

@@ -67,15 +67,28 @@ body {
align-items: center;
}
// Clickable row
// Clickable row with anchor link for proper middle-click support
.clickable-row {
cursor: pointer;
&:hover {
background-color: #fafafa;
}
}
td:has(> a.cell-link) {
padding: 0 !important;
}
a.cell-link {
display: block;
padding: 8px;
color: inherit;
text-decoration: none;
&:hover {
color: inherit;
}
}
// Status colors
.status-confirmed {
color: #52c41a;
@@ -150,3 +163,7 @@ nz-card {
flex-grow: 1;
}
}
th {
white-space: pre;
}