Mercurial > libervia-templates
view sat_templates/templates/default/components/block.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 | 03c8fd941c0c |
children |
line wrap: on
line source
{% macro separator(label, align='center') %} {# display a bloc separator @param label(unicode): label to show @param align(unicode): one of "left", "center", "right" #} <div class="block_separator"> {% if align in ('center', 'right') %} <div class="block_separator__line"></div> {% endif %} <div class="block_separator__label"> {{label}} </div> {% if align in ('center', 'left') %} <div class="block_separator__line"></div> {% endif %} </div> {% endmacro %} {% macro disco_icon_grid(disco_entities, icon_name) %} {# display discovered entities in a grid @param disco_entities: entities which mush have a name and url key or attribute @param icon_name: name of a defined icon #} <ul class="grid grid--center"> {% for disco_entity in disco_entities %} <li class='grid__item grid__item--medium grid__item--selectable'> <a href="{{disco_entity.url}}" class="items_vert--centered"> {{ icon(icon_name, cls='icon--block icon--medium') }} <span>{{ disco_entity.name }}</span> </a> </li> {% endfor %} </ul> {% endmacro %} {% macro interests_grid(interests, default_icon_name) %} {# display list of interests @param interests: list of interests @param default_icon_name: name of a defined icon to use when no thumb_url is available #} <ul class="grid grid--center"> {% for interest in interests %} <li class='grid__item grid__item--medium grid__item--selectable'> <a href="{{interest.url}}"> {% if interest.thumb_url %} <img class="img--small" src="{{interest.thumb_url}}"> {% else %} <div>{{ icon(default_icon_name, cls='icon--medium') }}</div> {% endif %} <span><em>{{ interest.name|default(_("unnamed")) }}</em></span> </a> </li> {% endfor %} </ul> {% endmacro %}