This commit is contained in:
@ -3498,15 +3498,11 @@ body.logged-in .insights-chart-card.card:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.client-note-cell {
|
.client-note-cell {
|
||||||
max-width: 220px;
|
max-width: 280px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.client-note-text {
|
.client-note-text {
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-line-clamp: 3;
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
|||||||
@ -742,7 +742,7 @@ function clientRowHTML(c) {
|
|||||||
});
|
});
|
||||||
const note = String(c.note || '').trim();
|
const note = String(c.note || '').trim();
|
||||||
const noteCell = note
|
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>`;
|
: `<td class="client-note-cell client-note-empty">—</td>`;
|
||||||
|
|
||||||
return `
|
return `
|
||||||
|
|||||||
Reference in New Issue
Block a user