frontend Order Section Update

This commit is contained in:
Utkarsh Khedkar
2025-11-26 23:07:12 +05:30
parent bebe0711f4
commit 04b00c9db8
18 changed files with 3604 additions and 1334 deletions

View File

@@ -394,8 +394,8 @@
border-color: #8b5cf6 !important;
}
/* Action Button - Centered */
.btn-primary {
/* Entry Button - Centered */
.btn-entry {
background: linear-gradient(135deg, #3492f8 55%, #1256cc 110%);
border: none;
border-radius: 6px;
@@ -410,13 +410,15 @@
align-items: center;
justify-content: center;
gap: 4px;
text-decoration: none;
}
.btn-primary:hover {
.btn-entry:hover {
background: linear-gradient(135deg, #46b4fd 55%, #226ad6 110%);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(52, 146, 248, 0.4);
color: white;
text-decoration: none;
}
/* Amount Styling - Centered */
@@ -593,7 +595,7 @@
justify-content: center;
}
.table tbody tr td .btn-primary {
.table tbody tr td .btn-entry {
margin: 0 auto;
}
@@ -729,7 +731,7 @@
border: 1px solid #2469d6;
}
.mobile-action-btn.edit {
.mobile-action-btn.entry {
background: linear-gradient(135deg, #3492f8 55%, #1256cc 110%);
color: white;
border: none;
@@ -785,7 +787,7 @@
font-size: 10px;
}
.btn-primary {
.btn-entry {
padding: 4px 8px;
font-size: 11px;
}
@@ -987,8 +989,8 @@
<td>
<a href="{{ route('admin.invoices.edit', $invoice->id) }}"
class="btn btn-sm btn-primary">
<i class="bi bi-pencil"></i> Edit
class="btn-entry">
<i class="bi bi-pencil"></i> Entry
</a>
</td>
</tr>
@@ -1062,8 +1064,8 @@
<a href="#" class="mobile-action-btn view open-invoice-popup" data-id="{{ $invoice->id }}">
<i class="bi bi-eye"></i> View
</a>
<a href="{{ route('admin.invoices.edit', $invoice->id) }}" class="mobile-action-btn edit">
<i class="bi bi-pencil"></i> Edit
<a href="{{ route('admin.invoices.edit', $invoice->id) }}" class="mobile-action-btn entry">
<i class="bi bi-pencil"></i> Entry
</a>
</div>
</div>