mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 09:02:20 +01:00
Make queue and request form not scrollable horizontally for better mobile usage.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
.search-input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.control-icons {
|
||||
min-width: 90px;
|
||||
}
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
<button id="request-button" class="btn btn-primary">Request</button>
|
||||
<br><br>
|
||||
<div id="request-container" class="hidden">
|
||||
<div class="table-responsive">
|
||||
<table id="request-table" class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
@ -44,11 +43,9 @@
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="queue-container">
|
||||
<h1 class="h1">Now Playing</h1>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
@ -56,7 +53,7 @@
|
||||
<th class="col-md-4">Title</th>
|
||||
<th class="col-md-2">Requested By</th>
|
||||
<th class="col-md-1">Time Left</th>
|
||||
<th class="col-md-1">Skip</th>
|
||||
<th class="col-md-1 control-icons">Control</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -71,9 +68,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<h1 class="h1">Queue</h1>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
@ -81,14 +76,13 @@
|
||||
<th class="col-md-4">Title</th>
|
||||
<th class="col-md-2">Requested By</th>
|
||||
<th class="col-md-1">Plays At</th>
|
||||
<th class="col-md-1">Control</th>
|
||||
<th class="col-md-1 control-icons">Control</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="queuebody">
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="{% static 'js/js.cookie-2.1.3.min.js' %}"></script>
|
||||
<script type="text/javascript" src="{% static 'js/queue.js' %}"></script>
|
||||
|
||||
Reference in New Issue
Block a user