# HG changeset patch # User Takumi IINO # Date 1389109665 -32400 # Node ID 8a8626f2f72e75a783b1e3aaff2c3b6f5ba0132d # Parent b786754ba604786478797bace50587b19ad50102 hgweb: infinite scroll support for coal style diff -r b786754ba604 -r 8a8626f2f72e 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; +}