Bug ThingWorx Studio 8.2.2 animate Popup
In the latest version of ThingWorx Studio 8.2.2 the css for PopUp no longer works.
in the previous one I used the following CSS to animate the Popup window, after the update the show / Hide animation does not work anymore.
CSS Used
.twx-popup-container {
transition: -webkit-transform .5s cubic-bezier(.455,.03,.515,.955);
transition: transform .5s cubic-bezier(.455,.03,.515,.955);
transition: transform .5s cubic-bezier(.455,.03,.515,.955),-webkit-transform .5s cubic-bezier(.455,.03,.515,.955);
-webkit-transform: translateX(0) translateZ(0);
transform: translateY(0px) translateZ(0);
}
.twx-popup-container.hidden {
display: block !important;
-webkit-transform: translateX(250px) translateZ(0);
transform: translateY(-600px) translateZ(0);
}
Has something changed ?
😞
Giuseppe

