This commit is contained in:
@ -3498,15 +3498,11 @@ body.logged-in .insights-chart-card.card:hover {
|
||||
}
|
||||
|
||||
.client-note-cell {
|
||||
max-width: 220px;
|
||||
max-width: 280px;
|
||||
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;
|
||||
|
||||
@ -742,7 +742,7 @@ function clientRowHTML(c) {
|
||||
});
|
||||
const note = String(c.note || '').trim();
|
||||
const noteCell = note
|
||||
? `<td class="client-note-cell" title="${esc(note)}"><span class="client-note-text">${esc(note)}</span></td>`
|
||||
? `<td class="client-note-cell"><span class="client-note-text">${esc(note)}</span></td>`
|
||||
: `<td class="client-note-cell client-note-empty">—</td>`;
|
||||
|
||||
return `
|
||||
|
||||
Reference in New Issue
Block a user