mirror of
https://github.com/timendum/Youtube-dl-WebUI.git
synced 2025-02-28 23:53:10 +08:00
Align delete button to right
This commit is contained in:
parent
de82c34fa9
commit
3bbd5f192d
1 changed files with 5 additions and 5 deletions
10
list.php
10
list.php
|
@ -33,7 +33,7 @@
|
|||
<tr>
|
||||
<th>Title</th>
|
||||
<th>Size</th>
|
||||
<th>Delete link</th>
|
||||
<th><span class="pull-right">Delete link</span></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -50,7 +50,7 @@
|
|||
echo "<td>".$f["name"]."</td>";
|
||||
}
|
||||
echo "<td>".$f["size"]."</td>";
|
||||
echo "<td><a href=\"./list.php?delete=".sha1($f["name"])."\" class=\"btn btn-danger btn-sm\">Delete</a></td>";
|
||||
echo "<td><a href=\"./list.php?delete=".sha1($f["name"])."\" class=\"btn btn-danger btn-sm pull-right\">Delete</a></td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
?>
|
||||
|
@ -74,7 +74,7 @@
|
|||
<tr>
|
||||
<th>Title</th>
|
||||
<th>Size</th>
|
||||
<th>Delete link</th>
|
||||
<th><span class="pull-right">Delete link</span></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -91,7 +91,7 @@
|
|||
echo "<td>".$f["name"]."</td>";
|
||||
}
|
||||
echo "<td>".$f["size"]."</td>";
|
||||
echo "<td><a href=\"./list.php?delete=".sha1($f["name"])."\" class=\"btn btn-danger btn-sm\">Delete</a></td>";
|
||||
echo "<td><a href=\"./list.php?delete=".sha1($f["name"])."\" class=\"btn btn-danger btn-sm pull-right\">Delete</a></td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
?>
|
||||
|
@ -106,4 +106,4 @@
|
|||
</div><!-- End container -->
|
||||
<?php
|
||||
require 'views/footer.php';
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue