Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorJulien Deswaef <judeswae@thoughtworks.com>2019-02-16 20:22:18 +0300
committerJulien Deswaef <judeswae@thoughtworks.com>2019-02-16 20:22:18 +0300
commitb2c513c47f4699d048a264821a3bc776770d4213 (patch)
tree6b5e5f75f7007e4db69f46c75a43c63509d9db8d /less
parent37503352749c272f4d5feb8da250c7723370218d (diff)
Merge pull request #158 from vanokhin/#140
Change animation names according to fa-css-prefix variable
Diffstat (limited to 'less')
-rw-r--r--less/animated.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/animated.less b/less/animated.less
index 66ad52a5b..6e4d1c3aa 100644
--- a/less/animated.less
+++ b/less/animated.less
@@ -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);