diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -1564,6 +1564,7 @@ display:block; float:right; text-align:center; min-width:15px; +cursor: help; } .right .changes .added { diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html +++ b/rhodecode/templates/changelog/changelog.html @@ -58,9 +58,22 @@
- ${len(cs.removed)} - ${len(cs.changed)} - ${len(cs.added)} + + <%! + def changed_tooltip(cs): + if cs: + pref = ': ' + suf = '' + if len(cs) > 30: + suf='
and %s more' % (len(cs) - 30) + return pref+'
'.join([x.path for x in cs[:30]]) + suf + else: + return 'No Files' + %> + + ${len(cs.removed)} + ${len(cs.changed)} + ${len(cs.added)}
%if len(cs.parents)>1: