paper: add simple animation to the loading indicator
authorAlexander Plavin <alexander@plav.in>
Fri, 06 Sep 2013 13:30:58 +0400
changeset 19761 b5c601035005
parent 19760 2ac4e89ad769
child 19762 e0666aaa1382
paper: add simple animation to the loading indicator
mercurial/templates/static/style-paper.css
--- a/mercurial/templates/static/style-paper.css	Fri Sep 06 13:30:58 2013 +0400
+++ b/mercurial/templates/static/style-paper.css	Fri Sep 06 13:30:58 2013 +0400
@@ -382,3 +382,24 @@
 .breadcrumb a {
     color: blue;
 }
+
+.scroll-loading {
+  -webkit-animation: change_color 1s linear 0s infinite alternate;
+  -moz-animation: change_color 1s linear 0s infinite alternate;
+  -o-animation: change_color 1s linear 0s infinite alternate;
+  animation: change_color 1s linear 0s infinite alternate;
+}
+
+@-webkit-keyframes change_color {
+  from { background-color: #A0CEFF; } to {  }
+}
+@-moz-keyframes change_color {
+  from { background-color: #A0CEFF; } to {  }
+}
+@-o-keyframes change_color {
+  from { background-color: #A0CEFF; } to {  }
+}
+@keyframes change_color {
+  from { background-color: #A0CEFF; } to {  }
+}
+