Fixed scrolling of the database tab

This commit is contained in:
Jorge Rincon 2023-05-24 13:03:31 +02:00
parent 5a9fcbde95
commit b422bf75b2
3 changed files with 15 additions and 3 deletions

View File

@ -1070,7 +1070,7 @@ if (is_ajax()) {
<p class="about-last-p"><span>'.$db_info->data->dbSize->name.'</span></p> <p class="about-last-p"><span>'.$db_info->data->dbSize->name.'</span></p>
</th> </th>
<th style="width: 50%;"> <th style="width: 50%;">
<p class="about-last-p">'.$db_info->data->dbSize->value.'</p> <p class="about-last-p" style="font-size: 10pt;">'.$db_info->data->dbSize->value.'</p>
</th> </th>
</tr> </tr>
@ -1084,7 +1084,7 @@ if (is_ajax()) {
<p><span>'.$db_fragmentation->data->tablesFragmentationMax->name.'</span></p> <p><span>'.$db_fragmentation->data->tablesFragmentationMax->name.'</span></p>
</th> </th>
<th style="width: 50%;"> <th style="width: 50%;">
<p>'.$db_fragmentation->data->tablesFragmentationMax->value.'</p> <p style="font-size: 10pt;">'.$db_fragmentation->data->tablesFragmentationMax->value.'</p>
</th> </th>
</tr> </tr>
<tr> <tr>
@ -1092,7 +1092,7 @@ if (is_ajax()) {
<p><span>'.$db_fragmentation->data->tablesFragmentationValue->name.'</span></p> <p><span>'.$db_fragmentation->data->tablesFragmentationValue->name.'</span></p>
</th> </th>
<th style="width: 50%;"> <th style="width: 50%;">
<p>'.$db_fragmentation->data->tablesFragmentationValue->value.'</p> <p style="font-size: 10pt;">'.$db_fragmentation->data->tablesFragmentationValue->value.'</p>
</th> </th>
</tr> </tr>
<tr> <tr>

View File

@ -11557,6 +11557,12 @@ p.trademark-copyright {
overflow: hidden; overflow: hidden;
} }
#tab-database {
height: 80%;
overflow: auto;
width: 96%;
}
.item_status_tree_view { .item_status_tree_view {
position: absolute; position: absolute;
top: 7px; top: 7px;

View File

@ -1389,6 +1389,12 @@ p.trademark-copyright {
overflow: hidden; overflow: hidden;
} }
#tab-database {
height: 80%;
overflow: auto;
width: 96%;
}
button.buttonButton, button.buttonButton,
button.submitButton { button.submitButton {
box-shadow: 0px 3px 6px #111; box-shadow: 0px 3px 6px #111;