Changeset 9409
- Timestamp:
- 10/30/2008 03:50:23 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
wp-admin/edit-form-advanced.php (modified) (3 diffs)
-
wp-admin/wp-admin.css (modified) (1 diff)
-
wp-includes/script-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r9402 r9409 79 79 </div> 80 80 81 <div id="misc-pub-block-1"> 81 82 <?php if ( $can_publish && current_user_can( 'edit_others_posts' ) ) { ?> 82 83 <div class="misc-pub-section" id="sticky-checkbox"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID), true); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick to front page') ?></label></div> 83 84 <?php } ?> 84 85 85 <div class="misc-pub-section " id="visibility">86 <div class="misc-pub-section misc-pub-section-1-last" id="visibility"> 86 87 <?php _e('Visibility:'); ?> <b><?php _e('Public'); // TODO: dropdown ?></b> 87 88 </div> 88 89 </div> 90 91 <div id="misc-pub-block-2"> 89 92 <?php 90 93 $datef = _c( 'M j, Y \a\t G:i|Publish box date format'); … … 116 119 <?php endif; ?> 117 120 118 <div class="misc-pub-section misc-pub-section- last"><label for="post_status"><?php _e('Status:') ?></label>121 <div class="misc-pub-section misc-pub-section-2-last"><label for="post_status"><?php _e('Status:') ?></label> 119 122 <b><span id="post-status-display"> 120 123 <?php … … 156 159 <a href="#post_status" class="cancel-post-status hide-if-no-js"><?php _e('Cancel'); ?></a> 157 160 </div> 158 </div> 159 160 <?php } else { ?> 161 </div> 162 163 <?php if ( $can_publish && 'pending' != $post->post_status ) { ?> 164 <!-- 165 <div class="insidebox"><input name="pending" type="submit" class="button" id="pending" tabindex="6" accesskey="r" value="<?php _e('Submit for Review') ?>" /></div> 166 --> 167 <?php } ?> 168 169 <?php } ?> 170 161 162 <?php } ?> 163 </div> 164 </div> 171 165 </div> 172 166 -
trunk/wp-admin/wp-admin.css
r9408 r9409 227 227 } 228 228 229 .misc-pub-section-last { 229 #normal-sortables .misc-pub-section { 230 min-height: 18px; 231 } 232 233 #normal-sortables .misc-pub-section-1-last, 234 .misc-pub-section-2-last { 230 235 border-bottom: 0; 231 236 } 232 237 238 #normal-sortables #misc-pub-block-1, 239 #normal-sortables #misc-pub-block-2 { 240 float: left; 241 min-height: 70px; 242 } 243 244 #normal-sortables #misc-pub-block-1 { 245 border-right: 1px solid #ddd; 246 } 247 248 #normal-sortables #misc-pub-block-2 { 249 border-left: 1px solid #ddd; 250 margin-left: -1px; 251 } 252 233 253 #minor-publishing-actions { 234 padding: 4px 4px 4px 0;254 padding: 6px 6px 6px 0; 235 255 float: right; 236 256 text-align: right; -
trunk/wp-includes/script-loader.php
r9402 r9409 317 317 $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'press-this-ie' ); 318 318 319 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081029 b' );319 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081029c' ); 320 320 $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' ); 321 321
Note: See TracChangeset
for help on using the changeset viewer.