Make WordPress Core


Ignore:
Timestamp:
04/19/2006 09:31:58 AM (20 years ago)
Author:
matt
Message:

Better use of visual space when editing/adding links

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-form.php

    r3684 r3729  
    7575</div>
    7676
    77 <fieldset id="uridiv">
    78 <legend><?php _e('URI:') ?></legend>
    79 <div><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></div>
    80 </fieldset>
    81 
    82 <fieldset id="namediv">
    83 <legend><?php _e('Name:') ?></legend>
    84 <div><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></div>
    85 </fieldset>
    86 
    87 <fieldset id="descdiv">
    88 <legend><?php _e('Description:') ?></legend>
    89 <div><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></div>
    90 </fieldset>
     77<table class="editform" width="100%" cellspacing="2" cellpadding="5">
     78<tr>
     79<th width="20%" scope="row" valign="top"><label for="link_url"><?php _e('URI:') ?></label></th>
     80<td width="80%"><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></td>
     81</tr>
     82<tr>
     83<th scope="row" valign="top"><label for="link_name"><?php _e('Name:') ?></label></th>
     84<td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td>
     85</tr>
     86<tr>
     87<th scope="row" valign="top"><label for="link_description"><?php _e('Description:') ?></label></th>
     88<td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td>
     89</tr>
     90</table>
    9191
    9292<p class="submit">
     
    101101<table class="editform" width="100%" cellspacing="2" cellpadding="5">
    102102    <tr>
    103         <th width="33%" scope="row"><?php _e('rel:') ?></th>
    104         <td width="67%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td>
     103        <th width="20%" scope="row"><?php _e('rel:') ?></th>
     104        <td width="80%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td>
    105105    </tr>
    106106    <tr>
     
    214214<table class="editform" width="100%" cellspacing="2" cellpadding="5">
    215215    <tr>
    216         <th width="33%" scope="row"><?php _e('Image URI:') ?></th>
    217         <td width="67%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td>
     216        <th width="20%" scope="row"><?php _e('Image URI:') ?></th>
     217        <td width="80%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td>
    218218    </tr>
    219219    <tr>
Note: See TracChangeset for help on using the changeset viewer.