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 { .program-name {
flex: 0 1 auto; flex: 1;
max-width: 120px; min-width: 0;
word-break: break-all; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.program-actions { .program-actions {