Minor style fix in gallery view.
[redakcja.git] / src / wiki / templates / wiki / tabs / gallery_view.html
1 {% load i18n %}
2 <div id="side-gallery">
3     <!-- gallery toolbar -->
4   <div class="navbar navbar-dark bg-secondary">
5     <div class="btn-toolbar">
6       <div class="btn-group">
7         <button class="btn btn-info start-page" alt="{% trans "Go to first image of this part" %}" title="{% trans "Go to first image of this part" %}">
8           ⇤
9         </button>
10         <button class="btn btn-info previous-page" title="{% trans "Previous" %}">
11           ⯇
12         </button>
13       </div>
14       <div class="input-group">
15         <input type="text" size="1" maxlength="3" value="0" class="page-number form-control" />
16         <div class="input-group-append">
17           <div class="input-group-text" id="imagesCount">/0</div>
18         </div>
19       </div>
20       <div class="btn-group">
21         <button class="btn btn-info next-page" title="{% trans "Next" %}">
22           ⯈
23         </button>
24       </div>
25       <div class="btn-group ml-2">
26         <button class="btn btn-info zoom-in">+</button>
27         <button class="btn btn-info zoom-out">&mdash;</button>
28       </div>
29     </div>
30   </div>
31     <div class="error_message alert alert-danger ml-4 mr-4 mt-4">
32     </div>
33     <div class="gallery-image">
34         <img src="{{MEDIA_URL}}images/empty.png" alt="no image" />
35     </div>
36 </div>