Mercurial > libervia-templates
comparison sat_templates/templates/bulma/chat/input_extra_menu.html @ 411:f7a434581872 default tip
chat: Add forward, rich editing and extra recipients:
- There is a new "forward" menu in message. For now, a simple prompt ask for recipient JID.
- A new "extra" menu is available next to input field. Inside there are 2 items for now:
add extra recipient, and toggle rich edit mode.
- Extra recipient option add a field to add an email-like "to", "cc" or "bcc" recipients.
- Rich edit let use rich styling such as bold, italic, underline, etc.
rel 461
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 04 Jul 2025 17:33:22 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
410:a5588ea3bcd6 | 411:f7a434581872 |
---|---|
1 <div class="menu extra-menu-popup"> | |
2 <ul class="menu-list"> | |
3 <li class="action_toggle_rich_editor"> | |
4 <a href="#"> | |
5 {% if rich_edit %} | |
6 {{ icon('pencil', cls='icon is-small') }} {% trans %}Switch to Simple Edition{% endtrans %} | |
7 {% else %} | |
8 {{ icon('pen-to-square', cls='icon is-small') }} {% trans %}Switch to Rich Edition{% endtrans %} | |
9 {% endif %} | |
10 </a> | |
11 </li> | |
12 <li class="action_toggle_extra_recipients"> | |
13 <a href="#"> | |
14 {{ icon('regular envelope', cls='icon is-small') }} {% trans %}Add Recipients{% endtrans %} | |
15 </a> | |
16 </li> | |
17 </ul> | |
18 </div> |