hgweb: infinite scroll support for coal style
authorTakumi IINO <trot.thunder@gmail.com>
Wed, 08 Jan 2014 00:47:45 +0900
changeset 20257 8a8626f2f72e
parent 20256 b786754ba604
child 20258 3cd441353d6b
hgweb: infinite scroll support for coal style
mercurial/templates/static/style-coal.css
--- a/mercurial/templates/static/style-coal.css	Thu Jan 16 09:23:31 2014 -0500
+++ b/mercurial/templates/static/style-coal.css	Wed Jan 08 00:47:45 2014 +0900
@@ -331,3 +331,27 @@
 .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 {  }
+}
+
+.scroll-loading-error {
+    background-color: #FFCCCC !important;
+}