diff --git a/mercurial/templates/paper/graph.tmpl b/mercurial/templates/paper/graph.tmpl --- a/mercurial/templates/paper/graph.tmpl +++ b/mercurial/templates/paper/graph.tmpl @@ -56,7 +56,7 @@ files, or words in the commit message</d <noscript><p>The revision graph only works with JavaScript-enabled browsers.</p></noscript> <div id="wrapper"> -<ul id="nodebgs"></ul> +<ul id="nodebgs" class="stripes2"></ul> <canvas id="graph" width="480" height="{canvasheight}"></canvas> <ul id="graphnodes"></ul> </div> @@ -75,7 +75,7 @@ graph.vertex = function(x, y, color, par this.ctx.arc(x, y, radius, 0, Math.PI * 2, true); this.ctx.fill(); - var bg = '<li class="bg parity' + parity + '"></li>'; + var bg = '<li class="bg"></li>'; var left = (this.bg_height - this.box_size) + (this.columns + 1) * this.box_size; var nstyle = 'padding-left: ' + left + 'px;'; diff --git a/tests/test-hgweb-empty.t b/tests/test-hgweb-empty.t --- a/tests/test-hgweb-empty.t +++ b/tests/test-hgweb-empty.t @@ -262,7 +262,7 @@ Some tests for hgweb in an empty reposit <noscript><p>The revision graph only works with JavaScript-enabled browsers.</p></noscript> <div id="wrapper"> - <ul id="nodebgs"></ul> + <ul id="nodebgs" class="stripes2"></ul> <canvas id="graph" width="480" height="12"></canvas> <ul id="graphnodes"></ul> </div> @@ -281,7 +281,7 @@ Some tests for hgweb in an empty reposit this.ctx.arc(x, y, radius, 0, Math.PI * 2, true); this.ctx.fill(); - var bg = '<li class="bg parity' + parity + '"></li>'; + var bg = '<li class="bg"></li>'; var left = (this.bg_height - this.box_size) + (this.columns + 1) * this.box_size; var nstyle = 'padding-left: ' + left + 'px;';