Show unsent echomails in cyan not red
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m12s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m38s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2024-11-14 19:52:28 +11:00
parent 59af68dca8
commit 2316663dac
2 changed files with 5 additions and 1 deletions

View File

@ -82,6 +82,10 @@ strong.success {
color: #0e0; color: #0e0;
} }
strong.info {
color: #7cc;
}
strong.gray { strong.gray {
color: #565656; color: #565656;
} }

View File

@ -70,7 +70,7 @@ use App\Models\{Echomail,Netmail};
if ($item->pivot->sent_at) if ($item->pivot->sent_at)
return sprintf('<strong class="success" title="Sent: %s Packet: %s">%s</strong>',$item->pivot->sent_at,$item->pivot->sent_pkt,$item->ftn2d); return sprintf('<strong class="success" title="Sent: %s Packet: %s">%s</strong>',$item->pivot->sent_at,$item->pivot->sent_pkt,$item->ftn2d);
else else
return sprintf('<strong class="danger">%s</strong>',$item->ftn2d); return sprintf('<strong class="info">%s</strong>',$item->ftn2d);
} else { } else {
return sprintf('<strong class="highlight">%s</strong>',$item->ftn2d); return sprintf('<strong class="highlight">%s</strong>',$item->ftn2d);