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 @@ -2578,6 +2578,12 @@ BIN_FILENODE = 6 font-size: 10px; } +#graph_content_pr .compare_view_commits .expand_commit, +#graph_content .container .expand_commit { + width: 24px; + cursor: pointer; +} + #graph_content #changesets .container .right { width: 120px; padding-right: 0px; diff --git a/rhodecode/templates/compare/compare_cs.html b/rhodecode/templates/compare/compare_cs.html --- a/rhodecode/templates/compare/compare_cs.html +++ b/rhodecode/templates/compare/compare_cs.html @@ -36,7 +36,7 @@ -
${h.urlify_commit(cs.message, c.repo_name)}
+
${h.urlify_commit(cs.message, c.repo_name)}
%endfor diff --git a/rhodecode/tests/functional/test_compare.py b/rhodecode/tests/functional/test_compare.py --- a/rhodecode/tests/functional/test_compare.py +++ b/rhodecode/tests/functional/test_compare.py @@ -42,7 +42,7 @@ def _commit_change(repo, filename, conte def _commit_div(sha, msg): - return """
%s
""" % (sha, msg) + return """
%s
""" % (sha, msg) class TestCompareController(TestController):