Skip to content

Commit

Permalink
Fixed CSS Spin rule for cross-browser compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
psychowood committed May 3, 2016
1 parent c2bdcc3 commit 1d9df02
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions app/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,12 @@ fieldset.action-toolbar .middle {
*/

.glyphicon-animate-spin {
-animation: spin 1s infinite linear;
-webkit-animation: spin2 1s infinite linear;
animation: spin 1s infinite linear;
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s linear 0 infinite;
}

@-webkit-keyframes spin2 {
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(360deg);}
}
Expand All @@ -438,6 +439,11 @@ fieldset.action-toolbar .middle {
to { transform: scale(1) rotate(360deg);}
}

@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}

/* .torrents-results button {
float: right;
border-left: 1px solid;
Expand Down

0 comments on commit 1d9df02

Please sign in to comment.