1 Commits
v0.4 ... v0.4.1

4 changed files with 9 additions and 3 deletions

View File

@@ -13,6 +13,11 @@
border-radius: 3px;
}
/* Keep the signed amount together ("-R$450,00"); a break before it (after "Total:") is fine. */
.fb-amount {
white-space: nowrap;
}
.fb-total-debit {
color: #b94a48;
}
@@ -38,6 +43,7 @@
color: #fff;
font-weight: bold;
font-size: 1.1em;
white-space: nowrap;
}
.fb-badge-debit {

View File

@@ -62,7 +62,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '0.4.0';
return '0.4.1';
}
public function getPluginHomepage()

View File

@@ -20,5 +20,5 @@ if ($net > 0) {
}
?>
<div class="<?= $class ?>">
<?= t('total') ?> <?= $sign ?>R$<?= \Kanboard\Plugin\FinanceBuddy\Helper\FinanceHelper::money(abs($net)) ?>
<?= t('Total') ?>: <span class="fb-amount"><?= $sign ?>R$<?= \Kanboard\Plugin\FinanceBuddy\Helper\FinanceHelper::money(abs($net)) ?></span>
</div>

View File

@@ -1 +1 @@
FinanceBuddy v0.4
FinanceBuddy v0.4.1