Shorten update spinner fadeout on status page

Change-Id: Iba951db42ac50b8f7dfece7d1a4af4c2ffc26afc
This commit is contained in:
Joshua Hesketh 2014-03-21 18:44:22 +11:00
parent db8046eef8
commit 876ca51ac1
2 changed files with 3 additions and 3 deletions

View File

@ -438,7 +438,7 @@
$container.removeClass('zuul-container-loading');
setTimeout(function () {
$indicator.removeClass('zuul-spinner-on');
}, 550);
}, 500);
});
$jq.one('update-end', function () {

View File

@ -42,7 +42,7 @@ under the License.
.zuul-spinner,
.zuul-spinner:hover {
opacity: 0;
transition: opacity 3s ease-out;
transition: opacity 0.5s ease-out;
cursor: default;
pointer-events: none;
}
@ -50,7 +50,7 @@ under the License.
.zuul-spinner-on,
.zuul-spinner-on:hover {
opacity: 1;
transition-duration: 0.4s;
transition-duration: 0.2s;
cursor: progress;
}