Expose real train artifacts in dashboard

This commit is contained in:
2026-06-30 23:38:03 +08:00
parent fb96c96d8b
commit 3e9e8ba6f5
4 changed files with 70 additions and 4 deletions

View File

@@ -681,6 +681,31 @@ textarea {
overflow-wrap: anywhere;
}
.acceptanceArtifacts {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}
.acceptanceArtifacts a {
min-width: 0;
display: grid;
gap: 3px;
padding: 8px;
border-radius: 6px;
border: 1px solid var(--line);
background: #101310;
color: var(--ink);
text-decoration: none;
}
.acceptanceArtifacts span,
.acceptanceArtifacts small {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.taskCheckList {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));