debug
Deploy HouseHub / deploy (push) Successful in 2s

This commit is contained in:
Cedric
2026-05-12 12:05:28 +02:00
parent 19ab75f7df
commit 3e344f4c1c
7 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -424,7 +424,7 @@ input[type="number"] {
}
.prev-salary-table td {
padding: 8px 12px;
border-bottom: 1px solid #f1f5f9;
border-bottom: 1px solid var(--border-light);
text-align: center;
}
@@ -444,15 +444,15 @@ input[type="number"] {
}
.prev-alloc-table th {
padding: 6px 10px;
border-right: 1px solid #f1f5f9;
border-right: 1px solid var(--border-light);
white-space: nowrap;
text-align: center;
font-size: 0.9rem;
}
.prev-alloc-table td {
padding: 3px 10px;
border-bottom: 1px solid #f1f5f9;
border-right: 1px solid #f1f5f9;
border-bottom: 1px solid var(--border-light);
border-right: 1px solid var(--border-light);
white-space: nowrap;
text-align: center;
font-size: 0.9rem;
@@ -601,7 +601,7 @@ tr:hover .row-actions {
.recap-table th,
.recap-table td {
padding: 10px 15px;
border-bottom: 1px solid #f1f5f9;
border-bottom: 1px solid var(--border-light);
text-align: center;
font-size: 0.95rem;
}
+1 -1
View File
@@ -113,7 +113,7 @@ $totalRevenus = 0;
$rowClass = ($item['category'] === 'income') ? 'row-income' : 'row-expense';
if ($item['is_estimate']) $rowClass .= ' row-estimate';
?>
<tr class="<?= $rowClass ?>" style="border-bottom:1px solid #f1f5f9;">
<tr class="<?= $rowClass ?>" style="border-bottom:1px solid var(--border-light);">
<td style="padding:15px;">
<strong><?= htmlspecialchars($item['name']) ?></strong>
<?= $item['is_estimate'] ? ' <small style="color:#64748b;">('.tr('bud_est_short').')</small>' : '' ?>