Horizontal scroll pri tabeli - Spremembe v nastavitve --> moj profil (popravek)

This commit is contained in:
tejagerjovic 2021-08-31 14:05:14 +02:00
parent a50d94bd07
commit 1b60491218
3 changed files with 37 additions and 9 deletions

View File

@ -45,6 +45,9 @@ class UserTrackingClass
// Izvoz v Excel // Izvoz v Excel
echo '<p>'.$lang['srv_survey_archives_tracking_last_changes'].'</p>'; echo '<p>'.$lang['srv_survey_archives_tracking_last_changes'].'</p>';
echo '<div id="table-tracking-wrapper1">';
echo '<div id="table-tracking-wrapper2">';
echo '<table id="tracking">'; echo '<table id="tracking">';
@ -72,6 +75,9 @@ class UserTrackingClass
echo '</table>'; echo '</table>';
echo '</div';
echo '</div';
echo '</fieldset>'; echo '</fieldset>';
echo '<br class="clr" />'; echo '<br class="clr" />';

View File

@ -29730,9 +29730,21 @@ table.analysis_reports > tbody > tr > td {
margin: 10px 30px; margin: 10px 30px;
} }
#div_archive_content.tracking table { #table-tracking-wrapper1 {
display: block; display: table;
table-layout: fixed;
width: 100%;
}
#table-tracking-wrapper2 {
display: table-cell;
overflow-x: auto; overflow-x: auto;
width: 100%;
}
#table-tracking-wrapper2 table {
width: 100%;
border-collapse: collapse;
white-space: nowrap; white-space: nowrap;
} }

View File

@ -1,8 +1,18 @@
// Zadnjih 25 sprememb tabela - horizontal scroll // Zadnjih 25 sprememb tabela - horizontal scroll
#div_archive_content.tracking { #table-tracking-wrapper1 {
table { display: table;
display: block; table-layout: fixed;
width: 100%;
}
#table-tracking-wrapper2 {
display: table-cell;
overflow-x: auto; overflow-x: auto;
width: 100%;
}
#table-tracking-wrapper2 table {
width: 100%;
border-collapse: collapse;
white-space: nowrap; white-space: nowrap;
} }
}