beautified iconic buttons

This commit is contained in:
Alexander M. Turek
2003-07-28 20:56:15 +00:00
parent 0a25f6f2b3
commit b6e7259ae1
3 changed files with 11 additions and 5 deletions

View File

@@ -376,12 +376,12 @@ $checkall_url = 'tbl_properties_structure.php3?' . PMA_generate_common_url($db,$
if ($cfg['PropertiesIconic']) {
/* Opera has trouble with <input type="image"> */
echo ' <button type="submit" name="submit_mult" value="' . $strChange . '" title="' . $strChange . '">' . "\n"
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="' . $strChange . '" title="' . $strChange . '">' . "\n"
. ' <img src="./images/button_edit.png" title="' . $strChange . '" alt="' . $strChange . '" width="12" height="13" />' . "\n"
. ' </button>' . "\n";
// Drop button if there is at least two fields
if ($fields_cnt > 1) {
echo ' <button type="submit" name="submit_mult" value="' . $strDrop . '" title="' . $strDrop . '">' . "\n"
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="' . $strDrop . '" title="' . $strDrop . '">' . "\n"
. ' <img src="./images/button_drop.png" title="' . $strDrop . '" alt="' . $strDrop . '" width="11" height="13" />' . "\n"
. ' </button>' . "\n";
}