Skip to content

Conversation

@kishansinghifs1
Copy link

@kishansinghifs1 kishansinghifs1 commented Oct 2, 2025

This PR adds a CSS fallback to ensure that resize handles are only visible on hover when autohide is enabled, fixing an issue where Chromium-based browsers (Chrome, Edge) always showed the handles regardless of hover state.

Fixes #3168

&.ui-resizable-disabled > .ui-resizable-handle,
&.ui-resizable-autohide > .ui-resizable-handle { display: none; }
/* Fallback for Chromium browsers: only show handles on hover when autohide is enabled */
&.ui-resizable-autohide:hover > .ui-resizable-handle {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

confused how this would fix 'always showing the resize' when it should be hidden until hover - here you are saying to show it on hover (instead of display:none).
I need a reproduceable case to verify this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

alwaysShowResizeHandle: 'mobile' is true on desktop

2 participants