Mercurial > libervia-templates
view sat_templates/templates/bulma/components/url_preview_control.html @ 382:c573917ce388
bulma (call): redesign of call box:
- hang up button has be moved next to other action buttons, and is now just an icon with
no text, this save room and is coherent with usual A/V calls UIs
- actions buttons (mute, desktop sharing, camera switching, hang up) and local video have
been redesign to avoid overlapping on small screen. Local video is now a little higher.
- remore video border has been suppressed
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 18 Aug 2023 18:01:31 +0200 |
parents | 095bd5b34080 |
children | 941e4006ab6e |
line wrap: on
line source
{% block url_preview %} <div class="notification is-info is-light m-5"> <div class="content"> <h4 class="title is-4">{% trans %}URL Preview{% endtrans %}</h4> <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> <div class="buttons"> <a class="button is-link action_go_to_settings" href="#"> <span class="icon"> {{ icon('wrench') }} </span> <span>{% trans %}Go to Settings{% endtrans %}</span> </a> <button class="button is-primary action_fetch_preview"> <span class="icon"> {{ icon('eye') }} </span> <span>{% trans %}Fetch Preview{% endtrans %}</span> </button> </div> </div> </div> {% endblock url_preview %}