mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-03-20 04:59:03 +09:00
25 lines
987 B
Plaintext
25 lines
987 B
Plaintext
<dialog class="lightbox" aria-label="Image Viewer (Press escape to close)" data-lightbox-target="dialog" data-action="close->lightbox#reset">
|
|
<img src="" class="lightbox__image" data-lightbox-target="zoomedImage" />
|
|
|
|
<form method="dialog" class="lightbox__btn">
|
|
<button class="btn">
|
|
<%= image_tag "remove.svg", aria: { hidden: "true" } %>
|
|
<span class="for-screen-reader">Close image viewer</span>
|
|
</button>
|
|
</form>
|
|
|
|
<a href="" class="lightbox__btn--download btn hide-in-ios-pwa" data-lightbox-target="download">
|
|
<%= image_tag "download.svg", aria: { hidden: "true" } %>
|
|
<span class="for-screen-reader">Download file</span>
|
|
</a>
|
|
|
|
<button class="lightbox__btn--share btn"
|
|
data-controller="web-share"
|
|
data-action="web-share#share"
|
|
data-web-share-files-value=""
|
|
data-lightbox-target="share">
|
|
<%= image_tag "share.svg", aria: { hidden: "true" } %>
|
|
<span class="for-screen-reader">Share file</span>
|
|
</button>
|
|
</dialog>
|