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 |
|
rev |
line source |
406
|
1 {% if position == 'center' %} |
|
2 <div class="modal"> |
403
|
3 <div class="modal-background"></div> |
|
4 <div class="modal-content"> |
406
|
5 {# Center modal content goes here #} |
403
|
6 </div> |
|
7 </div> |
406
|
8 {% else %} |
|
9 <div class="modal-panel"> |
|
10 <div class="modal-panel-background"></div> |
|
11 <div class="modal-panel-container"> |
|
12 {# Side panel content goes here #} |
|
13 </div> |
|
14 </div> |
|
15 {% endif %} |