diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -1527,11 +1527,11 @@ BIN_FILENODE = 6 } tr.mergerow > td.author .user, -tr.mergerow > td.mid > .message, -tr.mergerow > td.mid > .message > a, +tr.mergerow > td.mid .message, +tr.mergerow > td.mid .message > a, tr.out-of-range > td.author .user, -tr.out-of-range > td.mid > .message, -tr.out-of-range > td.mid > .message > a { +tr.out-of-range > td.mid .message, +tr.out-of-range > td.mid .message > a { color: #aaa !important; } @@ -1587,6 +1587,11 @@ tr.out-of-range > td.mid > .message > a padding: 0; } +#graph_content .log-container { + position: relative; + margin-top: 8px; +} + #graph_content .container #singlerange, #graph_content .container .changeset_range { float: left; diff --git a/kallithea/templates/changelog/changelog.html b/kallithea/templates/changelog/changelog.html --- a/kallithea/templates/changelog/changelog.html +++ b/kallithea/templates/changelog/changelog.html @@ -109,6 +109,7 @@ ${self.repo_context_bar('changelog', c.f +
${h.urlify_text(cs.message, c.repo_name,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
%if c.comments.get(cs.raw_id): @@ -164,6 +165,7 @@ ${self.repo_context_bar('changelog', c.f %endif
+
%endfor