mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2024-12-26 13:31:31 +08:00
Changes animation names according to fa-css-prefix variable. Fixes #140
This commit is contained in:
parent
ea10916556
commit
2f819ebcbf
@ -2,16 +2,16 @@
|
||||
// --------------------------
|
||||
|
||||
.@{fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
-webkit-animation: ~'@{fa-css-prefix}-spin' 2s infinite linear;
|
||||
animation: ~'@{fa-css-prefix}-spin' 2s infinite linear;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
-webkit-animation: ~'@{fa-css-prefix}-spin' 1s infinite steps(8);
|
||||
animation: ~'@{fa-css-prefix}-spin' 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
@-webkit-keyframes ~'@{fa-css-prefix}-spin' {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
@ -22,7 +22,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
@keyframes ~'@{fa-css-prefix}-spin' {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
|
@ -2,16 +2,16 @@
|
||||
// --------------------------
|
||||
|
||||
.#{$fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
-webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
||||
animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
-webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
||||
animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
@-webkit-keyframes #{$fa-css-prefix}-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
@ -22,7 +22,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
@keyframes #{$fa-css-prefix}-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
|
Loading…
Reference in New Issue
Block a user