Frontmatter
| id | 8508 |
| title | Implement Text Truncation for Portal TreeList |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Jan 10, 2026, 5:16 PM |
| updatedAt | Jan 10, 2026, 5:26 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8508 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 10, 2026, 5:26 PM |
Implement Text Truncation for Portal TreeList
tobiu assigned to @tobiu on Jan 10, 2026, 5:26 PM

tobiu
Jan 10, 2026, 5:26 PM
Input from Gemini 3 Pro:
✦ I have implemented the CSS text truncation for
TreeListitems by addingflex: 1,overflow: hidden,text-overflow: ellipsis, andwhite-space: nowrapto.neo-list-item-content. I also added3pxright padding to nested list items to ensure text doesn't hit the edge visually. The changes were applied toresources/scss/src/apps/portal/shared/content/TreeList.scss.
tobiu closed this issue on Jan 10, 2026, 5:26 PM
Implement CSS text truncation for
TreeListitems in the Portal app. The calculated titles (e.g., ID + Date) can exceed the sidebar width. We need to applytext-overflow: ellipsis,overflow: hidden, andwhite-space: nowrapto the item content. Target file:resources/scss/src/apps/portal/shared/content/TreeList.scss. Focus on leaf nodes, but ensure folders also handle overflow gracefully if possible.