annotate sat_templates/templates/bulma/chat/reactions.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 |
38635d393089 |
rev |
line source |
385
|
1 <div class="reactions-container is-flex-wrap-wrap"> |
|
2 {% for emoji, jids in reactions.items() %} |
|
3 <div |
|
4 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" |
|
5 data-jids='{{jids|tojson}}' |
|
6 > |
|
7 <span class="emoji has-text-weight-semibold">{{ emoji }}</span> |
|
8 <span class="counter">{{ jids|length }}</span> |
|
9 </div> |
|
10 {% endfor %} |
|
11 </div> |