column total on its own full-width line; Total: black (v1.0.4)

This commit is contained in:
2026-07-08 09:19:07 -03:00
parent 305ee59477
commit 5ba4029912
4 changed files with 16 additions and 11 deletions

View File

@@ -2,13 +2,17 @@
* FinanceBuddy styles.
*/
/* Per-column net total in the column header (its own line, subtle pill). */
/* Per-column net total: its own full-width line under the column title (clears the right-floated
task count), so a wide amount never overflows the column. Keep the background pill (theme-safe
contrast). "Total:" is black; only the amount span is colored by sign. */
.fb-column-total {
display: inline-block;
display: block;
clear: both;
margin-top: 3px;
padding: 0 5px;
font-weight: bold;
font-size: 0.95em;
color: #000;
background: rgba(0, 0, 0, 0.05);
border-radius: 3px;
}

View File

@@ -77,7 +77,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '1.0.3';
return '1.0.4';
}
public function getPluginHomepage()

View File

@@ -1,7 +1,8 @@
<?php
// Per-column net total in the column header (credits - debits). Shown in every column of an
// enabled board, including "total R$0,00" -- never hidden on zero. Server-side, re-renders on
// every board refresh.
// enabled board, including "Total: R$0,00" -- never hidden on zero. Server-side, re-renders on
// every board refresh. Rendered on its own full-width line under the title; "Total:" stays the
// default (black) and only the amount is colored by sign.
if (empty($column['project_id']) || ! $this->FinanceHelper->isEnabled($column['project_id'])) {
return;
}
@@ -9,16 +10,16 @@ if (empty($column['project_id']) || ! $this->FinanceHelper->isEnabled($column['p
$net = $this->FinanceHelper->columnNet($column);
if ($net > 0) {
$class = 'fb-column-total fb-total-credit';
$amount_class = 'fb-total-credit';
$sign = '+';
} elseif ($net < 0) {
$class = 'fb-column-total fb-total-debit';
$amount_class = 'fb-total-debit';
$sign = '-';
} else {
$class = 'fb-column-total fb-total-zero';
$amount_class = 'fb-total-zero';
$sign = '';
}
?>
<div class="<?= $class ?>">
<?= t('Total') ?>: <span class="fb-amount"><?= $sign ?>R$<?= \Kanboard\Plugin\FinanceBuddy\Helper\FinanceHelper::money(abs($net)) ?></span>
<div class="fb-column-total">
<?= t('Total') ?>: <span class="fb-amount <?= $amount_class ?>"><?= $sign ?>R$<?= \Kanboard\Plugin\FinanceBuddy\Helper\FinanceHelper::money(abs($net)) ?></span>
</div>

View File

@@ -1 +1 @@
FinanceBuddy v1.0.3
FinanceBuddy v1.0.4