Files
zulip/templates/zerver/lightbox_overlay.html
Brock Whittaker 2775707a67 hotkeys: Add lightbox image feed with controls.
This adds an image feed that you can scroll through with hotkeys
in the lightbox.

The left and right arrow keys along with the left and right arrows
will go to the prev/next image, and clicking on an image will also
take a user to that image.
2017-03-19 22:11:38 -07:00

27 lines
954 B
HTML

<div id="lightbox_overlay" class="overlay new-style" data-overlay="lightbox">
<div class="image-info-wrapper">
<div class="image-description">
<div class="title"></div>
<div class="user"></div>
</div>
<div class="exit">x</div>
<div class="image-actions">
<a class="button small open icon" target="_blank">
<span class="text">Open</span>
</a>
<a class="button small download icon" download>
<span class="text">Download</span>
</a>
</div>
<div class="clear-float"></div>
</div>
<div class="image-preview overlay-content"></div>
<div class="player-container"></div>
<div class="center">
<div class="arrow no-select" data-direction="prev">&lt;</div>
<div class="image-list"></div>
<div class="arrow no-select" data-direction="next">&gt;</div>
</div>
</div>