UI/UX Draggables now switch to a hand on hover, updated the UI in invoice quote and reccuring invoice so buttons do not wrap and are grouped. Seperated the Dragable button using a button link, did the same for tasks in tickets

This commit is contained in:
johnnyq
2025-05-28 21:22:21 -04:00
parent eeef63d1c3
commit a00f26d8a4
7 changed files with 106 additions and 119 deletions

View File

@@ -271,7 +271,7 @@ if (isset($_GET['project_id'])) {
</div>
<div class="row">
<div class="col-md-8">
<div class="col-md-9">
<!-- Tickets card -->
<?php if (mysqli_num_rows($sql_tickets) > 0) { ?>
@@ -419,7 +419,7 @@ if (isset($_GET['project_id'])) {
<?php } ?>
</div>
<div class="col-md-4">
<div class="col-md-3">
<!-- Tasks Card -->
<?php if (mysqli_num_rows($sql_tasks) > 0) { ?>
@@ -435,10 +435,10 @@ if (isset($_GET['project_id'])) {
<tr>
<td>
<?php if ($task_completed_at) { ?>
<i class="far fa-fw fa-check-square text-primary mr-3"></i>
<i class="far fa-check-square text-primary mr-2"></i>
<?php } else { ?>
<a href="post.php?complete_task=<?php echo $task_id; ?>">
<i class="far fa-fw fa-square text-secondary mr-3"></i>
<i class="far fa-square text-secondary mr-2"></i>
</a>
<?php } ?>
<?php echo $task_name; ?>