Implemented css working indicator
This commit is contained in:
parent
e1b9e41c44
commit
d3903c4b1e
@ -18,8 +18,8 @@ define([
|
|||||||
$workingIndicatorElt = $(".working-indicator");
|
$workingIndicatorElt = $(".working-indicator");
|
||||||
for (var i = 0; i < 4; i++) {
|
for (var i = 0; i < 4; i++) {
|
||||||
$workingIndicatorElt.append($('<div class="bar">').css({
|
$workingIndicatorElt.append($('<div class="bar">').css({
|
||||||
'animation-delay': '0.' + (i*2) + 's',
|
'animation-delay': (i*2/10).toPrecision(3) + 's',
|
||||||
'-webkit-animation-delay': '0.' + (i*2) + 's',
|
'-webkit-animation-delay': (i*2/10).toPrecision(3) + 's',
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -343,7 +343,6 @@ a {
|
|||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
background-color: @btn-success-color;
|
background-color: @btn-success-color;
|
||||||
opacity: 0;
|
|
||||||
animation: indicator 0.6s ease-out infinite;
|
animation: indicator 0.6s ease-out infinite;
|
||||||
-webkit-animation: indicator 0.6s ease-out infinite; /* Safari and Chrome */
|
-webkit-animation: indicator 0.6s ease-out infinite; /* Safari and Chrome */
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user