Lighter icon [skip ci]

This commit is contained in:
James Cole 2016-11-05 18:57:45 +01:00
parent ee6e047596
commit 0edffd8ea1
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ class Transaction extends Twig_Extension
'splitJournalIndicator', function (int $journalId) { 'splitJournalIndicator', function (int $journalId) {
$count = TransactionModel::where('transaction_journal_id', $journalId)->whereNull('deleted_at')->count(); $count = TransactionModel::where('transaction_journal_id', $journalId)->whereNull('deleted_at')->count();
if ($count > 2) { if ($count > 2) {
return '<i class="fa fa-fw fa-share-alt-square" aria-hidden="true"></i>'; return '<i class="fa fa-fw fa-share-alt" aria-hidden="true"></i>';
} }
return ''; return '';

View File

@ -59,7 +59,7 @@
title="{{ Lang.choice('firefly.nr_of_attachments', journal.attachments|length, {count: journal.attachments|length}) }}"></i> title="{{ Lang.choice('firefly.nr_of_attachments', journal.attachments|length, {count: journal.attachments|length}) }}"></i>
{% endif %} {% endif %}
{% if journal.count_transactions > 2 %} {% if journal.count_transactions > 2 %}
<i class="fa fa-fw fa-share-alt-square" aria-hidden="true"></i> <i class="fa fa-fw fa-share-alt" aria-hidden="true"></i>
{% endif %} {% endif %}
</td> </td>