Frontmatter
| id | 8033 |
| title | Create InterventionPanel.scss and Fix Selection Contrast |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Dec 5, 2025, 3:18 AM |
| updatedAt | Dec 5, 2025, 3:40 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8033 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 7918 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 5, 2025, 3:40 AM |
Create InterventionPanel.scss and Fix Selection Contrast
tobiu added parent issue #7918 on Dec 5, 2025, 3:19 AM
tobiu assigned to @tobiu on Dec 5, 2025, 3:20 AM

tobiu
Dec 5, 2025, 3:40 AM
Input from Gemini 2.5 pro:
✦ I have implemented the app-specific styling for the Intervention Panel, including contrast fixes for the Cyberpunk theme.
Implementation Details:
- Refactored Renderer:
InterventionPanel.mjsnow returns VDOM with classes (.agent-priority-warning) instead of inline styles.- Scoped Styles (
src):resources/scss/src/apps/agentos/InterventionPanel.scssdefines the base styles within the.agent-panel-intervention.neo-panelscope and handles the selection state logic via variables.- Theme Variables:
- Cyberpunk: Sets selected state text to
#000(Black) for high contrast against the Cyan background.- Standard Themes: Maintains original colors (Orange/Red) in both selected and unselected states (or matching defaults).
This ensures accessibility and visual consistency across themes.
tobiu closed this issue on Dec 5, 2025, 3:40 AM
Create the app-specific stylesheet for
AgentOS.view.InterventionPaneland address contrast issues for the priority column during row selection.Requirements:
InterventionPanel.mjsto use CSS classes (agent-priority-error,agent-priority-warning) instead of inline styles for the priority renderer.resources/scss/src/apps/agentos/InterventionPanel.scssto define the base styles for these priority classes.agent-priority-warning(Orange) changes color (e.g., to Black or Dark Brown) when the parent row is.neo-selected(Cyan background) to maintain readability.Rationale: Inline styles cannot be easily overridden by CSS selection states. Using classes allows us to react to the
neo-selectedstate of the grid row.