refactoring: #10130

This commit is contained in:
Torkel Ödegaard
2017-12-08 12:17:09 +01:00
parent 974d4d9739
commit e03abde778
3 changed files with 24 additions and 3 deletions

View File

@@ -53,3 +53,12 @@
.react-grid-item.react-draggable-dragging.panel {
z-index: $zindex-dropdown;
}
// Disable animation on initial rendering and enable it when component has been mounted.
.react-grid-item.cssTransforms.panel {
transition-property: none;
}
.animated .react-grid-item.cssTransforms.panel {
transition-property: transform;
}