style is already in theme CSS

This commit is contained in:
Marc Delisle
2010-05-23 08:44:58 -04:00
parent abc229d0b0
commit b4598190d0
4 changed files with 10 additions and 10 deletions

View File

@@ -463,18 +463,18 @@ if (!$is_information_schema) {
?> ?>
<input type="checkbox" name="create_database_before_copying" value="1" <input type="checkbox" name="create_database_before_copying" value="1"
id="checkbox_create_database_before_copying" id="checkbox_create_database_before_copying"
style="vertical-align: middle" checked="checked" /> checked="checked" />
<label for="checkbox_create_database_before_copying"> <label for="checkbox_create_database_before_copying">
<?php echo __('CREATE DATABASE before copying'); ?></label><br /> <?php echo __('CREATE DATABASE before copying'); ?></label><br />
<input type="checkbox" name="drop_if_exists" value="true" <input type="checkbox" name="drop_if_exists" value="true"
id="checkbox_drop" style="vertical-align: middle" /> id="checkbox_drop" />
<label for="checkbox_drop"><?php echo sprintf(__('Add %s'), $drop_clause); ?></label><br /> <label for="checkbox_drop"><?php echo sprintf(__('Add %s'), $drop_clause); ?></label><br />
<input type="checkbox" name="sql_auto_increment" value="1" checked="checked" <input type="checkbox" name="sql_auto_increment" value="1" checked="checked"
id="checkbox_auto_increment" style="vertical-align: middle" /> id="checkbox_auto_increment" />
<label for="checkbox_auto_increment"> <label for="checkbox_auto_increment">
<?php echo __('Add AUTO_INCREMENT value'); ?></label><br /> <?php echo __('Add AUTO_INCREMENT value'); ?></label><br />
<input type="checkbox" name="add_constraints" value="1" <input type="checkbox" name="add_constraints" value="1"
id="checkbox_constraints" style="vertical-align: middle" /> id="checkbox_constraints" />
<label for="checkbox_constraints"> <label for="checkbox_constraints">
<?php echo __('Add constraints'); ?></label><br /> <?php echo __('Add constraints'); ?></label><br />
<?php <?php
@@ -488,7 +488,7 @@ if (!$is_information_schema) {
<input type="checkbox" name="switch_to_new" value="true" <input type="checkbox" name="switch_to_new" value="true"
id="checkbox_switch" id="checkbox_switch"
<?php echo ((isset($pma_switch_to_new) && $pma_switch_to_new == 'true') ? ' checked="checked"' : ''); ?> <?php echo ((isset($pma_switch_to_new) && $pma_switch_to_new == 'true') ? ' checked="checked"' : ''); ?>
style="vertical-align: middle" /> />
<label for="checkbox_switch"><?php echo __('Switch to copied database'); ?></label> <label for="checkbox_switch"><?php echo __('Switch to copied database'); ?></label>
</fieldset> </fieldset>
<fieldset class="tblFooters"> <fieldset class="tblFooters">
@@ -600,7 +600,7 @@ if (!$is_information_schema) {
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, . PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION,
'db_collation', 'select_db_collation', $db_collation, false, 3) 'db_collation', 'select_db_collation', $db_collation, false, 3)
. ' <input type="submit" name="submitcollation"' . ' <input type="submit" name="submitcollation"'
. ' value="' . __('Go') . '" style="vertical-align: middle" />' . "\n" . ' value="' . __('Go') . '" />' . "\n"
. '</fieldset>' . "\n" . '</fieldset>' . "\n"
. '</form>' . "\n"; . '</form>' . "\n";

View File

@@ -582,7 +582,7 @@ echo PMA_generate_common_hidden_inputs($url_params);
<tr> <tr>
<td nowrap="nowrap"> <td nowrap="nowrap">
<?php echo __('Add/Delete Criteria Row'); ?>: <?php echo __('Add/Delete Criteria Row'); ?>:
<select size="1" name="add_row" style="vertical-align: middle"> <select size="1" name="add_row">
<option value="-3">-3</option> <option value="-3">-3</option>
<option value="-2">-2</option> <option value="-2">-2</option>
<option value="-1">-1</option> <option value="-1">-1</option>
@@ -594,7 +594,7 @@ echo PMA_generate_common_hidden_inputs($url_params);
</td> </td>
<td width="10">&nbsp;</td> <td width="10">&nbsp;</td>
<td nowrap="nowrap"><?php echo __('Add/Delete Field Columns'); ?>: <td nowrap="nowrap"><?php echo __('Add/Delete Field Columns'); ?>:
<select size="1" name="add_col" style="vertical-align: middle"> <select size="1" name="add_col">
<option value="-3">-3</option> <option value="-3">-3</option>
<option value="-2">-2</option> <option value="-2">-2</option>
<option value="-1">-1</option> <option value="-1">-1</option>

View File

@@ -546,7 +546,7 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
?> ?>
<fieldset> <fieldset>
<label><?php echo __('Choose field to display') . ': '; ?></label> <label><?php echo __('Choose field to display') . ': '; ?></label>
<select name="display_field" style="vertical-align: middle"> <select name="display_field">
<option value="">---</option> <option value="">---</option>
<?php <?php
foreach ($save_row AS $row) { foreach ($save_row AS $row) {

View File

@@ -299,7 +299,7 @@ $(function() {
<fieldset id="fieldset_display_order"> <fieldset id="fieldset_display_order">
<legend><?php echo __('Display order:'); ?></legend> <legend><?php echo __('Display order:'); ?></legend>
<select name="orderField" style="vertical-align: middle"> <select name="orderField">
<option value="--nil--"></option> <option value="--nil--"></option>
<?php <?php
foreach ($fields_list as $each_field) { foreach ($fields_list as $each_field) {