[wp-cvs] wordpress/wp-admin edit-form-advanced.php, 1.47, 1.48 wp-admin.css, 1.77, 1.78

Matthew Mullenweg saxmatt at users.sourceforge.net
Sun Dec 19 00:26:35 UTC 2004


Update of /cvsroot/cafelog/wordpress/wp-admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5987/wp-admin

Modified Files:
	edit-form-advanced.php wp-admin.css 
Log Message:
More style tweaks

Index: wp-admin.css
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/wp-admin.css,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** wp-admin.css	19 Dec 2004 00:21:14 -0000	1.77
--- wp-admin.css	19 Dec 2004 00:26:32 -0000	1.78
***************
*** 458,465 ****
  }
  
- #poststatusdiv {
- 	width: 6.5em;
- }
- 
  #poststuff {
  	margin-right: 11em;
--- 458,461 ----
***************
*** 496,508 ****
  }
  
- #slugdiv {
- 	width: 10.4em;
- }
- 
  #simple #titlediv {
  	height: 4em;
  }
  
! #titlediv, #poststatusdiv, #commentstatusdiv, #slugdiv, #postpassworddiv, #namediv, #uridiv, #emaildiv, #pageparent {
  	float: left;
  	height: 6em;
--- 492,500 ----
  }
  
  #simple #titlediv {
  	height: 4em;
  }
  
! #titlediv, #commentstatusdiv, #postpassworddiv, #namediv, #uridiv, #emaildiv, #pageparent {
  	float: left;
  	height: 6em;

Index: edit-form-advanced.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/edit-form-advanced.php,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** edit-form-advanced.php	14 Dec 2004 09:05:44 -0000	1.47
--- edit-form-advanced.php	19 Dec 2004 00:26:32 -0000	1.48
***************
*** 69,81 ****
      </fieldset>
  
-     <fieldset id="poststatusdiv">
-       <legend><a href="http://wordpress.org/docs/reference/post/#post_status" title="<?php _e('Help on post status') ?>"><?php _e('Post Status') ?></a></legend>
- 	  <div>
- <?php if ( 1 < $user_level || (1 == $user_level && 2 == get_option('new_users_can_blog')) ) : ?>
- <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post_status, 'publish'); ?> /> <?php _e('Publish') ?></label>
- <?php endif; ?>
- 	  <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post_status, 'draft'); ?> /> <?php _e('Draft') ?></label> 
- 	  <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
-     </fieldset>
      <fieldset id="commentstatusdiv">
        <legend><a href="http://wordpress.org/docs/reference/post/#comments" title="<?php _e('Help on comment status') ?>"><?php _e('Discussion') ?></a></legend> 
--- 69,72 ----
***************
*** 142,145 ****
--- 133,144 ----
  <table width="100%" cellspacing="2" cellpadding="5" class="editform">
  	<tr>
+ 		<th scope="row" valign="top"><?php _e('Post Status') ?>:</th>
+ 		<td><?php if ( 1 < $user_level || (1 == $user_level && 2 == get_option('new_users_can_blog')) ) : ?>
+ <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post_status, 'publish'); ?> /> <?php _e('Published') ?></label><br />
+ <?php endif; ?>
+ 	  <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post_status, 'draft'); ?> /> <?php _e('Draft') ?></label><br />
+ 	  <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post_status, 'private'); ?> /> <?php _e('Private') ?></label></td>
+ 	</tr>
+ 	<tr>
  		<th scope="row" valign="top"><?php _e('Send trackbacks to'); ?>:</th>
  		<td><?php echo $form_trackback; ?> <br />




More information about the cvs mailing list