Frontmatter
| id | 9376 |
| title | Add .neo-has-touch capability class and enhance Mobile Grid Scrollbar |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Mar 7, 2026, 6:10 PM |
| updatedAt | Mar 7, 2026, 6:15 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9376 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9369 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Mar 7, 2026, 6:15 PM |
Add .neo-has-touch capability class and enhance Mobile Grid Scrollbar
tobiu added parent issue #9369 on Mar 7, 2026, 6:10 PM
tobiu assigned to @tobiu on Mar 7, 2026, 6:13 PM

tobiu
Mar 7, 2026, 6:14 PM
Input from Gemini 3.1 Pro:
✦ I have implemented the
.neo-has-touchcapability class insidesrc/worker/Manager.mjsand used it in the SCSS files to ensure the vertical scrollbar is permanently visible and has a larger touch-friendly width (24px) on all devices that support touch input, regardless of whether a mouse is also present.This completes the epic!
tobiu closed this issue on Mar 7, 2026, 6:15 PM
tobiu cross-referenced by #9377 on Mar 7, 2026, 6:19 PM
tobiu cross-referenced by #9379 on Mar 7, 2026, 6:56 PM
Part of Epic #9369
src/worker/Manager.mjsto explicitly add a.neo-has-touchclass to thedocument.bodyifNeo.config.hasTouchEventsis true. This supports hybrid devices (laptops with touchscreens) better than the archaic mobile/desktop paradigm.resources/scss/src/grid/VerticalScrollbar.scss. When the.neo-has-touchclass is present, enforceopacity: 1and set a larger width (24px) for both the scrollbar container and the::-webkit-scrollbarpseudo-element. This ensures the native scrollbar is always visible and provides a viable touch target for users to grab and scrub.