Make WordPress Core


Ignore:
Timestamp:
10/28/2008 10:07:39 PM (18 years ago)
Author:
westi
Message:

Move inline styles to the stylesheets. Fixes #7985 props Speedboxer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r9369 r9390  
    173173                </th>
    174174                <td>
    175                         <input name="permalink_structure" id="permalink_structure" type="text" class="code" style="width: 60%;" value="<?php echo attribute_escape($permalink_structure); ?>" size="50" />
     175                        <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo attribute_escape($permalink_structure); ?>" class="regular-text code" />
    176176                </td>
    177177        </tr>
     
    188188        <tr>
    189189                <th><label for="category_base"><?php _e('Category base'); ?></label></th>
    190                 <td><input name="category_base" id="category_base" type="text" class="code"  value="<?php echo attribute_escape($category_base); ?>" size="30" /></td>
     190                <td><input name="category_base" id="category_base" type="text" value="<?php echo attribute_escape($category_base); ?>" class="regular-text code" /></td>
    191191        </tr>
    192192        <tr>
    193193                <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
    194                 <td><input name="tag_base" id="tag_base" type="text" class="code"  value="<?php echo attribute_escape($tag_base); ?>" size="30" /></td>
     194                <td><input name="tag_base" id="tag_base" type="text" value="<?php echo attribute_escape($tag_base); ?>" class="regular-text code" /></td>
    195195        </tr>
    196196        <?php do_settings_fields('permalink', 'optional'); ?>
     
    207207<form action="options-permalink.php" method="post">
    208208<?php wp_nonce_field('update-permalink') ?>
    209         <p><textarea rows="5" style="width: 98%;" name="rules" id="rules"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>
     209        <p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>
    210210</form>
    211211<?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.