Mercurial > libervia-templates
annotate sat_templates/templates/bulma/chat/reactions.html @ 401:0e454358ca49
bulma: update `bulma` to version `1.0.2`
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 02 Oct 2024 17:23:03 +0200 |
parents | 38635d393089 |
children |
rev | line source |
---|---|
385 | 1 <div class="reactions-container is-flex-wrap-wrap"> |
390
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
2 |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
3 {% if chat_type == "group" %} |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
4 {% set local_jid = own_local_jid %} |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
5 {% else %} |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
6 {% set local_jid = own_local_jid|bare_jid %} |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
7 {% endif %} |
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
8 |
385 | 9 {% for emoji, jids in reactions.items() %} |
390
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
10 {% set own_reaction = local_jid in jids %} |
385 | 11 <div |
390
38635d393089
bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
12 class="reaction box is-shadowless is-inline-flex is-align-items-center my-1 ml-0 mr-2 px-2 py-1 is-size-6 has-background-light has-border is-not-selectable {{ 'own-reaction' if own_reaction }}" |
385 | 13 data-jids='{{jids|tojson}}' |
14 > | |
15 <span class="emoji has-text-weight-semibold">{{ emoji }}</span> | |
16 <span class="counter">{{ jids|length }}</span> | |
17 </div> | |
18 {% endfor %} | |
19 </div> |