Changeset - f6f6bf39ce64
[Not reviewed]
default
0 1 0
domruf - 8 years ago 2017-06-29 23:24:42
dominikruf@gmail.com
changeset range: move gravatar in front of revision link

In the past this was done by setting float:left on the gravatar.
This got lost during the partial bootstrap changes.
But the html layout should try to reflect the same order as the visual
representation. So this now does it in the html code.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/changeset/changeset_range.html
Show inline comments
 
@@ -69,14 +69,14 @@ ${self.repo_context_bar('changelog')}
 
    <%namespace name="diff_block" file="/changeset/diff_block.html"/>
 
    ${diff_block.diff_block_js()}
 
    %for cs in c.cs_ranges:
 
        <div class="panel-body">
 
          ## diff block
 
          <div class="h3">
 
          ${h.gravatar_div(h.email_or_none(cs.author), size=20)}
 
          <a data-toggle="tooltip" title="${cs.message}" href="${h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id)}">${h.show_id(cs)}</a>
 
            ${h.gravatar_div(h.email_or_none(cs.author), size=20)}
 
            <div class="right">
 
              <span class="logtags">
 
                %if len(cs.parents)>1:
 
                <span class="merge">${_('Merge')}</span>
 
                %endif
 
                %if h.is_hg(c.db_repo_scm_instance):
0 comments (0 inline, 0 general)