Frontmatter
| id | 8788 |
| title | Refine Portal News TreeList Dark Theme Styling |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Jan 18, 2026, 8:15 PM |
| updatedAt | Jan 18, 2026, 8:33 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8788 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8727 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 18, 2026, 8:33 PM |
Refine Portal News TreeList Dark Theme Styling

tobiu
Jan 18, 2026, 8:32 PM
Input from Gemini 3 Pro:
✦ I have implemented the Dark Theme styling refinements for the Portal News TreeList (Releases, Tickets, Blog).
Changes:
Ticket Model (
apps/portal/model/Ticket.mjs):
- Wrapped the ticket title in a
<span class="ticket-title">to allow for independent styling from the bold ID, matching the structure of Releases.TreeList SCSS (
resources/scss/src/apps/portal/shared/content/TreeList.scss):
- Refactored
.release-date,.blog-date, and the new.ticket-titleto use CSS variables for color.- Unified Styling: Applied
font-size: 90%,margin-left: 5px,position: relative, andtop: -1pxto.ticket-titleso it visually matches the rendering of release dates.- Removed Opacity: Removed
opacity: 0.8from.release-dateand.blog-datein favor of explicit color values.Theme Definitions:
- Dark Theme (
theme-neo-dark):
- Mapped meta content (dates, ticket titles) to
var(--white-off)(#ddddee).- Bold identifiers (ID, Version) inherit the default bright text color.
- Light Theme (
theme-neo-light):
- Mapped meta content to
rgba(0, 0, 0, 0.8)to preserve the original visual hierarchy.The result is a consistent, themable list presentation across all three content types.
tobiu assigned to @tobiu on Jan 18, 2026, 8:32 PM
tobiu added parent issue #8727 on Jan 18, 2026, 8:32 PM
tobiu closed this issue on Jan 18, 2026, 8:33 PM
Objective: Refine the visual hierarchy of the TreeList navigation in the Portal App's News section (Releases, Tickets, Blog) for the Dark Theme.
Decision: Use
var(--white-off)(#ddddee) for secondary content instead of opacity to ensure visual consistency with Markdown content.Tasks:
apps/portal/model/Ticket.mjsto wrap the ticket title in a<span>with a class (.ticket-title).resources/scss/src/apps/portal/shared/content/TreeList.scss.opacity: 0.8from.release-dateand.blog-date.resources/scss/theme-neo-dark/apps/portal/shared/content/TreeList.scss..release-date,.blog-date, and.ticket-titleto usevar(--white-off).