6 /* placeholder for stuff like $.find('.spinner').detach() */
10 background-image: url('<%= asset_path('spinner_32px.gif') %>');
11 background-repeat: no-repeat;
28 /* Chrome and Firefox, at least in Linux, render a horrible shaky
29 mess -- better not to bother.
31 animation-name: rotateThis;
32 animation-duration: 2s;
33 animation-iteration-count: infinite;
34 animation-timing-function: linear;
35 -moz-animation-name: rotateThis;
36 -moz-animation-duration: 2s;
37 -moz-animation-iteration-count: infinite;
38 -moz-animation-timing-function: linear;
39 -ms-animation-name: rotateThis;
40 -ms-animation-duration: 2s;
41 -ms-animation-iteration-count: infinite;
42 -ms-animation-timing-function: linear;
43 -webkit-animation-name: rotateThis;
44 -webkit-animation-duration: 2s;
45 -webkit-animation-iteration-count: infinite;
46 -webkit-animation-timing-function: linear;
50 @keyframes rotateThis {
51 from { transform: rotate( 0deg ); }
52 to { transform: rotate( 360deg ); }
55 @-webkit-keyframes rotateThis {
56 from { -webkit-transform: rotate( 0deg ); }
57 to { -webkit-transform: rotate( 360deg ); }
60 @-moz-keyframes rotateThis {
61 from { -moz-transform: rotate( 0deg ); }
62 to { -moz-transform: rotate( 360deg ); }
65 @-ms-keyframes rotateThis {
66 from { -ms-transform: rotate( 0deg ); }
67 to { -ms-transform: rotate( 360deg ); }