beautified iconic buttons
This commit is contained in:
@@ -6,7 +6,8 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2003-07-28 Alexander M. Turek <rabus@users.sourceforge.net>
|
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>
|
2003-07-28 Garvin Hicking <me@supergarv.de>
|
||||||
* sql.php3, libraries/common.lib.php3 - when $cfg['SQP']['fmtType']
|
* sql.php3, libraries/common.lib.php3 - when $cfg['SQP']['fmtType']
|
||||||
|
@@ -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}
|
.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}
|
.tblItem:hover {color: #FF0000; text-decoration: underline}
|
||||||
<?php
|
<?php
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
/* Layer effeccts neccessary: capable, but no is_DOM. We found an older CSS-Browser */
|
/* 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}
|
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;
|
margin: 0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.mult_submit {
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
.pdflayout {
|
.pdflayout {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
clip: inherit;
|
clip: inherit;
|
||||||
@@ -208,7 +213,7 @@ fieldset fieldset {
|
|||||||
display: inline;
|
display: inline;
|
||||||
visibility: inherit;
|
visibility: inherit;
|
||||||
cursor: move;
|
cursor: move;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: <?php echo $font_smaller; ?>;
|
font-size: <?php echo $font_smaller; ?>;
|
||||||
border: 1px dashed #000000;
|
border: 1px dashed #000000;
|
||||||
}
|
}
|
||||||
|
@@ -376,12 +376,12 @@ $checkall_url = 'tbl_properties_structure.php3?' . PMA_generate_common_url($db,$
|
|||||||
|
|
||||||
if ($cfg['PropertiesIconic']) {
|
if ($cfg['PropertiesIconic']) {
|
||||||
/* Opera has trouble with <input type="image"> */
|
/* 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"
|
. ' <img src="./images/button_edit.png" title="' . $strChange . '" alt="' . $strChange . '" width="12" height="13" />' . "\n"
|
||||||
. ' </button>' . "\n";
|
. ' </button>' . "\n";
|
||||||
// Drop button if there is at least two fields
|
// Drop button if there is at least two fields
|
||||||
if ($fields_cnt > 1) {
|
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"
|
. ' <img src="./images/button_drop.png" title="' . $strDrop . '" alt="' . $strDrop . '" width="11" height="13" />' . "\n"
|
||||||
. ' </button>' . "\n";
|
. ' </button>' . "\n";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user