fix: mobile hover and cascading collapse in SlotProgressTimeline#380
Merged
fix: mobile hover and cascading collapse in SlotProgressTimeline#380
Conversation
- Add useCanHover() hook to detect touch-only devices and disable hover tooltips on mobile - Fix visibility filter to hide all descendants of collapsed spans, not just direct children - Prevents orphaned child spans from appearing when parent is collapsed - Tested on desktop and verified cascading collapse behavior works correctly
23a6562 to
5c85a12
Compare
Extract the useCanHover hook from SlotProgressTimeline to src/hooks/useCanHover/ for reuse across the app. This hook detects if the device supports hover interactions using the CSS media query (hover: hover).
mattevans
approved these changes
Jan 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixed two issues in the SlotProgressTimeline component:
Changes
useCanHover()hook usingwindow.matchMedia('(hover: hover)')to detect touch devices