Skip to content

Commit bd26908

Browse files
committed
fix: visualizzazione tabelle da mobile
1 parent a42d987 commit bd26908

14 files changed

Lines changed: 15 additions & 15 deletions

File tree

modules/aggiornamenti/controlli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function initcard(controllo, success) {
212212
if (!success) {
213213
card += `
214214
<div class="card-body">
215-
<div class="table-responsive">
215+
<div class="table-responsive text-nowrap">
216216
<table class="table table-striped table-hover table-sm table-bordered">
217217
<thead>
218218
<tr>

modules/contratti/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
];
3434

3535
echo '
36-
<div class="table-responsive row-list">
36+
<div class="table-responsive text-nowrap row-list">
3737
<table class="table table-striped table-hover table-sm table-bordered">
3838
<thead>
3939
<tr>

modules/ddt/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
];
3434

3535
echo '
36-
<div class="table-responsive row-list">
36+
<div class="table-responsive text-nowrap row-list">
3737
<table class="table table-striped table-hover table-sm table-bordered">
3838
<thead>
3939
<tr>

modules/fatture/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
$colspan = $dir == 'entrata' ? '8' : '7';
3131

3232
echo '
33-
<div class="table-responsive row-list">
33+
<div class="table-responsive text-nowrap row-list">
3434
<table class="table table-striped table-hover table-sm table-bordered">
3535
<thead>
3636
<tr>

modules/interventi/ajax_tecnici.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
$prev_tecnico = $sessione['ragione_sociale'];
6868

6969
echo '
70-
<div class="table-responsive">
70+
<div class="table-responsive text-nowrap">
7171
<table class="table table-striped table-hover table-sm">
7272
<tr><th>';
7373

modules/interventi/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
];
3434

3535
echo '
36-
<div class="table-responsive row-list">
36+
<div class="table-responsive text-nowrap row-list">
3737
<table class="table table-striped table-hover table-sm table-bordered">
3838
<thead>
3939
<tr>

modules/ordini/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
];
4141

4242
echo '
43-
<div class="table-responsive row-list">
43+
<div class="table-responsive text-nowrap row-list">
4444
<table class="table table-striped table-hover table-sm table-bordered">
4545
<thead>
4646
<tr>

modules/partitario/dettagli_conto2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
if (!empty($terzo_livello)) {
5050
echo '
51-
<div class="table-responsive">
51+
<div class="table-responsive text-nowrap">
5252
<table class="table table-striped table-hover table-sm">
5353
<thead>
5454
<tr>

modules/preventivi/row-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
$colspan = '9';
2929

3030
echo '
31-
<div class="table-responsive row-list">
31+
<div class="table-responsive text-nowrap row-list">
3232
<table class="table table-striped table-hover table-sm table-bordered">
3333
<thead>
3434
<tr>

modules/utenti/edit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
if (!empty($utenti)) {
5959
echo '
60-
<div class="table-responsive">
60+
<div class="table-responsive text-nowrap">
6161
<table class="table table-hover table-sm table-striped">
6262
<tr>
6363
<th>'.tr('Nome utente').'</th>
@@ -196,7 +196,7 @@
196196
<div class="card-body">';
197197
if ($record['nome'] != 'Amministratori') {
198198
echo '
199-
<div class="table-responsive">
199+
<div class="table-responsive text-nowrap">
200200
<table class="table table-hover table-sm table-striped">
201201
<tr>
202202
<th>'.tr('Modulo').'</th>

0 commit comments

Comments
 (0)