annotate sat_templates/templates/bulma/dialogs/modal.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 049a0638f6fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
406
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
1 {% if position == 'center' %}
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
2 <div class="modal">
403
65c53ec5e777 Bulma: complete redesign:
Goffi <goffi@goffi.org>
parents:
diff changeset
3 <div class="modal-background"></div>
65c53ec5e777 Bulma: complete redesign:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 <div class="modal-content">
406
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
5 {# Center modal content goes here #}
403
65c53ec5e777 Bulma: complete redesign:
Goffi <goffi@goffi.org>
parents:
diff changeset
6 </div>
65c53ec5e777 Bulma: complete redesign:
Goffi <goffi@goffi.org>
parents:
diff changeset
7 </div>
406
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
8 {% else %}
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
9 <div class="modal-panel">
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
10 <div class="modal-panel-background"></div>
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
11 <div class="modal-panel-container">
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
12 {# Side panel content goes here #}
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
13 </div>
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
14 </div>
049a0638f6fa chat: Keywords handling:
Goffi <goffi@goffi.org>
parents: 403
diff changeset
15 {% endif %}