mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 08:34:20 +02:00
Keep font size in all tables.
Prevent CSS rule "table { font-size: 90% }" from making nested tables unreadable.
This commit is contained in:
committed by
Jakub Vrana
parent
0eab60c338
commit
d846eac97e
@@ -16,7 +16,7 @@ class AdminerJsonColumn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private function _buildTable($json) {
|
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) {
|
foreach ($json as $key => $val) {
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
echo '<th>' . h($key) . '</th>';
|
echo '<th>' . h($key) . '</th>';
|
||||||
|
Reference in New Issue
Block a user