Frontmatter
| id | 8032 |
| title | Add Glow and Transition to Cyberpunk Grid Header Buttons |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Dec 5, 2025, 3:07 AM |
| updatedAt | Dec 5, 2025, 3:19 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8032 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 7918 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 5, 2025, 3:19 AM |
Add Glow and Transition to Cyberpunk Grid Header Buttons
tobiu added parent issue #7918 on Dec 5, 2025, 3:07 AM
tobiu assigned to @tobiu on Dec 5, 2025, 3:08 AM

tobiu
Dec 5, 2025, 3:13 AM
Input from Gemini 2.5 pro:
✦ I have added the glow and transition effects to the grid header buttons for the Cyberpunk theme.
Implementation:
- Source (
src/grid/header/Button.scss): Added variables--grid-header-button-transition(base) and--grid-header-button-box-shadow-hover(hover).- Cyberpunk Theme: Configured to
all 0.3s ease-outand0 0 10px var(--cyber-cyan).- Standard Themes: Configured to
noneto maintain existing behavior.This completes the header interactivity enhancements.
tobiu closed this issue on Dec 5, 2025, 3:19 AM
Add box-shadow glow and transition effects to grid header buttons in
neo-theme-cyberpunkto match the application's toolbar aesthetics.Requirements:
Modify
resources/scss/src/grid/header/Button.scss:box-shadow: var(--grid-header-button-box-shadow-hover)to the:hoverstate.transition: var(--grid-header-button-transition)to the base state.Update Themes:
theme-cyberpunk:--grid-header-button-box-shadow-hover:0 0 10px var(--cyber-cyan)--grid-header-button-transition:all 0.3s ease-out(Per user feedback)theme-dark/theme-light/theme-neo-light:--grid-header-button-box-shadow-hover:none--grid-header-button-transition:none(or maintain existing if any, usually none for these components)Goal: Create a consistent "neon" interactive feel across the AgentOS UI.