Fixed scrolling of the database tab
This commit is contained in:
parent
5a9fcbde95
commit
b422bf75b2
|
@ -1070,7 +1070,7 @@ if (is_ajax()) {
|
|||
<p class="about-last-p"><span>'.$db_info->data->dbSize->name.'</span></p>
|
||||
</th>
|
||||
<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>
|
||||
</tr>
|
||||
|
||||
|
@ -1084,7 +1084,7 @@ if (is_ajax()) {
|
|||
<p><span>'.$db_fragmentation->data->tablesFragmentationMax->name.'</span></p>
|
||||
</th>
|
||||
<th style="width: 50%;">
|
||||
<p>'.$db_fragmentation->data->tablesFragmentationMax->value.'</p>
|
||||
<p style="font-size: 10pt;">'.$db_fragmentation->data->tablesFragmentationMax->value.'</p>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1092,7 +1092,7 @@ if (is_ajax()) {
|
|||
<p><span>'.$db_fragmentation->data->tablesFragmentationValue->name.'</span></p>
|
||||
</th>
|
||||
<th style="width: 50%;">
|
||||
<p>'.$db_fragmentation->data->tablesFragmentationValue->value.'</p>
|
||||
<p style="font-size: 10pt;">'.$db_fragmentation->data->tablesFragmentationValue->value.'</p>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -11557,6 +11557,12 @@ p.trademark-copyright {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
#tab-database {
|
||||
height: 80%;
|
||||
overflow: auto;
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
.item_status_tree_view {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
|
|
|
@ -1389,6 +1389,12 @@ p.trademark-copyright {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
#tab-database {
|
||||
height: 80%;
|
||||
overflow: auto;
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
button.buttonButton,
|
||||
button.submitButton {
|
||||
box-shadow: 0px 3px 6px #111;
|
||||
|
|
Loading…
Reference in New Issue