feat(plan): show project name instead of raw id in cell

This commit is contained in:
BOHA
2026-06-05 13:51:27 +02:00
parent f0816b126b
commit 9a11a8f001
4 changed files with 74 additions and 13 deletions

View File

@@ -116,6 +116,31 @@
line-height: 1.3;
}
.plan-chip-block {
display: flex;
flex-direction: column;
gap: 2px;
text-align: left;
width: 100%;
}
.plan-chip-line {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.plan-chip-project {
font-size: 12px;
font-weight: 600;
color: var(--text, #1f2937);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
}
.plan-toolbar {
display: flex;
gap: 12px;