Skip to content

Commit 2d9676f

Browse files
committed
fix: allineamento valori tabelle
1 parent 0fbc7cc commit 2d9676f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

modules/stato_servizi/edit.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
<thead>
251251
<tr>
252252
<th>'.tr('Anno').'</th>
253-
<th class="text-center">
253+
<th class="text-right pr-3">
254254
'.tr('Doc.').'
255255
<i class="fa fa-question-circle-o text-muted" title="'.tr('Fatture attive e relative ricevute, fatture passive').'"></i>
256256
</th>
@@ -265,7 +265,7 @@
265265
<tfoot>
266266
<tr class="table-secondary">
267267
<td><strong>'.tr('Totale').'</strong></td>
268-
<td class="text-center"><strong id="fe_numero">-</strong></td>
268+
<td class="text-right pr-3"><strong id="fe_numero">-</strong></td>
269269
<td class="text-center"><strong id="fe_spazio">-</strong></td>
270270
</tr>
271271
</tfoot>
@@ -470,8 +470,8 @@ function aggiornaStatisticheFE(){
470470
471471
$("#elenco-fe").prepend(highlight + `
472472
<td>` + data["year"] + `</td>
473-
<td>` + data["number"] + `</td>
474-
<td>` + data["size"] + `</td>
473+
<td class="text-right pr-3">` + data["number"] + `</td>
474+
<td class="text-center">` + data["size"] + `</td>
475475
</tr>`);
476476
477477
}

0 commit comments

Comments
 (0)