Keep font size in all tables.

Prevent CSS rule "table { font-size: 90% }" from making nested tables
unreadable.
This commit is contained in:
Inge Brattaas 2019-03-15 23:02:23 +01:00 committed by Jakub Vrana
parent 0eab60c338
commit d846eac97e

View file

@ -16,7 +16,7 @@ class AdminerJsonColumn {
}
private function _buildTable($json) {
echo '<table cellspacing="0" style="margin:2px">';
echo '<table cellspacing="0" style="margin:2px; font-size:100%;">';
foreach ($json as $key => $val) {
echo '<tr>';
echo '<th>' . h($key) . '</th>';