Align MM:SS to the right

This commit is contained in:
Daan Sprenkels
2018-11-23 15:58:42 +01:00
parent 36a344ab07
commit 08031fc225
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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 %}&nbsp;&nbsp;&nbsp;&nbsp;<a id="volume-down" class="glyphicon glyphicon-volume-down" href="#"></a>&nbsp;&nbsp;&nbsp;&nbsp;<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>