Explorar o código

HUE-3289 [assist] The action icons stay a bit too long after hover

Johan Ahlen %!s(int64=9) %!d(string=hai) anos
pai
achega
78cfc3530f

+ 3 - 3
desktop/core/src/desktop/static/desktop/js/ko.hue-bindings.js

@@ -127,15 +127,15 @@
       var inside = false;
 
       var show = function () {
-        $element.find(selector).fadeTo("normal", 1);
+        $element.find(selector).fadeTo("fast", 1);
         clearTimeout(hideTimeout);
       };
 
       var hide = function () {
         if (! inside) {
           hideTimeout = window.setTimeout(function () {
-            $element.find(selector).fadeTo("normal", 0);
-          }, 50);
+            $element.find(selector).fadeTo("fast", 0);
+          }, 10);
         }
       };