Merge pull request #13549 from manishbisht/ui-fixes

server variables out of table fixed
This commit is contained in:
Michal Čihař 2017-08-02 08:20:33 +02:00 committed by GitHub
commit 0e3099596b
3 changed files with 2 additions and 10 deletions

View File

@ -295,6 +295,7 @@ class ServerVariablesController extends Controller
$output = Template::get('filter')
->render(array('filter_value' => $filterValue));
$output .= '<div class="responsivetable">';
$output .= '<table id="serverVariables" class="width100 data filteredData noclick">';
$output .= Template::get('server/variables/variable_table_head')->render();
$output .= '<tbody>';
@ -305,6 +306,7 @@ class ServerVariablesController extends Controller
$output .= '</tbody>';
$output .= '</table>';
$output .= '</div>';
return $output;
}

View File

@ -1119,12 +1119,8 @@ div#logTable table {
padding: 0.5em;
min-height: 18px;
}
#serverVariables .var-action {
width: 15%;
}
#serverVariables .var-name {
font-weight: bold;
width: 65%;
}
#serverVariables .var-name.session {
font-weight: normal;
@ -1132,7 +1128,6 @@ div#logTable table {
}
#serverVariables .var-value {
text-align: <?php echo $right; ?>;
width: 20%;
float: <?php echo $right; ?>;
}

View File

@ -1462,19 +1462,14 @@ div#queryAnalyzerDialog table.queryNums {
padding: 0.5em;
min-height: 18px;
}
#serverVariables .var-action {
width: 15%;
}
#serverVariables .var-name {
font-weight: bold;
width: 65%;
}
#serverVariables .var-name.session {
font-weight: normal;
font-style: italic;
}
#serverVariables .var-value {
width: 20%;
float: <?php echo $right; ?>;
text-align: <?php echo $right; ?>;
}