changeset 20257:8a8626f2f72e

hgweb: infinite scroll support for coal style
author Takumi IINO <trot.thunder@gmail.com>
date Wed, 08 Jan 2014 00:47:45 +0900
parents b786754ba604
children 3cd441353d6b
files mercurial/templates/static/style-coal.css
diffstat 1 files changed, 24 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
+}