# HG changeset patch # User Denis Laxalde # Date 2017-04-03 07:58:36 # Node ID 02eb52e9d413d7944e632b2281108cf03b2fc9fe # Parent 70377de005a0913714d4f61c2a4e0f55e0f3d48d hgweb: rely on a specific class to change cursor type in followlines UI The previous CSS rule would also apply in pages where followlines UI was not available (e.g. "changeset" view at /rev//). We insert a "followlines-select" class in JavaScript on actually selectable lines and restrict the CSS selector to use it. diff --git a/mercurial/templates/static/linerangelog.js b/mercurial/templates/static/linerangelog.js --- a/mercurial/templates/static/linerangelog.js +++ b/mercurial/templates/static/linerangelog.js @@ -22,6 +22,11 @@ document.addEventListener('DOMContentLoa sourcelines.children, function(x) { return x.tagName === 'SPAN' }); + // add a "followlines-select" class to change cursor type in CSS + for (var i = 0; i < spans.length; i++) { + spans[i].classList.add('followlines-select'); + } + var lineSelectedCSSClass = 'followlines-selected'; //** add CSS class on element in `from`-`to` line range */ diff --git a/mercurial/templates/static/style-paper.css b/mercurial/templates/static/style-paper.css --- a/mercurial/templates/static/style-paper.css +++ b/mercurial/templates/static/style-paper.css @@ -280,7 +280,7 @@ td.annotate:hover div.annotate-info { di background-color: #bfdfff; } -div.overflow pre.sourcelines > span:hover { +div.overflow pre.sourcelines > span.followlines-select:hover { cursor: cell; }