view sat_templates/templates/bulma/chat/extra_menu.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 8b990c78d4b5
children
line wrap: on
line source

<div class="extra-menu-popup">
    <ul class="menu-list">
        <li class="action_quote">
            <a href="#" class="">
                {{ icon('quote-left', cls='icon is-small') }} {% trans %}Quote{% endtrans %}
            </a>
        </li>
        {% if edit %}
            <li class="action_edit">
                <a href="#" class="">
                    {{ icon('pencil', cls='icon is-small') }} {% trans %}Edit{% endtrans %}
                </a>
            </li>
        {% endif %}
        {% if retract %}
            <li class="action_retract">
                <a href="#" class="">
                    {{ icon('trash-empty', cls='icon is-small has-text-danger') }} {% trans %}Retract{% endtrans %}
                </a>
            </li>
        {% endif %}
    </ul>
</div>