display client notes in client list
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-07-17 17:33:48 +02:00
parent f90d5db40a
commit fc23f7a619
4 changed files with 71 additions and 5 deletions

View File

@ -3497,6 +3497,27 @@ body.logged-in .insights-chart-card.card:hover {
min-width: 200px;
}
.client-note-cell {
max-width: 220px;
vertical-align: middle;
}
.client-note-text {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
white-space: pre-wrap;
word-break: break-word;
font-size: 0.9rem;
line-height: 1.35;
color: var(--text-primary);
}
.client-note-empty {
color: var(--text-secondary);
}
.followup-note-cell .followup-note-input {
width: 100%;
margin-bottom: 8px;