Mercurial > libervia-templates
view sat_templates/templates/bulma/photo/item.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 | 7670752665e0 |
children |
line wrap: on
line source
<div class="column is-4 item" data-item='{{file|tojson}}'> <div class="card x-is-hoverable"> <div class="card-image is-photo-thumbnail-container is-flex has-items-centered has-background-light"> {% if file.mime_type[:5] == 'video' %} <a href="{{file.url}}" class="is-video-thumbnail-wrapper is-wrapping photo_thumb_click"> <img class="is-photo-thumbnail" src="{{file.thumb_url}}"> <div class="media_overlay_play is-flex has-items-centered"> <span class="icon"> <i class="icon-play-circled"></i> </span> </div> </a> {% else %} <a href="{{file.url}}" class="is-wrapping photo_thumb_click"> <img class="is-photo-thumbnail" src="{{file.thumb_url}}" alt="{{file.name}}"> </a> {% endif %} </div> <div class="card-content" onclick="clicked_mh_fix('{{'comments_panel'|next_gidx}}')"> <div class="level"> <div class="level-left"> {% if file.affiliation == "owner" or not file.affiliation and directory_affiliation == "owner" %} <div class="level-item is-size-7 x-is-hoverable-primary action_delete"> {{ icon('trash-empty', cls='icon is-small') }} </div> {% endif %} {% if directory_affiliation == "owner" %} <div class="level-item is-size-7 x-is-hoverable-primary action_cover"> {{ icon('picture', cls='icon is-small') }} </div> {% endif %} </div> <div class="level-right"> <div class="level-item is-size-7"> {% if file.comments_url is defined %} {% if file.comments_count %} <span class='comments__count'>{{file.comments_count}} </span> {% endif %} {{ icon('comment-empty', cls='icon is-small') }} {% endif %} </div> </div> </div> </div> </div> {% if uploading %} <progress class="progress is-info mt-4 has-background-white" value="0" max="100">0%</progress> {% else %} <div id='{{'comments_panel'|cur_gidx}}' class="mt-4 panel-drawer"> {% if file.comments %} {{ blog.show_items(file.comments['items'], expanded=true, dates_fmt='relative') }} {% endif %} <div class="comment_post mt-4"> {{- textbox.comment_or_login(service=file.comments_service, node=file.comments_node) -}} </div> </div> {% endif %} </div>