CSS imprvements - added more space between top menu and page content in structure and insert pages

Signed-off-by: Chanaka Dharmarathna <pe.chanaka.ck@gmail.com>
This commit is contained in:
Chanaka Dharmarathna 2014-09-13 10:45:01 +05:30
parent 22096fcdc8
commit e12131f769
4 changed files with 10 additions and 2 deletions

View File

@ -41,7 +41,7 @@ if ($db_is_system_schema) {
}
$response->addHTML($tabletype);
$tablestructure = '<table id="tablestructure" class="data">';
$tablestructure = '<table id="tablestructure" class="data topmargin">';
$response->addHTML($tablestructure);

View File

@ -1608,7 +1608,7 @@ function PMA_getSumbitAndResetButtonForActionsPanel($tabindex, $tabindex_for_val
*/
function PMA_getHeadAndFootOfInsertRowTable($url_params)
{
$html_output = '<table class="insertRowTable">'
$html_output = '<table class="insertRowTable topmargin">'
. '<thead>'
. '<tr>'
. '<th>' . __('Column') . '</th>';

View File

@ -3086,3 +3086,7 @@ span.drag_icon {
height: 3em;
cursor: move;
}
.topmargin {
margin-top: 1em;
}

View File

@ -3406,4 +3406,8 @@ span.drag_icon {
width: 1em;
height: 3em;
cursor: move;
}
.topmargin {
margin-top: 1em;
}