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 @@ -2667,6 +2667,14 @@ BIN_FILENODE = 6 text-decoration: none; } +#repos_list_wrap .revision-link, +#shortlog_data .revision-link { + font-weight: normal !important; + font-family: monospace; + font-size: 12px; + color: #577632; +} + .revision-link { color: #3F6F9F; font-weight: bold !important; 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 @@ -39,7 +39,7 @@ %endif -
${h.show_id(cs)}
+ ${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))} diff --git a/kallithea/templates/data_table/_dt_elements.html b/kallithea/templates/data_table/_dt_elements.html --- a/kallithea/templates/data_table/_dt_elements.html +++ b/kallithea/templates/data_table/_dt_elements.html @@ -95,7 +95,7 @@ <%def name="revision(name,rev,tip,author,last_msg)">
%if rev >= 0: -
${'r%s:%s' % (rev,h.short_id(tip))}
+ ${'r%s:%s' % (rev,h.short_id(tip))} %else: ${_('No changesets yet')} %endif