Fix footer solde colors not showing red/green
The generic totals-row rule (tr.figli-totals-row td) has higher specificity than the lone td.figli-solde-crediteur/-debiteur rules, so its neutral color always won in the footer even though soldeClass() was already applying the right class there.
This commit is contained in:
@@ -152,6 +152,15 @@ html.gin--dark-mode #figli-home-app {
|
||||
#figli-home-app td.figli-solde-debiteur {
|
||||
color: var(--figli-error);
|
||||
}
|
||||
/* Footer totals row sets its own `color` (higher specificity: tr.class +
|
||||
td beats a lone td.class) which otherwise overrides the solde colors
|
||||
above -- repeat them scoped to the row so red/green still wins there. */
|
||||
#figli-home-app tr.figli-totals-row td.figli-solde-crediteur {
|
||||
color: var(--figli-positive);
|
||||
}
|
||||
#figli-home-app tr.figli-totals-row td.figli-solde-debiteur {
|
||||
color: var(--figli-error);
|
||||
}
|
||||
|
||||
/* Single colored + bold anchor per row (Montant HT only) so entrées vs
|
||||
sorties are scannable at a glance -- everything else in the row (TTC,
|
||||
|
||||
Reference in New Issue
Block a user