From 981895eab4fe25388cd2fdd96e3b11d44eb6e111 Mon Sep 17 00:00:00 2001 From: vieron Date: Mon, 23 Jul 2012 21:44:51 +0200 Subject: [PATCH] default value for css transitions is: "all 0s" not "none" --- src/jquery.gridster.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/jquery.gridster.css b/src/jquery.gridster.css index 9a6a633ba..6b5460e36 100644 --- a/src/jquery.gridster.css +++ b/src/jquery.gridster.css @@ -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 */