# HG changeset patch # User Mads Kiilerich # Date 1497186129 -7200 # Node ID b99cd2bc7540bfde8f017ae0b8e7519e4d937365 # Parent 8dd57541a2f7106ff1466694c2c762ae3a333202 style: when dimming rows with merge changesets, only dim author and description, not tooltips Before, it was dimmed by setting opacity ... but opacity is inherited and can't be undone further down on the tooltip. diff -r 8dd57541a2f7 -r b99cd2bc7540 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sun Jun 11 15:02:08 2017 +0200 +++ b/kallithea/public/css/style.css Sun Jun 11 15:02:09 2017 +0200 @@ -1930,12 +1930,13 @@ border-color: #cdcdcd; } -#updaterevs-table tr.mergerow, -#graph_content_pr tr.mergerow, -#shortlog_data tr.mergerow, -#graph_content #changesets tr.out-of-range, -#graph_content #changesets tr.mergerow { - opacity: 0.6; +tr.mergerow > td.author .user, +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 { + color: #aaa !important; } #graph_content #changesets td { @@ -1989,10 +1990,6 @@ padding: 0; } -#graph_content .log-container { - position: relative; -} - #graph_content .container #singlerange, #graph_content .container .changeset_range { float: left; diff -r 8dd57541a2f7 -r b99cd2bc7540 kallithea/templates/changelog/changelog.html --- a/kallithea/templates/changelog/changelog.html Sun Jun 11 15:02:08 2017 +0200 +++ b/kallithea/templates/changelog/changelog.html Sun Jun 11 15:02:09 2017 +0200 @@ -111,7 +111,6 @@ -
${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): @@ -167,7 +166,6 @@ %endif
-
%endfor diff -r 8dd57541a2f7 -r b99cd2bc7540 kallithea/templates/compare/compare_cs.html --- a/kallithea/templates/compare/compare_cs.html Sun Jun 11 15:02:08 2017 +0200 +++ b/kallithea/templates/compare/compare_cs.html Sun Jun 11 15:02:09 2017 +0200 @@ -65,10 +65,10 @@ ${cs.date} - %if c.visual.use_gravatar: - ${h.gravatar_div(h.email_or_none(cs.author), size=14)} - %endif -
${h.person(cs.author)}
+ + ${h.gravatar(h.email_or_none(cs.author), size=16)} + ${h.shorter(h.person(cs.author),22)} + ${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id), class_='changeset_hash')} %if cs.branch: @@ -78,7 +78,7 @@ - +
%for tag in cs.tags: