mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 21:02:24 +01:00
Align MM:SS to the right
This commit is contained in:
@ -189,7 +189,7 @@ function renderQueue(playNextAt, now)
|
||||
|
||||
$('.queuebody:last-child').append('<tr><td class="artist">' + artist
|
||||
+ '</td><td class="title">' + title + '</td><td class="hidden-xs requested-by">' + requestedBy
|
||||
+ '</td><td class="hidden-xs plays-at">' + showTime
|
||||
+ '</td><td class="hidden-xs plays-at" style="text-align: right;">' + showTime
|
||||
+ '</td><td>' + '<a href="#" class="glyphicon glyphicon-arrow-up'
|
||||
+ (canMoveSongs && id !== 0 ? '' : ' invisible')
|
||||
+ '" onclick="return moveUp(' + song.id
|
||||
|
||||
@ -56,7 +56,7 @@
|
||||
<th class="col-md-4">Artist</th>
|
||||
<th class="col-md-4">Title</th>
|
||||
<th class="col-md-2 hidden-xs">Requested By</th>
|
||||
<th class="col-md-1 hidden-xs">Time Left</th>
|
||||
<th class="col-md-1 hidden-xs" style="text-align: right;">Time Left</th>
|
||||
<th class="col-md-1 control-icons">Control</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -65,7 +65,7 @@
|
||||
<td class="artist"></td>
|
||||
<td class="title"></td>
|
||||
<td class="requested-by hidden-xs"></td>
|
||||
<td class="time-left hidden-xs"></td>
|
||||
<td class="time-left hidden-xs" style="text-align: right;"></td>
|
||||
<td>
|
||||
<a id="skip" href="#"></a>{% if perms.queues.can_control_volume %} <a id="volume-down" class="glyphicon glyphicon-volume-down" href="#"></a> <a id="volume-up" class="glyphicon glyphicon-volume-up" href="#"></a>{% endif %}
|
||||
</td>
|
||||
@ -79,7 +79,7 @@
|
||||
<th class="col-md-4">Artist</th>
|
||||
<th class="col-md-4">Title</th>
|
||||
<th class="col-md-2 hidden-xs">Requested By</th>
|
||||
<th id="queue-time-header" class="col-md-1 hidden-xs">Plays At</th>
|
||||
<th id="queue-time-header" class="col-md-1 hidden-xs" style="text-align: right;">Plays At</th>
|
||||
<th class="col-md-1 control-icons">Control</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
Reference in New Issue
Block a user