CSS fixes
This commit is contained in:
@@ -8,6 +8,12 @@ $Source$
|
||||
2002-04-10 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* config.inc.php3, line 73: removed the "experimental" warning for the
|
||||
"cfgLeftFrameLight" setting.
|
||||
* db_details.php3, header.inc.php3, left.php3, main.php3, tbl_change.php3,
|
||||
tbl_indexes.php3, tbl_properties.php3, tbl_qbe.php3, tbl_select.php3,
|
||||
user_details.php3, user_password.php3, libraries/display_tbl.lib.php3,
|
||||
libraries/auth/cookie.auth.lib.php3: Better fix bugs #539756 / #540718
|
||||
* left.php3, libraries/auth/cookie.auth.lib.php3: Fixed design for NN 4.x.
|
||||
* Documentation.*: Added myself.
|
||||
|
||||
2002-04-10 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* lang/chinese* update thanks to Siu Sun (siusun)
|
||||
|
@@ -567,7 +567,7 @@ if ($is_upload) {
|
||||
echo ' <i>' . $strOr . '</i> ' . $strLocationTextfile . ' :<br />' . "\n";
|
||||
?>
|
||||
<div style="margin-bottom: 5px">
|
||||
<input type="file" name="sql_file" /><br />
|
||||
<input type="file" name="sql_file" class="textfield" /><br />
|
||||
</div>
|
||||
<?php
|
||||
} // end if
|
||||
@@ -769,10 +769,10 @@ if ($num_tables > 0) {
|
||||
<?php
|
||||
echo ' ' . sprintf($strCreateNewTable, htmlspecialchars($db)) . ' :<br />' . "\n";
|
||||
echo ' ' . $strName . ' : ' . "\n";
|
||||
echo ' ' . '<input type="text" name="table" maxlength="64" />' . "\n";
|
||||
echo ' ' . '<input type="text" name="table" maxlength="64" class="textfield" />' . "\n";
|
||||
echo ' ' . '<br />' . "\n";
|
||||
echo ' ' . $strFields . ' : ' . "\n";
|
||||
echo ' ' . '<input type="text" name="num_fields" size="2" />' . "\n";
|
||||
echo ' ' . '<input type="text" name="num_fields" size="2" class="textfield" />' . "\n";
|
||||
echo ' ' . ' <input type="submit" value="' . $strGo . '" />' . "\n";
|
||||
?>
|
||||
</form>
|
||||
|
@@ -56,23 +56,23 @@ if (!empty($cfgPmaAbsoluteUri)) {
|
||||
?>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
pre, tt {font-size: <?php echo $font_size; ?>}
|
||||
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; background-color: <?php echo $cfgThBgcolor; ?>}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
textarea {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||
A:link {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
A:visited {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
A:hover {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: underline; color: #FF0000}
|
||||
A:link.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
A:visited.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
A:hover.nav {font-family: <?php echo $right_font_family; ?>; color: #FF0000}
|
||||
.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
pre, tt {font-size: <?php echo $font_size; ?>}
|
||||
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; background-color: <?php echo $cfgThBgcolor; ?>}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
textarea {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||
A:link {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
A:visited {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
A:hover {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: underline; color: #FF0000}
|
||||
A:link.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
A:visited.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
A:hover.nav {font-family: <?php echo $right_font_family; ?>; color: #FF0000}
|
||||
.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
//-->
|
||||
</style>
|
||||
|
||||
|
12
left.php3
12
left.php3
@@ -148,9 +148,10 @@ else {
|
||||
?>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
div {color: #000000}
|
||||
.heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
select {background-color: #ffffff; color: #000000}
|
||||
.heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
.parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none}
|
||||
.item, .item:active, .item:hover, .tblItem, .tblItem:active {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none}
|
||||
.tblItem:hover {color: #FF0000; text-decoration: underline}
|
||||
@@ -303,7 +304,8 @@ if ($num_dbs > 1) {
|
||||
} // end for $t (tables list)
|
||||
|
||||
if (!$table_list) {
|
||||
$table_list = ' <br /><br />' . $strNoTablesFound . "\n";
|
||||
$table_list = ' <br /><br />' . "\n"
|
||||
. ' <div>' . $strNoTablesFound . '</div>' . "\n";
|
||||
}
|
||||
$selected = ' selected="selected"';
|
||||
|
||||
@@ -331,7 +333,7 @@ if ($num_dbs > 1) {
|
||||
echo ' </form>' . "\n";
|
||||
|
||||
if (!$table_list) {
|
||||
$table_list = ' ' . $strSelectADb . "\n";
|
||||
$table_list = ' <div>' . $strSelectADb . '</div>' . "\n";
|
||||
}
|
||||
|
||||
// Displays the current database name and the list of tables it
|
||||
|
@@ -94,9 +94,12 @@ if (!defined('PMA_COOKIE_AUTH_INCLUDED')) {
|
||||
<title>phpMyAdmin <?php echo PMA_VERSION; ?></title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color:#ffffff; color:#000000}
|
||||
input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color:#ffffff; color:#000000}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
//-->
|
||||
</style>
|
||||
</head>
|
||||
@@ -152,13 +155,13 @@ h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align; ?>"><b><?php echo $GLOBALS['strLogUsername']; ?> </b></td>
|
||||
<td align="<?php echo $cell_align; ?>">
|
||||
<input type="text" name="pma_username" value="<?php echo (isset($default_user) ? $default_user : ''); ?>" size="24" onfocus="this.select()" />
|
||||
<input type="text" name="pma_username" value="<?php echo (isset($default_user) ? $default_user : ''); ?>" size="24" class="textfield" onfocus="this.select()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align; ?>"><b><?php echo $GLOBALS['strLogPassword']; ?> </b></td>
|
||||
<td align="<?php echo $cell_align; ?>">
|
||||
<input type="password" name="pma_password" value="" size="24" onfocus="this.select()" />
|
||||
<input type="password" name="pma_password" value="" size="24" class="textfield" onfocus="this.select()" />
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@@ -268,9 +268,9 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){
|
||||
<input type="hidden" name="goto" value="<?php echo $goto; ?>" />
|
||||
<input type="hidden" name="dontlimitchars" value="<?php echo $dontlimitchars; ?>" />
|
||||
<input type="submit" name="navig" value="<?php echo $GLOBALS['strShow']; ?> :" />
|
||||
<input type="text" name="session_max_rows" size="3" value="<?php echo (($session_max_rows != 'all') ? $session_max_rows : $GLOBALS['cfgMaxRows']); ?>" onfocus="this.select()" />
|
||||
<input type="text" name="session_max_rows" size="3" value="<?php echo (($session_max_rows != 'all') ? $session_max_rows : $GLOBALS['cfgMaxRows']); ?>" class="textfield" onfocus="this.select()" />
|
||||
<?php echo $GLOBALS['strRowsFrom'] . "\n"; ?>
|
||||
<input type="text" name="pos" size="3" value="<?php echo (($pos_next >= $unlim_num_rows) ? 0 : $pos_next); ?>" onfocus="this.select()" />
|
||||
<input type="text" name="pos" size="3" value="<?php echo (($pos_next >= $unlim_num_rows) ? 0 : $pos_next); ?>" class="textfield" onfocus="this.select()" />
|
||||
<br />
|
||||
<?php
|
||||
// Display mode (horizontal/vertical and repeat headers)
|
||||
@@ -279,7 +279,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){
|
||||
. ' <option value="vertical"' . (($disp_direction == 'vertical') ? ' selected="selected"': '') . '>' . $GLOBALS['strRowsModeVertical'] . '</option>' . "\n"
|
||||
. ' </select>' . "\n"
|
||||
. ' ';
|
||||
$param2 = ' <input type="text" size="3" name="repeat_cells" value="' . $repeat_cells . '" />' . "\n"
|
||||
$param2 = ' <input type="text" size="3" name="repeat_cells" value="' . $repeat_cells . '" class="textfield" />' . "\n"
|
||||
. ' ';
|
||||
echo ' ' . sprintf($GLOBALS['strRowsModeOptions'], "\n" . $param1, "\n" . $param2) . "\n";
|
||||
?>
|
||||
@@ -969,7 +969,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){
|
||||
} else if ($row[$pointer] != '') {
|
||||
// loic1: support blanks in the key
|
||||
$relation_id = $row[$pointer];
|
||||
|
||||
|
||||
// loic1: Cut text/blob fields even if $cfgShowBlob is true
|
||||
if (eregi('BLOB', $meta->type)) {
|
||||
if (strlen($row[$pointer]) > $GLOBALS['cfgLimitChars'] && ($dontlimitchars != 1)) {
|
||||
|
@@ -247,7 +247,7 @@ if ($server > 0) {
|
||||
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
||||
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
|
||||
<input type="hidden" name="reload" value="1" />
|
||||
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" />
|
||||
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" class="textfield" />
|
||||
<input type="submit" value="<?php echo $strCreate; ?>" />
|
||||
</form>
|
||||
</td>
|
||||
|
@@ -453,7 +453,7 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
||||
?>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<?php echo $backup_field . "\n"; ?>
|
||||
<input type="text" name="fields[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>')" tabindex="<?php echo $i+1; ?>" />
|
||||
<input type="text" name="fields[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" class="textfield" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>')" tabindex="<?php echo $i+1; ?>" />
|
||||
</td>
|
||||
<?php
|
||||
} // end if...elseif...else
|
||||
@@ -469,7 +469,7 @@ for ($i = 0; $i < $fields_cnt; $i++) {
|
||||
?>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<?php echo $backup_field . "\n"; ?>
|
||||
<input type="text" name="fields[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>')" tabindex="<?php echo $i+1; ?>" />
|
||||
<input type="text" name="fields[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" class="textfield" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>')" tabindex="<?php echo $i+1; ?>" />
|
||||
</td>
|
||||
<?php
|
||||
}
|
||||
|
@@ -309,7 +309,7 @@ else if (!defined('PMA_IDX_INCLUDED')
|
||||
<tr>
|
||||
<td><?php echo $strIndexName; ?> </td>
|
||||
<td>
|
||||
<input type="text" name="index" value="<?php echo htmlspecialchars($index); ?>" onfocus="this.select()" />
|
||||
<input type="text" name="index" value="<?php echo htmlspecialchars($index); ?>" class="textfield" onfocus="this.select()" />
|
||||
<?php echo $strPrimaryKeyWarning . "\n"; ?>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -398,8 +398,8 @@ else if (!defined('PMA_IDX_INCLUDED')
|
||||
echo ' <input type="hidden" name="idx_num_fields" value="' . $idx_num_fields . '" />' . "\n";
|
||||
}
|
||||
echo ' <hr /><br />' . "\n";
|
||||
echo ' ' . sprintf($strAddToIndex, '<input type="text" name="added_fields" size="4" value="1" onfocus="this.select()" />') . "\n";
|
||||
echo ' <input type="submit" name="add_fields" value="' . $strGo . '" onclick="return checkFormElementInRange(this.form, \'added_fields\', 1)" />' . "\n";
|
||||
echo ' ' . sprintf($strAddToIndex, '<input type="text" name="added_fields" size="4" value="1" class="textfield" onfocus="this.select()" />') . "\n";
|
||||
echo ' <input type="submit" name="add_fields" value="' . $strGo . '" class="textfield" onclick="return checkFormElementInRange(this.form, \'added_fields\', 1)" />' . "\n";
|
||||
|
||||
} else {
|
||||
/**
|
||||
@@ -502,7 +502,7 @@ else if (!defined('PMA_IDX_INCLUDED')
|
||||
echo ' <i>' . $strNoIndex . '</i><br /><br />' . "\n\n";
|
||||
}
|
||||
|
||||
echo ' ' . sprintf($strCreateIndex, '<input type="text" size="4" name="idx_num_fields" value="1" />') . "\n";
|
||||
echo ' ' . sprintf($strCreateIndex, '<input type="text" size="4" name="idx_num_fields" value="1" class="textfield" />') . "\n";
|
||||
echo ' <input type="submit" name="create_index" value="' . $strGo . '" onclick="return checkFormElementInRange(this.form, \'idx_num_fields\', 1)" />' . "\n";
|
||||
echo ' ';
|
||||
} // end display indexes
|
||||
|
@@ -66,7 +66,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
|
||||
}
|
||||
echo "\n";
|
||||
?>
|
||||
<input type="text" name="field_name[]" size="10" maxlength="64" value="<?php if (isset($row) && isset($row['Field'])) echo str_replace('"', '"', $row['Field']); ?>" />
|
||||
<input type="text" name="field_name[]" size="10" maxlength="64" value="<?php if (isset($row) && isset($row['Field'])) echo str_replace('"', '"', $row['Field']); ?>" class="textfield" />
|
||||
</td>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<select name="field_type[]">
|
||||
@@ -121,7 +121,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
|
||||
}
|
||||
echo "\n";
|
||||
?>
|
||||
<input type="text" name="field_length[]" size="8" value="<?php echo str_replace('"', '"', $length); ?>" />
|
||||
<input type="text" name="field_length[]" size="8" value="<?php echo str_replace('"', '"', $length); ?>" class="textfield" />
|
||||
</td>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<select name="field_attribute[]">
|
||||
@@ -187,7 +187,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
|
||||
}
|
||||
echo "\n";
|
||||
?>
|
||||
<input type="text" name="field_default[]" size="8" value="<?php if(isset($row) && isset($row['Default'])) echo str_replace('"', '"', $row['Default']); ?>" />
|
||||
<input type="text" name="field_default[]" size="8" value="<?php if(isset($row) && isset($row['Default'])) echo str_replace('"', '"', $row['Default']); ?>" class="textfield" />
|
||||
</td>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<select name="field_extra[]">
|
||||
@@ -288,7 +288,7 @@ if ($action == 'tbl_create.php3' && PMA_MYSQL_INT_VERSION >= 32300) {
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" name="comment" size="40" maxlength="80" />
|
||||
<input type="text" name="comment" size="40" maxlength="80" class="textfield" />
|
||||
</td>
|
||||
<?php
|
||||
// BEGIN - Table Type - 2 May 2001 - Robbat2
|
||||
|
@@ -728,7 +728,7 @@ if ($is_upload) {
|
||||
echo ' <i>' . $strOr . '</i> ' . $strLocationTextfile . ' :<br />' . "\n";
|
||||
?>
|
||||
<div style="margin-bottom: 5px">
|
||||
<input type="file" name="sql_file" /><br />
|
||||
<input type="file" name="sql_file" class="textfield" /><br />
|
||||
</div>
|
||||
<?php
|
||||
} // end if
|
||||
@@ -771,7 +771,7 @@ if ($cfgBookmark['db'] && $cfgBookmark['table']) {
|
||||
<input type="hidden" name="db" value="<?php echo $db; ?>" />
|
||||
<input type="hidden" name="table" value="<?php echo $table; ?>" />
|
||||
<?php echo $strAddNewField; ?> :
|
||||
<input type="text" name="num_fields" size="2" maxlength="2" value="1" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<input type="text" name="num_fields" size="2" maxlength="2" value="1" class="textfield" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<select name="after_field" style="vertical-align: middle">
|
||||
<option value="--end--"><?php echo $strAtEndOfTable; ?></option>
|
||||
<option value="--first--"><?php echo $strAtBeginningOfTable; ?></option>
|
||||
@@ -848,13 +848,13 @@ echo "\n";
|
||||
<input type="radio" name="what" value="csv" />
|
||||
<?php echo $strStrucCSV;?> :<br />
|
||||
<?php echo $strFieldsTerminatedBy; ?>
|
||||
<input type="text" name="separator" size="2" value=";" /> <br />
|
||||
<input type="text" name="separator" size="2" value=";" class="textfield" /> <br />
|
||||
<?php echo $strFieldsEnclosedBy; ?>
|
||||
<input type="text" name="enclosed" size="1" value=""" /> <br />
|
||||
<input type="text" name="enclosed" size="1" value=""" class="textfield" /> <br />
|
||||
<?php echo $strFieldsEscapedBy; ?>
|
||||
<input type="text" name="escaped" size="2" value="\" /> <br />
|
||||
<input type="text" name="escaped" size="2" value="\" class="textfield" /> <br />
|
||||
<?php echo $strLinesTerminatedBy; ?>
|
||||
<input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" />
|
||||
<input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" class="textfield" />
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<input type="checkbox" name="drop" value="1" />
|
||||
@@ -917,9 +917,9 @@ if (function_exists('PMA_set_enc_form')) {
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<?php echo $strStartingRecord; ?>
|
||||
<input type="text" name="limit_from" value="0" size="5" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<input type="text" name="limit_from" value="0" size="5" class="textfield" style="vertical-align: middle" onfocus="this.select()" />
|
||||
-- <?php echo $strNbRecords; ?>
|
||||
<input type="text" name="limit_to" size="5" value="<?php echo PMA_countRecords($db, $table, TRUE); ?>" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<input type="text" name="limit_to" size="5" value="<?php echo PMA_countRecords($db, $table, TRUE); ?>" class="textfield" style="vertical-align: middle" onfocus="this.select()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -942,7 +942,7 @@ if (function_exists('PMA_set_enc_form')) {
|
||||
<input type="hidden" name="table" value="<?php echo $table; ?>" />
|
||||
<input type="hidden" name="reload" value="1" />
|
||||
<?php echo $strRenameTable; ?> :
|
||||
<input type="text" size="20" name="new_name" value="<?php echo htmlspecialchars($table); ?>" onfocus="this.select()" />
|
||||
<input type="text" size="20" name="new_name" value="<?php echo htmlspecialchars($table); ?>" class="textfield" onfocus="this.select()" />
|
||||
<input type="submit" value="<?php echo $strGo; ?>" />
|
||||
</form>
|
||||
</div>
|
||||
@@ -983,7 +983,7 @@ for ($i = 0; $i < $num_dbs; $i++) {
|
||||
?>
|
||||
</select>
|
||||
<b>.</b>
|
||||
<input type="text" size="20" name="new_name" value="<?php echo $table; ?>" onfocus="this.select()" />
|
||||
<input type="text" size="20" name="new_name" value="<?php echo $table; ?>" class="textfield" onfocus="this.select()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -1025,7 +1025,7 @@ for ($i = 0; $i < $num_dbs; $i++) {
|
||||
?>
|
||||
</select>
|
||||
<b>.</b>
|
||||
<input type="text" size="20" name="new_name" onfocus="this.select()" />
|
||||
<input type="text" size="20" name="new_name" class="textfield" onfocus="this.select()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -1126,7 +1126,7 @@ if (PMA_MYSQL_INT_VERSION >= 32322) {
|
||||
<input type="hidden" name="table" value="<?php echo $table; ?>" />
|
||||
<?php echo $strTableComments; ?> :
|
||||
<input type="hidden" name="prev_comment" value="<?php echo urlencode($show_comment); ?>" />
|
||||
<input type="text" name="comment" maxlength="60" size="30" value="<?php echo str_replace('"', '"', $show_comment); ?>" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<input type="text" name="comment" maxlength="60" size="30" value="<?php echo str_replace('"', '"', $show_comment); ?>" class="textfield" style="vertical-align: middle" onfocus="this.select()" />
|
||||
<input type="submit" name="submitcomment" value="<?php echo $strGo; ?>" style="vertical-align: middle" />
|
||||
</form>
|
||||
</li>
|
||||
|
@@ -320,7 +320,7 @@ for ($x = 0; $x < $col; $x++) {
|
||||
if (!empty($InsCol) && isset($InsCol[$x]) && $InsCol[$x] == 'on') {
|
||||
?>
|
||||
<td align="center" bgcolor="<?php echo $cfgBgcolorTwo; ?>">
|
||||
<input type="text" name="Criteria[<?php echo $z; ?>]" value="" style="width: <?php echo $widem; ?>" size="20" />
|
||||
<input type="text" name="Criteria[<?php echo $z; ?>]" value="" class="textfield" style="width: <?php echo $widem; ?>" size="20" />
|
||||
</td>
|
||||
<?php
|
||||
$z++;
|
||||
@@ -348,7 +348,7 @@ for ($x = 0; $x < $col; $x++) {
|
||||
?>
|
||||
<td align="center" bgcolor="<?php echo $cfgBgcolorTwo; ?>">
|
||||
<input type="hidden" name="prev_Criteria[<?php echo $z; ?>]" value="<?php echo $encoded_Criteria; ?>" />
|
||||
<input type="text" name="Criteria[<?php echo $z; ?>]" value="<?php echo htmlspecialchars($stripped_Criteria); ?>" style="width: <?php echo $widem; ?>" size="20" />
|
||||
<input type="text" name="Criteria[<?php echo $z; ?>]" value="<?php echo htmlspecialchars($stripped_Criteria); ?>" class="textfield" style="width: <?php echo $widem; ?>" size="20" />
|
||||
</td>
|
||||
<?php
|
||||
$z++;
|
||||
|
@@ -75,12 +75,12 @@ if (!isset($param) || $param[0] == '') {
|
||||
<li>
|
||||
<div style="margin-bottom: 10px">
|
||||
<?php echo $strLimitNumRows . "\n"; ?>
|
||||
<input type="text" size="4" name="session_max_rows" value="<?php echo $cfgMaxRows; ?>" />
|
||||
<input type="text" size="4" name="session_max_rows" value="<?php echo $cfgMaxRows; ?>" class="textfield" />
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<?php echo $strAddSearchConditions; ?><br />
|
||||
<input type="text" name="where" />
|
||||
<input type="text" name="where" class="textfield" />
|
||||
<?php echo PMA_showDocuShort('F/u/Functions.html') . "\n"; ?>
|
||||
<br /><br />
|
||||
<?php echo '<i>' . $strOr . '</i> ' . $strDoAQuery; ?><br />
|
||||
@@ -99,7 +99,7 @@ if (!isset($param) || $param[0] == '') {
|
||||
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo htmlspecialchars($fields_list[$i]); ?></td>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>"><?php echo $fields_type[$i]; ?></td>
|
||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||
<input type="text" name="fields[]" size="40" />
|
||||
<input type="text" name="fields[]" size="40" class="textfield" />
|
||||
<input type="hidden" name="names[]" value="<?php echo urlencode($fields_list[$i]); ?>" />
|
||||
<input type="hidden" name="types[]" value="<?php echo $fields_type[$i]; ?>" />
|
||||
</td>
|
||||
|
@@ -383,7 +383,7 @@ function PMA_normalOperations()
|
||||
<?php echo $GLOBALS['strHost']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="host" size="10" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyhost[1].checked = true" />
|
||||
<input type="text" name="host" size="10" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyhost[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -397,7 +397,7 @@ function PMA_normalOperations()
|
||||
<?php echo $GLOBALS['strUserName']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="pma_user" size="10" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyuser[1].checked = true" />
|
||||
<input type="text" name="pma_user" size="10" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyuser[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -411,10 +411,10 @@ function PMA_normalOperations()
|
||||
<?php echo $GLOBALS['strPassword']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="password" name="pma_pw" size="10" <?php echo $GLOBALS['chg_evt_handler']; ?>="nopass[1].checked = true" />
|
||||
<input type="password" name="pma_pw" size="10" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="nopass[1].checked = true" />
|
||||
|
||||
<?php echo $GLOBALS['strReType']; ?> :
|
||||
<input type="password" name="pma_pw2" size="10" <?php echo $GLOBALS['chg_evt_handler']; ?>="nopass[1].checked = true" />
|
||||
<input type="password" name="pma_pw2" size="10" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="nopass[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -606,7 +606,7 @@ function PMA_grantOperations($grants)
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<?php echo $GLOBALS['strDatabaseWildcard'] . "\n"; ?>
|
||||
<input type="text" name="newdb" value="<?php echo ((!$is_selected_db && !empty($pma_user)) ? $pma_user . '%' : ''); ?>" <?php echo $GLOBALS['chg_evt_handler']; ?>="change(this)" />
|
||||
<input type="text" name="newdb" value="<?php echo ((!$is_selected_db && !empty($pma_user)) ? $pma_user . '%' : ''); ?>" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="change(this)" />
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
@@ -688,7 +688,7 @@ function PMA_editOperations($host, $user)
|
||||
<?php echo $GLOBALS['strHost']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="new_server" size="10" value="<?php echo str_replace('"', '"', $host); ?>" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyhost[1].checked = true" />
|
||||
<input type="text" name="new_server" size="10" value="<?php echo str_replace('"', '"', $host); ?>" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyhost[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -702,7 +702,7 @@ function PMA_editOperations($host, $user)
|
||||
<?php echo $GLOBALS['strUserName']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="new_user" size="10" value="<?php echo str_replace('"', '"', $user); ?>" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyuser[1].checked = true" />
|
||||
<input type="text" name="new_user" size="10" value="<?php echo str_replace('"', '"', $user); ?>" class="textfield" <?php echo $GLOBALS['chg_evt_handler']; ?>="this.form.anyuser[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@@ -116,10 +116,10 @@ $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5)
|
||||
<?php echo $GLOBALS['strPassword']; ?> :
|
||||
</td>
|
||||
<td>
|
||||
<input type="password" name="pma_pw" size="10" <?php echo $chg_evt_handler; ?>="nopass[1].checked = true" />
|
||||
<input type="password" name="pma_pw" size="10" class="textfield" <?php echo $chg_evt_handler; ?>="nopass[1].checked = true" />
|
||||
|
||||
<?php echo $GLOBALS['strReType']; ?> :
|
||||
<input type="password" name="pma_pw2" size="10" <?php echo $chg_evt_handler; ?>="nopass[1].checked = true" />
|
||||
<input type="password" name="pma_pw2" size="10" class="textfield" <?php echo $chg_evt_handler; ?>="nopass[1].checked = true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Reference in New Issue
Block a user