style(ui): remove glow from invoice dots in orders table

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-04-06 15:48:37 +00:00
parent 47fe7efd92
commit 9977ec28cf
2 changed files with 3 additions and 3 deletions

View File

@@ -516,8 +516,8 @@ function diffDots(o, mobile) {
function invoiceDot(order) {
if (order.status !== 'IMPORTED' && order.status !== 'ALREADY_IMPORTED') return '';
if (order.invoice && order.invoice.facturat) return '<span class="dot dot-green" title="Facturat"></span>';
return '<span class="dot dot-red" title="Nefacturat"></span>';
if (order.invoice && order.invoice.facturat) return '<span class="dot dot-green" style="box-shadow:none" title="Facturat"></span>';
return '<span class="dot dot-red" style="box-shadow:none" title="Nefacturat"></span>';
}
// ── Refresh Invoices ──────────────────────────────