about summary refs log tree commit diff
diff options
context:
space:
mode:
authorblackle <isabelle@blackle-mori.com>2017-01-13 23:32:27 -0500
committerblackle <isabelle@blackle-mori.com>2017-01-14 17:56:24 -0500
commita67ffcbf56f48a28a30af8573666a7354fe6d66c (patch)
treefe59b97d8b3da1211ae46bcfdf3ee67a12928152
parentf63f0c46253f8d3c5524645160cbfe0c70cdec2f (diff)
Make boost button arrows spin around
-rw-r--r--app/assets/images/boost_sprite.pngbin0 -> 1756 bytes
-rw-r--r--app/assets/stylesheets/components.scss18
2 files changed, 18 insertions, 0 deletions
diff --git a/app/assets/images/boost_sprite.png b/app/assets/images/boost_sprite.png
new file mode 100644
index 000000000..02a07ee3a
--- /dev/null
+++ b/app/assets/images/boost_sprite.png
Binary files differdiff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss
index f1edfce9d..4cc5e409c 100644
--- a/app/assets/stylesheets/components.scss
+++ b/app/assets/stylesheets/components.scss
@@ -662,3 +662,21 @@
     border-bottom-color: #2b90d9;
   }
 }
+
+button i.fa-retweet {
+  height: 19px;
+  width: 24px;
+  background: image-url('boost_sprite.png') no-repeat;
+  background-position: 0 0;
+  transition: background-position 0.9s steps(11);
+  transition-duration: 0s;
+
+  &::before {
+    display: none !important;
+  }
+}
+
+button.active i.fa-retweet {
+  transition-duration: 0.9s;
+  background-position: 0 -209px;
+}