fix(admin): show program name in single line with ellipsis

This commit is contained in:
empty
2026-02-04 00:04:09 +08:00
parent 69c789ba9d
commit baacee50e6

View File

@@ -2345,9 +2345,11 @@ $admin-danger: #ef4444;
}
.program-name {
flex: 0 1 auto;
max-width: 120px;
word-break: break-all;
flex: 1;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.program-actions {