summaryrefslogtreecommitdiffstats
path: root/webapp/sass/utils/_animations.scss
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-03-16 20:31:21 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-03-17 05:42:38 +0500
commitf600b1dc2b39ff7b2b3d8450cba43ebb643adddd (patch)
treef42f5ec434f7517c828ae618fc51e2cc99f0aa5f /webapp/sass/utils/_animations.scss
parent809779a87f4380b6802314271b06540a31b83f53 (diff)
downloadchat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.tar.gz
chat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.tar.bz2
chat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.zip
Updating asss lint stuff with other scss improvements
Diffstat (limited to 'webapp/sass/utils/_animations.scss')
-rw-r--r--webapp/sass/utils/_animations.scss14
1 files changed, 8 insertions, 6 deletions
diff --git a/webapp/sass/utils/_animations.scss b/webapp/sass/utils/_animations.scss
index 767e30847..ffdbcb219 100644
--- a/webapp/sass/utils/_animations.scss
+++ b/webapp/sass/utils/_animations.scss
@@ -1,19 +1,21 @@
@charset 'UTF-8';
-@-webkit-keyframes spin2 {
+@keyframes spin {
from {
- -webkit-transform: rotate(0deg);
+ transform: scale(1) rotate(0deg);
}
+
to {
- -webkit-transform: rotate(360deg);
+ transform: scale(1) rotate(360deg);
}
}
-@keyframes spin {
+@keyframes highlight {
from {
- transform: scale(1) rotate(0deg);
+ @include alpha-property(background, $yellow, .5);
}
+
to {
- transform: scale(1) rotate(360deg);
+ background: none;
}
}