Round corners on gravatars.

(imported from commit 858bfa920f42e366daa2fa4422a20e41ff11238e)
This commit is contained in:
Waseem Daher 2012-09-27 14:55:53 -04:00
parent b58e2ee575
commit 0f8f60f30d
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<b>{{ user_profile.user.email }}</b> <a href="/settings/change-email">(change?)</a><br /><br /> <b>{{ user_profile.user.email }}</b> <a href="/settings/change-email">(change?)</a><br /><br />
<div id="Photo"> <div id="Photo">
<label>Photo</label> <label>Photo</label>
<img src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=30"/> <img class="img-rounded" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=80"/>
<a href="http://gravatar.com">(change at Gravatar.com)</a> <a href="http://gravatar.com">(change at Gravatar.com)</a>
<br /> <br />
</div> </div>

View File

@ -22,7 +22,7 @@
<tr zid="{{id}}" id="{{dom_id}}" class="zephyr_row" onmouseover="select_zephyr_by_id({{id}});"> <tr zid="{{id}}" id="{{dom_id}}" class="zephyr_row" onmouseover="select_zephyr_by_id({{id}});">
<td class="zephyr_recipient"> <td class="zephyr_recipient">
{{#include_sender}} {{#include_sender}}
<img class="profile_picture" src="https://secure.gravatar.com/avatar/{{gravatar_hash}}?d=identicon&s=30"/> <img class="img-rounded profile_picture" src="https://secure.gravatar.com/avatar/{{gravatar_hash}}?d=identicon&s=30"/>
{{/include_sender}} {{/include_sender}}
</td> </td>
<td class="pointer"><p></p></td> <td class="pointer"><p></p></td>