default value for css transitions is: "all 0s" not "none"

This commit is contained in:
vieron
2012-07-23 21:44:51 +02:00
parent f650da8586
commit 981895eab4

View File

@@ -40,10 +40,11 @@
}
.gridster .dragging {
-webkit-transition: none!important;
-moz-transition: none!important;
-o-transition: none!important;
transition: none!important;
z-index: 10!important;
-webkit-transition: all 0s !important;
-moz-transition: all 0s !important;
-o-transition: all 0s !important;
transition: all 0s !important;
}
/* Uncomment this if you set helper : "clone" in draggable options */