Added a title to the export page to show the current export mode (server/database/table)

This commit is contained in:
lorilee
2010-07-08 12:30:50 -07:00
parent af5486fccc
commit e90f8e4d89
2 changed files with 17 additions and 1 deletions

View File

@@ -67,6 +67,20 @@ if (! empty($sql_query)) {
}
?>
<div class="exportoptions" id="header">
<h2>
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>b_export.png" />
<?php
if($export_type == 'server') {
echo __('Exporting databases in the current server');
} elseif($export_type == 'database') {
echo __('Exporting tables in the database "' . $db . '"');
} else {
echo __('Exporting rows in the table "' . $table . '"');
}?>
</h2>
</div>
<div class="exportoptions" id="quick_or_custom">
<h3><?php echo __('Export Method:'); ?></h3>
<ul>

View File

@@ -1237,8 +1237,10 @@ table#serverconnection_trg_local {
/**
* Export and Import styles
*/
.exportoptions h3, .importoptions h3 {
border-bottom: 1px #999999 solid;
font-size: 110%;
}
.exportoptions ul, .importoptions ul, .format_specific_options ul {
@@ -1260,7 +1262,7 @@ table#serverconnection_trg_local {
}
.exportoptions, .importoptions {
margin: 30px 30px 30px 10px
margin: 20px 30px 30px 10px
}
.exportoptions #buttonGo, .importoptions #buttonGo {