# HG changeset patch # User Mads Kiilerich # Date 2017-06-11 15:02:09 # 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 --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 @@ -1930,12 +1930,13 @@ BIN_FILENODE = 6 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 @@ BIN_FILENODE = 6 padding: 0; } -#graph_content .log-container { - position: relative; -} - #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 @@ -111,7 +111,6 @@ ${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): @@ -167,7 +166,6 @@ ${self.repo_context_bar('changelog', c.f %endif
-
%endfor diff --git a/kallithea/templates/compare/compare_cs.html b/kallithea/templates/compare/compare_cs.html --- a/kallithea/templates/compare/compare_cs.html +++ b/kallithea/templates/compare/compare_cs.html @@ -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: