Reduce CPU load from css animations
On osx this cuts the load in half. We can probably do better with js-based animations but let this be a quick fix for now.
This commit is contained in:
parent
bbcb12dd1e
commit
7256fe9b6f
2 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@
|
|||
}
|
||||
.sand {
|
||||
background: $color;
|
||||
animation: moveDown linear;
|
||||
animation: moveDown steps(100);
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
&:after {
|
||||
|
|
|
@ -1539,7 +1539,7 @@ li.entry .error-icon-container {
|
|||
left: 0; }
|
||||
.ios .hourglass .sand {
|
||||
background: #999;
|
||||
animation: moveDown linear;
|
||||
animation: moveDown steps(100);
|
||||
animation-fill-mode: forwards; }
|
||||
.ios .hourglass:after {
|
||||
-webkit-mask: url("/images/hourglass_empty.svg") no-repeat center;
|
||||
|
@ -1619,7 +1619,7 @@ li.entry .error-icon-container {
|
|||
left: 0; }
|
||||
.android .outgoing .hourglass .sand {
|
||||
background: #999;
|
||||
animation: moveDown linear;
|
||||
animation: moveDown steps(100);
|
||||
animation-fill-mode: forwards; }
|
||||
.android .outgoing .hourglass:after {
|
||||
-webkit-mask: url("/images/hourglass_empty.svg") no-repeat center;
|
||||
|
@ -1646,7 +1646,7 @@ li.entry .error-icon-container {
|
|||
left: 0; }
|
||||
.android .incoming .hourglass .sand {
|
||||
background: #fff;
|
||||
animation: moveDown linear;
|
||||
animation: moveDown steps(100);
|
||||
animation-fill-mode: forwards; }
|
||||
.android .incoming .hourglass:after {
|
||||
-webkit-mask: url("/images/hourglass_empty.svg") no-repeat center;
|
||||
|
|
Loading…
Reference in a new issue