blob: 5c84e774533541d7c3fc3a5447f78c012289a3d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.throbber {
-webkit-animation: throbber-animation 1s steps(36, end) 0 infinite;
background-image: url("../../../../../app/resources/throbber.png");
background-position: 0;
display: inline-block;
height: 16px;
width: 16px;
}
@-webkit-keyframes throbber-animation {
from {
background-position-x: 0;
}
to {
background-position-x: -576px;
}
}
|