-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(react-nav): only display actions on hover #34634
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
fix(react-nav): only display actions on hover #34634
Conversation
📊 Bundle size report
Unchanged fixtures
|
Pull request demo site: URL |
@@ -0,0 +1,7 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕵🏾♀️ visual changes to review in the Visual Change Report
vr-tests-react-components/Avatar Converged 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests-react-components/Avatar Converged.badgeMask.normal.chromium.png | 5 | Changed |
vr-tests-react-components/Positioning 2 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests-react-components/Positioning.Positioning end.chromium.png | 708 | Changed |
vr-tests-react-components/Positioning.Positioning end.updated 2 times.chromium.png | 14 | Changed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How the keyboard navigation should work for actions that are displayed only on hover? Right now they are focusable, but not visible:
Screen.Recording.2025-06-12.at.14.22.55.mov
@@ -92,6 +91,10 @@ const useStyles = makeStyles({ | |||
flexDirection: 'column', | |||
gridRowGap: tokens.spacingVerticalS, | |||
}, | |||
pinned: { | |||
opacity: 1, | |||
transform: 'translate3D(0, 0, 0)', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
transform: 'translate3D(0, 0, 0)', | |
transform: 'translate3d(0, 0, 0)', |
Previous Behavior
Nav split items were always displayed
New Behavior
Now only display split items on hover