annotate sat_templates/templates/bulma/chat/reactions_details.html @ 388:dc83f45625b3
bulma (file, components): fix color fo icons:
icons have no color specified anymore for a while, and use the color of parent elements.
As they are often used in a `<a>` element (to work without javascript), they are often
using a link color. This commit change a few icons to use a dark color instead.
author |
Goffi <goffi@goffi.org> |
date |
Sun, 10 Dec 2023 10:55:09 +0100 |
parents |
941e4006ab6e |
children |
|
rev |
line source |
385
|
1 {% import 'components/avatar.html' as avatar with context %} |
|
2 |
|
3 <div class="reacting-users-list"> |
|
4 {% for jid in reacting_jids %} |
|
5 <div class="reacting-user-item is-flex is-align-items-center mb-2"> |
|
6 {{ avatar.avatar(jid, "is-24x24") }} |
|
7 <span class="reacting-user-nickname ml-2"> |
|
8 {{ identities[jid].nicknames[0] if identities[jid].nicknames else jid }} |
|
9 </span> |
|
10 </div> |
|
11 {% endfor %} |
|
12 </div> |