Mercurial > libervia-templates
view sat_templates/templates/bulma/dialogs/macros.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 | 2378084522e1 |
children |
line wrap: on
line source
{# macros for generic dialogs #} {% macro search_dialog(id=none, class='') %} <div{{ {'id': id}|xmlattr }} class="search_dialog dropdown is-active {{class}}"> <div class="dropdown-trigger"> {{ caller() }} </div> <div class="dropdown-menu" id="dropdown-menu" role="menu"> <div class="search_dialog__content dropdown-content"> </div> </div> </div> {% endmacro %}