export icon, fix images widths

This commit is contained in:
Michal Čihař
2004-04-16 10:28:53 +00:00
parent 36f2eb3055
commit bb4dde6ebf
3 changed files with 6 additions and 5 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2004-04-16 Michal Cihar <michal@cihar.com> 2004-04-16 Michal Cihar <michal@cihar.com>
* libraries/common.lib.php, libraries/export/sql.php: ANSI compatible * libraries/common.lib.php, libraries/export/sql.php: ANSI compatible
exports (RFE #859815). exports (RFE #859815).
* images/button_export.png: At least some export icon.
* libraries/display_tbl.lib.php: Fix image sizes.
2004-04-15 Marc Delisle <lem9@users.sourceforge.net> 2004-04-15 Marc Delisle <lem9@users.sourceforge.net>
* ldi_table.php: allow longer field terminator (was 2 now 4); * ldi_table.php: allow longer field terminator (was 2 now 4);
@@ -17,8 +19,7 @@ $Source$
2004-04-15 Michal Cihar <michal@cihar.com> 2004-04-15 Michal Cihar <michal@cihar.com>
* tbl_properties_export.php, tbl_row_delete.php, * tbl_properties_export.php, tbl_row_delete.php,
libraries/display_tbl.lib.php: Support for exporting selected rows (RFE libraries/display_tbl.lib.php: Support for exporting selected rows (RFE
#927554) [still missing images/button_export.png, waiting for somebody #927554).
to make it :-)].
* libraries/auth/cookie.auth.lib.php: Fix possible undefined variable use. * libraries/auth/cookie.auth.lib.php: Fix possible undefined variable use.
* libraries/display_tbl.lib.php: Convert charset for column fields (thanks * libraries/display_tbl.lib.php: Convert charset for column fields (thanks
to Marc for noticing this). to Marc for noticing this).

BIN
images/button_export.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 B

View File

@@ -1798,15 +1798,15 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
/* IE has trouble with <button> */ /* IE has trouble with <button> */
if (PMA_USR_BROWSER_AGENT != 'IE') { if (PMA_USR_BROWSER_AGENT != 'IE') {
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="row_edit" title="' . $GLOBALS['strEdit'] . '">' . "\n" echo ' <button class="mult_submit" type="submit" name="submit_mult" value="row_edit" title="' . $GLOBALS['strEdit'] . '">' . "\n"
. '<img src="./images/button_edit.png" title="' . $GLOBALS['strEdit'] . '" alt="' . $GLOBALS['strEdit'] . '" width="11" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $GLOBALS['strEdit'] : '') . "\n" . '<img src="./images/button_edit.png" title="' . $GLOBALS['strEdit'] . '" alt="' . $GLOBALS['strEdit'] . '" width="12" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $GLOBALS['strEdit'] : '') . "\n"
. '</button>'; . '</button>';
echo '&nbsp;<button class="mult_submit" type="submit" name="submit_mult" value="row_delete" title="' . $delete_text . '">' . "\n" echo '&nbsp;<button class="mult_submit" type="submit" name="submit_mult" value="row_delete" title="' . $delete_text . '">' . "\n"
. '<img src="./images/button_drop.png" title="' . $delete_text . '" alt="' . $delete_text . '" width="11" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $delete_text : '') . "\n" . '<img src="./images/button_drop.png" title="' . $delete_text . '" alt="' . $delete_text . '" width="12" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $delete_text : '') . "\n"
. '</button>'; . '</button>';
echo '&nbsp;<button class="mult_submit" type="submit" name="submit_mult" value="row_export" title="' . $GLOBALS['strExport'] . '">' . "\n" echo '&nbsp;<button class="mult_submit" type="submit" name="submit_mult" value="row_export" title="' . $GLOBALS['strExport'] . '">' . "\n"
. '<img src="./images/button_export.png" title="' . $GLOBALS['strExport'] . '" alt="' . $GLOBALS['strExport'] . '" width="11" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $GLOBALS['strExport'] : '') . "\n" . '<img src="./images/button_export.png" title="' . $GLOBALS['strExport'] . '" alt="' . $GLOBALS['strExport'] . '" width="12" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $GLOBALS['strExport'] : '') . "\n"
. '</button>'; . '</button>';
} else { } else {