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 @@ -1417,6 +1417,10 @@ div.form div.fields div.field div.button padding: 5px; } +#content div.box table td.compact { + padding: 0; +} + #content div.box table tr.selected td { background: #FFC; } @@ -2582,6 +2586,7 @@ BIN_FILENODE = 6 overflow: hidden; padding: 0; margin: 0; + white-space: nowrap; } #graph_content .comments-container { diff --git a/kallithea/templates/changelog/changelog_summary_data.html b/kallithea/templates/changelog/changelog_summary_data.html --- a/kallithea/templates/changelog/changelog_summary_data.html +++ b/kallithea/templates/changelog/changelog_summary_data.html @@ -2,6 +2,8 @@ %if c.repo_changesets:
| + | ${_('Revision')} | ${_('Commit Message')} | ${_('Age')} | @@ -10,8 +12,7 @@|
|---|---|---|---|---|
|
-
+
|
+
%if c.statuses.get(cs.raw_id):
+
@@ -24,18 +25,21 @@
%endif
%endif
+
%if c.comments.get(cs.raw_id,[]):
|
+
- ${len(c.comments[cs.raw_id])}
+ ${len(c.comments[cs.raw_id])}
|
${h.show_id(cs)}-
${h.urlify_commit(h.chop_at(cs.message,'\n'),c.repo_name, h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
| |