mirror of https://github.com/docker/docs.git
Merge pull request #1739 from ruurd/master
Only animate the running and restarting icon five times. Continuously…
This commit is contained in:
commit
055f864f79
|
|
@ -219,7 +219,7 @@
|
||||||
.at2x('runningwave.png', @container-state-size, @container-state-size);
|
.at2x('runningwave.png', @container-state-size, @container-state-size);
|
||||||
-webkit-animation-name: translatewave;
|
-webkit-animation-name: translatewave;
|
||||||
-webkit-animation-duration: 7.0s;
|
-webkit-animation-duration: 7.0s;
|
||||||
-webkit-animation-iteration-count: infinite;
|
-webkit-animation-iteration-count: 5;
|
||||||
-webkit-animation-timing-function: linear;
|
-webkit-animation-timing-function: linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
-webkit-animation-delay: -1s;
|
-webkit-animation-delay: -1s;
|
||||||
-webkit-animation-name: rotate;
|
-webkit-animation-name: rotate;
|
||||||
-webkit-animation-duration: 3.0s;
|
-webkit-animation-duration: 3.0s;
|
||||||
-webkit-animation-iteration-count: infinite;
|
-webkit-animation-iteration-count: 5;
|
||||||
-webkit-animation-timing-function: linear;
|
-webkit-animation-timing-function: linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue