mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2024-12-29 06:51:31 +08:00
687006ba99
Firefox 16.0 supports unprefixed CSS animations, gradients, transforms, and transitions. Closes #3423 Closes #3424
17 lines
535 B
Plaintext
17 lines
535 B
Plaintext
// Mixins
|
|
// --------------------------
|
|
|
|
.fa-icon-rotate(@degrees, @rotation) {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
|
|
-webkit-transform: rotate(@degrees);
|
|
-ms-transform: rotate(@degrees);
|
|
transform: rotate(@degrees);
|
|
}
|
|
|
|
.fa-icon-flip(@horiz, @vert, @rotation) {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
|
|
-webkit-transform: scale(@horiz, @vert);
|
|
-ms-transform: scale(@horiz, @vert);
|
|
transform: scale(@horiz, @vert);
|
|
}
|