Commit 83580ad2 by Oláh István Gergely

templates: fix big activity icons

parent 9382db65
...@@ -16,6 +16,11 @@ html { ...@@ -16,6 +16,11 @@ html {
margin-top: -4px; margin-top: -4px;
} }
.profile-avatar {
width: 24px;
height: 24px;
}
.navbar-fixed-top { .navbar-fixed-top {
border: 0px; border: 0px;
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
{% if user and user.pk %} {% if user and user.pk %}
{% if user.profile %} {% if user.profile %}
<img src="{{ user.profile.get_avatar_url }}" width="46px" height="46px" title=" <img class="profile-avatar" src="{{ user.profile.get_avatar_url }}" title="
{% endif %} {% endif %}
{% if user.get_full_name %}{{ user.get_full_name }}{% else %}{{ user.username }}{% endif %}{% if new_line %}<br />{% endif %} {% if user.get_full_name %}{{ user.get_full_name }}{% else %}{{ user.username }}{% endif %}{% if new_line %}<br />{% endif %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment