# HG changeset patch # User Mads Kiilerich # Date 1462317505 -7200 # Node ID f287754980cc3ec848ada0a058afdef7c6f08642 # Parent 74f0df038ccd12c261437d9d3833034323996805 templates: use the new gravatar_div diff -r 74f0df038ccd -r f287754980cc kallithea/public/css/style.css --- a/kallithea/public/css/style.css Wed May 04 01:18:25 2016 +0200 +++ b/kallithea/public/css/style.css Wed May 04 01:18:25 2016 +0200 @@ -426,12 +426,12 @@ padding: 10px 12px 8px; } -#header #header-inner #quick li span.icon { +#header #header-inner #quick li .icon { border-left: none; padding-left: 10px; } -#header #header-inner #quick li span.icon_short { +#header #header-inner #quick li .icon_short { top: 0; left: 0; border-left: none; @@ -439,8 +439,8 @@ padding: 8px 6px 4px; } -#header #header-inner #quick li span.icon img, -#header #header-inner #quick li span.icon_short img { +#header #header-inner #quick li .icon img, +#header #header-inner #quick li .icon_short img { vertical-align: middle; margin-bottom: 2px; } diff -r 74f0df038ccd -r f287754980cc kallithea/templates/admin/gists/edit.html --- a/kallithea/templates/admin/gists/edit.html Wed May 04 01:18:25 2016 +0200 +++ b/kallithea/templates/admin/gists/edit.html Wed May 04 01:18:25 2016 +0200 @@ -46,9 +46,7 @@
${h.form(h.url('edit_gist', gist_id=c.gist.gist_access_id), method='post', id='eform')}
-
- ${h.gravatar(c.authuser.email, size=32)} -
+ ${h.gravatar_div(c.authuser.email, size=32)}
diff -r 74f0df038ccd -r f287754980cc kallithea/templates/admin/gists/show.html --- a/kallithea/templates/admin/gists/show.html Wed May 04 01:18:25 2016 +0200 +++ b/kallithea/templates/admin/gists/show.html Wed May 04 01:18:25 2016 +0200 @@ -67,9 +67,7 @@
-
- ${h.gravatar(h.email_or_none(c.file_changeset.author), size=16)} -
+ ${h.gravatar_div(h.email_or_none(c.file_changeset.author), size=16)}
${h.person(c.file_changeset.author)} - ${_('created')} ${h.age(c.file_changeset.date)}
${h.urlify_commit(c.file_changeset.message,c.repo_name)}
diff -r 74f0df038ccd -r f287754980cc kallithea/templates/admin/my_account/my_account.html --- a/kallithea/templates/admin/my_account/my_account.html Wed May 04 01:18:25 2016 +0200 +++ b/kallithea/templates/admin/my_account/my_account.html Wed May 04 01:18:25 2016 +0200 @@ -24,9 +24,7 @@