# HG changeset patch # User Takumi IINO # Date 1389109663 -32400 # Node ID 3896debf0a11fd476a445176f59b03428c358611 # Parent 43cfad930d385c411657afa4a352f150a209f410 hgweb: infinite scroll support for gitweb style diff -r 43cfad930d38 -r 3896debf0a11 mercurial/templates/gitweb/graph.tmpl --- a/mercurial/templates/gitweb/graph.tmpl Wed Jan 08 00:35:03 2014 +0900 +++ b/mercurial/templates/gitweb/graph.tmpl Wed Jan 08 00:47:43 2014 +0900 @@ -108,4 +108,15 @@ | {changenav%navgraph} + + {footer} diff -r 43cfad930d38 -r 3896debf0a11 mercurial/templates/gitweb/shortlog.tmpl --- a/mercurial/templates/gitweb/shortlog.tmpl Wed Jan 08 00:35:03 2014 +0900 +++ b/mercurial/templates/gitweb/shortlog.tmpl Wed Jan 08 00:47:43 2014 +0900 @@ -32,7 +32,7 @@
 
- +
{entries%shortlogentry}
@@ -40,4 +40,19 @@ {changenav%navshort} + + {footer} diff -r 43cfad930d38 -r 3896debf0a11 mercurial/templates/static/style-gitweb.css --- 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; +}