Changeset 6850

Show
Ignore:
Timestamp:
02/14/08 15:33:56 (9 months ago)
Author:
ryan
Message:

Move table width to CSS. Props hansengel. see 5851

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/edit-category-form.php

    r6845 r6850  
    2424<input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 
    2525<?php wp_nonce_field($nonce_action); ?> 
    26     <table class="niceblue" width="100%"
     26    <table class="niceblue"
    2727        <tr class="form-field form-required"> 
    2828            <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 
  • trunk/wp-admin/edit-link-category-form.php

    r6845 r6850  
    2424<input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 
    2525<?php wp_nonce_field($nonce_action); ?> 
    26     <table class="niceblue" width="100%"
     26    <table class="niceblue"
    2727        <tr class="form-field form-required"> 
    2828            <th scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th> 
  • trunk/wp-admin/edit-tag-form.php

    r6845 r6850  
    2424<input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" /> 
    2525<?php wp_nonce_field($nonce_action); ?> 
    26     <table class="niceblue" width="100%"
     26    <table class="niceblue"
    2727        <tr class="form-field form-required"> 
    2828            <th scope="row" valign="top"><label for="name"><?php _e('Tag name:') ?></label></th> 
  • trunk/wp-admin/options-discussion.php

    r6846 r6850  
    1212<form method="post" action="options.php"> 
    1313<?php wp_nonce_field('update-options') ?> 
    14 <table class="niceblue" width="100%"
     14<table class="niceblue"
    1515<tr valign="top"> 
    1616<th scope="row"><?php _e('Default article settings') ?></th> 
  • trunk/wp-admin/options-general.php

    r6846 r6850  
    1212<form method="post" action="options.php"> 
    1313<?php wp_nonce_field('update-options') ?> 
    14 <table class="niceblue" width="100%"
     14<table class="niceblue"
    1515<tr valign="top"> 
    1616<th scope="row"><?php _e('Blog Title') ?></th> 
  • trunk/wp-admin/options-misc.php

    r6846 r6850  
    1414<?php wp_nonce_field('update-options') ?> 
    1515<h3><?php _e('Uploading'); ?></h3> 
    16 <table class="niceblue" width="100%"
     16<table class="niceblue"
    1717<tr valign="top"> 
    1818<th scope="row"><?php _e('Store uploads in this folder'); ?></th> 
  • trunk/wp-admin/options-privacy.php

    r6846 r6850  
    1212<form method="post" action="options.php"> 
    1313<?php wp_nonce_field('update-options') ?> 
    14 <table class="niceblue" width="100%"
     14<table class="niceblue"
    1515<tr valign="top"> 
    1616<th scope="row"><?php _e('Blog Visibility') ?> </th> 
  • trunk/wp-admin/options-reading.php

    r6846 r6850  
    1212<form name="form1" method="post" action="options.php"> 
    1313<?php wp_nonce_field('update-options') ?> 
    14 <table class="niceblue" width="100%"
     14<table class="niceblue"
    1515<?php if ( get_pages() ): ?> 
    1616<tr valign="top"> 
  • trunk/wp-admin/options-writing.php

    r6846 r6850  
    1313<?php wp_nonce_field('update-options') ?> 
    1414 
    15 <table class="niceblue" width="100%"
     15<table class="niceblue"
    1616<tr valign="top"> 
    1717<th scope="row"> <?php _e('Size of the post box') ?></th> 
     
    6161<p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p> 
    6262 
    63 <table class="niceblue" width="100%"
     63<table class="niceblue"
    6464<tr valign="top"> 
    6565<th scope="row"><?php _e('Mail Server') ?></th> 
  • trunk/wp-admin/wp-admin.css

    r6810 r6850  
    878878    border-collapse: collapse; 
    879879    margin-top: 1em; 
     880    width: 100%; 
    880881} 
    881882