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 { .gridster .dragging {
-webkit-transition: none!important; z-index: 10!important;
-moz-transition: none!important; -webkit-transition: all 0s !important;
-o-transition: none!important; -moz-transition: all 0s !important;
transition: none!important; -o-transition: all 0s !important;
transition: all 0s !important;
} }
/* Uncomment this if you set helper : "clone" in draggable options */ /* Uncomment this if you set helper : "clone" in draggable options */