Mercurial > libervia-templates
view sat_templates/templates/default/components/avatar.html @ 342:0d6826a73c0f
(bulma) CSS: fix content overflow in media object:
Overflow was sometimes breaking design with media object. This was notably the case when
viewing a list item with a long `<pre>` section, e.g. a ticket with a code pasted with long
lines). This patch fixes it.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 01 Oct 2021 17:37:40 +0200 |
parents | 1215a6e2385f |
children |
line wrap: on
line source
{% macro avatar(jid, class) %} {%- if identities is defined -%} {%- if identities[jid].avatar_basename %} <img class="avatar {{class}}" src="/cache/common/{{identities[jid].avatar_basename}}"> {% else %} <span class="avatar avatar--generated {{class}}"><span class="avatar__content">{{identities[jid].nicknames[0]|first|upper}}</span></span> {%- endif -%} {%- endif -%} {% endmacro %}