Mercurial > libervia-templates
view sat_templates/templates/bulma/components/search_item.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 | 5646df8bd391 |
children | 941e4006ab6e |
line wrap: on
line source
{% import 'components/avatar.html' as avatar with context %} <div class="column is-2-desktop is-6-touch"> <div class="card x-is-hoverable"> <a href="{{url}}"> <div class="card-image is-flex has-items-centered px-1 py-1"> {{ avatar.avatar(item.entity, "is-64x64") }} </div> <div class="card-content has-text-centered has-text-shortenable px-1 py-1"> <span>{{identities[item.entity].nicknames[0] if identities[item.entity].nicknames else item.entity}}</span> {% if not options.no_group %} <div class="search-item__group-tags is-flex is-justify-content-center mt-2"> {% if item.groups %} <div class="tags"> {% for group in item.groups %} <span class="tag is-rounded is-light">{{ group }}</span> {% endfor %} </div> {% endif %} </div> {% endif %} </div> </a> {% block call %}{% endblock %} </div> </div> p