diff mercurial/templates/static/style-gitweb.css @ 20254:3896debf0a11

hgweb: infinite scroll support for gitweb style
author Takumi IINO <trot.thunder@gmail.com>
date Wed, 08 Jan 2014 00:47:43 +0900
parents 93493746c89a
children d1933c2e3c8c
line wrap: on
line diff
--- a/mercurial/templates/static/style-gitweb.css	Wed Jan 08 00:35:03 2014 +0900
+++ b/mercurial/templates/static/style-gitweb.css	Wed Jan 08 00:47:43 2014 +0900
@@ -167,3 +167,27 @@
 .block {
     border-top: 1px solid #d9d8d1;
 }
+
+.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;
+}