Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/gridstack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ $animation_speed: .3s !default;

&.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

display: block;
}

> .ui-resizable-ne,
> .ui-resizable-nw,
Expand Down