Changeset - 365708e66383
[Not reviewed]
default
0 3 0
Mads Kiilerich - 8 years ago 2017-06-25 18:26:49
mads@kiilerich.com
style: drop some unnecessary direct styling af gravatar

"files_history_box" is triggered from "Show Authors" on a file.
3 files changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/changeset/changeset_file_comment.html
Show inline comments
 
@@ -8,7 +8,7 @@
 
    <div class="comment-prev-next-links"></div>
 
    <div class="comment-wrapp">
 
      <div class="meta">
 
          ${h.gravatar_div(co.author.email, size=20, div_style="float:left")}
 
          ${h.gravatar_div(co.author.email, size=20)}
 
          <div class="user">
 
              ${co.author.full_name_and_username}
 
          </div>
kallithea/templates/files/files_history_box.html
Show inline comments
 
<div class="file_author">
 
    <div class="item">${h.literal(ungettext(u'%s author',u'%s authors',len(c.authors)) % ('<b>%s</b>' % len(c.authors))) }</div>
 
    %for email, user in c.authors:
 
      <div class="contributor pull-left" data-toggle="tooltip" title="${user}">
 
        ${h.gravatar_div(email, size=20, div_style="margin:1px")}
 
      </div>
 
      <span data-toggle="tooltip" title="${user}">
 
        ${h.gravatar_div(email, size=20)}
 
      </span>
 
    %endfor
 
</div>
kallithea/templates/summary/summary.html
Show inline comments
 
@@ -122,7 +122,7 @@ ${self.repo_context_bar('summary')}
 
            <li class="list-group-item">
 
               <a title="${_('Owner')} ${c.db_repo.owner.email}">
 
                <i class="icon-user"></i> ${c.db_repo.owner.username}
 
                ${h.gravatar_div(c.db_repo.owner.email, size=18, div_class="pull-right", div_title=c.db_repo.owner.full_name)}
 
                ${h.gravatar_div(c.db_repo.owner.email, size=18, div_class="pull-right")}
 
              </a>
 
            </li>
 
            <li class="list-group-item">
0 comments (0 inline, 0 general)