Commit 6c2375e4 by Torkel Ödegaard Committed by GitHub

DashboardGrid: Fixed flickering while resizing (#21221)

parent 5addf9fa
......@@ -2,13 +2,14 @@
@import '~react-resizable/css/styles.css';
.react-resizable-handle {
display: none;
// this needs to use visibility and not display none in order not to cause resize flickering
visibility: hidden;
}
.react-grid-item {
&:hover {
.react-resizable-handle {
display: initial;
visibility: visible;
}
}
}
......@@ -47,7 +48,7 @@
}
.react-resizable-handle {
display: none !important;
display: none;
}
// the react-grid has a height transition
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment