[backend/razor] Improve queue dashboard

This commit is contained in:
Laura Hausmann 2024-06-21 21:30:44 +02:00
parent db2a504504
commit 8b61186449
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
2 changed files with 6 additions and 1 deletions

View file

@ -136,7 +136,7 @@ else
}; };
<tr> <tr>
<td class="monospace">@id</td> <td class="uuid">@id</td>
<td class="status-@job.Status.ToString().ToLowerInvariant()"> <td class="status-@job.Status.ToString().ToLowerInvariant()">
<b>@job.Status</b> <small>@additional</small> <b>@job.Status</b> <small>@additional</small>
<td> <td>

View file

@ -58,3 +58,8 @@
.flex-grow { .flex-grow {
flex-grow: 1; flex-grow: 1;
} }
.uuid {
font-family: monospace;
width: 36ch;
}