1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00

Update status colors

This commit is contained in:
FreeScout 2018-09-26 22:17:37 -07:00
parent 465a2d30b5
commit a86ad76a10
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ class Conversation extends Model
public static $status_colors = [
self::STATUS_ACTIVE => '#71c171',
self::STATUS_PENDING => '#9598a1',
self::STATUS_PENDING => '#aaaeb7',
self::STATUS_CLOSED => '#808080',
self::STATUS_SPAM => '#de6864',
];

View File

@ -90,7 +90,7 @@
<td align="right" valign="top">
<table border="0" cellspacing="0" cellpadding="5" style="margin-top: 5px;">
<tr>
<td height="10" bgcolor="{{ $conversation->getStatusColor() }}" style="color:#ffffff; font-family:Arial, 'Helvetica Neue', Helvetica, Tahoma, sans-serif; line-height:12px; font-size:12px; margin-top: 3px;border-radius: 2px; @if ($conversation->status == App\Conversation::STATUS_PENDING)border: 1px solid #ccc; color: #727d87;@endif">{{ strtoupper($conversation->getStatusName()) }}</td>
<td height="10" bgcolor="{{ $conversation->getStatusColor() }}" style="color:#ffffff; font-family:Arial, 'Helvetica Neue', Helvetica, Tahoma, sans-serif; line-height:12px; font-size:12px; margin-top: 3px;border-radius: 2px; {{--@if ($conversation->status == App\Conversation::STATUS_PENDING)border: 1px solid #ccc; color: #727d87;@endif--}}">{{ strtoupper($conversation->getStatusName()) }}</td>
</tr>
</table>
@if ($conversation->user_id)