Mercurial > libervia-templates
annotate sat_templates/templates/bulma/components/url_preview_control.html @ 400:140690a18b63
call: group call design:
Design for group call (which is used for both group call and A/V conferences) has been
improved to:
- have a working fullscreen button;
- have a better display of peer users in grid, with responsive design;
- have a nicer design for peer user, and adding avatar/nickname as overlay on the bottom
of the video stream;
- add a way to (un)pin a peer user, which make is appear on the whole width on top of the
grid.
rel 448
HG<S-Insert>: changed sat_templates/templates/bulma/call/group_peer.html
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 06 Aug 2024 23:50:17 +0200 |
parents | 941e4006ab6e |
children |
rev | line source |
---|---|
364 | 1 {% block url_preview %} |
385
941e4006ab6e
bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
364
diff
changeset
|
2 <div class="notification is-info is-light my-5"> |
364 | 3 <div class="content"> |
4 <h4 class="title is-4">{% trans %}URL Preview{% endtrans %}</h4> | |
5 <p class="mb-4">{% trans %}To protect your privacy, we don't automatically fetch URL previews. If you want to preview this URL, just hit the "Fetch Preview" button. You can customize this preference in your settings.{% endtrans %}</p> | |
6 <div class="buttons"> | |
7 <a class="button is-link action_go_to_settings" href="#"> | |
8 <span class="icon"> | |
9 {{ icon('wrench') }} | |
10 </span> | |
11 <span>{% trans %}Go to Settings{% endtrans %}</span> | |
12 </a> | |
13 <button class="button is-primary action_fetch_preview"> | |
14 <span class="icon"> | |
15 {{ icon('eye') }} | |
16 </span> | |
17 <span>{% trans %}Fetch Preview{% endtrans %}</span> | |
18 </button> | |
19 </div> | |
20 </div> | |
21 </div> | |
22 {% endblock url_preview %} |