Show unsent echomails in cyan not red
This commit is contained in:
parent
59af68dca8
commit
2316663dac
4
public/oldschool/css/main.css
vendored
4
public/oldschool/css/main.css
vendored
@ -82,6 +82,10 @@ strong.success {
|
|||||||
color: #0e0;
|
color: #0e0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
strong.info {
|
||||||
|
color: #7cc;
|
||||||
|
}
|
||||||
|
|
||||||
strong.gray {
|
strong.gray {
|
||||||
color: #565656;
|
color: #565656;
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user