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

@@ -6,7 +6,8 @@ $Id$
$Source$
2003-07-28 Alexander M. Turek <rabus@users.sourceforge.net>
* tbl_properties_structure.php3: Use icons for multi-submit buttons.
* tbl_properties_structure.php3, css/phpmyadmin.css.php3: Use icons for
multi-submit buttons.
2003-07-28 Garvin Hicking <me@supergarv.de>
* sql.php3, libraries/common.lib.php3 - when $cfg['SQP']['fmtType']

View File

@@ -56,7 +56,7 @@ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_
.item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none}
.tblItem:hover {color: #FF0000; text-decoration: underline}
<?php
} else {
} else {
?>
/* Layer effeccts neccessary: capable, but no is_DOM. We found an older CSS-Browser */
div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
@@ -190,6 +190,11 @@ fieldset fieldset {
margin: 0.8em;
}
button.mult_submit {
border: none;
background-color: transparent;
}
.pdflayout {
overflow: hidden;
clip: inherit;
@@ -208,7 +213,7 @@ fieldset fieldset {
display: inline;
visibility: inherit;
cursor: move;
position: absolute;
position: absolute;
font-size: <?php echo $font_smaller; ?>;
border: 1px dashed #000000;
}

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";
}