Changeset 22719
- Timestamp:
- 11/20/2012 06:20:14 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/wp-admin-rtl.css
r22653 r22719 1910 1910 1911 1911 #dashboard-widgets h3 .postbox-title-action { 1912 right: auto; 1913 left: 10px; 1914 } 1915 1916 .js #dashboard-widgets h3 .postbox-title-action { 1912 1917 right: auto; 1913 1918 left: 30px; -
trunk/wp-admin/css/wp-admin.css
r22696 r22719 628 628 } 629 629 630 .no-js .widefat thead .check-column input, 631 .no-js .widefat tfoot .check-column input { 632 display: none; 633 } 634 630 635 .widefat .num, 631 636 .column-comments, … … 2309 2314 } 2310 2315 2311 .ie8 .welcome-panel .welcome-panel-column { 2316 .ie8 .welcome-panel .welcome-panel-column { 2312 2317 min-width: 230px; 2313 2318 } … … 3393 3398 } 3394 3399 3400 .no-js #postcustomstuff #enternew { 3401 display: none; 3402 } 3395 3403 3396 3404 /*------------------------------------------------------------------------------ … … 3445 3453 } 3446 3454 3447 #select-featured-image.has-featured-image .remove {3455 .js #select-featured-image.has-featured-image .remove { 3448 3456 display: inline-block; 3457 } 3458 3459 .no-js #select-featured-image .choose { 3460 display: none; 3449 3461 } 3450 3462 … … 4158 4170 .A1B1 .button { 4159 4171 float: left; 4172 } 4173 4174 .no-js .wp_attachment_image .button { 4175 display: none; 4160 4176 } 4161 4177 … … 6053 6069 #dashboard-widgets h3 .postbox-title-action { 6054 6070 position: absolute; 6055 right: 30px;6071 right: 10px; 6056 6072 padding: 0; 6057 6073 top: 5px; 6074 } 6075 6076 .js #dashboard-widgets h3 .postbox-title-action { 6077 right: 30px; 6058 6078 } 6059 6079 … … 6241 6261 6242 6262 /* QuickPress */ 6263 .no-js #dashboard_quick_press { 6264 display: none; 6265 } 6266 6243 6267 #dashboard_quick_press .easy-blogging { 6244 6268 padding: 0 8px; -
trunk/wp-admin/edit-form-advanced.php
r22490 r22719 323 323 324 324 if ( $post_type_object->public && ! ( 'pending' == get_post_status( $post ) && !current_user_can( $post_type_object->cap->publish_posts ) ) ) { ?> 325 <div id="edit-slug-box" >325 <div id="edit-slug-box" class="hide-if-no-js"> 326 326 <?php 327 327 if ( $sample_permalink_html && 'auto-draft' != get_post_status( $post ) ) -
trunk/wp-includes/class-wp-editor.php
r22567 r22719 110 110 } 111 111 112 $buttons .= '<a id="' . $editor_id . '-html" class=" hide-if-no-jswp-switch-editor switch-html" onclick="switchEditors.switchto(this);">' . __('Text') . "</a>\n";113 $buttons .= '<a id="' . $editor_id . '-tmce" class=" hide-if-no-jswp-switch-editor switch-tmce" onclick="switchEditors.switchto(this);">' . __('Visual') . "</a>\n";112 $buttons .= '<a id="' . $editor_id . '-html" class="wp-switch-editor switch-html" onclick="switchEditors.switchto(this);">' . __('Text') . "</a>\n"; 113 $buttons .= '<a id="' . $editor_id . '-tmce" class="wp-switch-editor switch-tmce" onclick="switchEditors.switchto(this);">' . __('Visual') . "</a>\n"; 114 114 } 115 115 … … 125 125 126 126 if ( !empty($buttons) || $set['media_buttons'] ) { 127 echo '<div id="wp-' . $editor_id . '-editor-tools" class="wp-editor-tools ">';127 echo '<div id="wp-' . $editor_id . '-editor-tools" class="wp-editor-tools hide-if-no-js">'; 128 128 echo $buttons; 129 129 … … 134 134 include(ABSPATH . 'wp-admin/includes/media.php'); 135 135 136 echo '<div id="wp-' . $editor_id . '-media-buttons" class=" hide-if-no-jswp-media-buttons">';136 echo '<div id="wp-' . $editor_id . '-media-buttons" class="wp-media-buttons">'; 137 137 do_action('media_buttons', $editor_id); 138 138 echo "</div>\n";
Note: See TracChangeset
for help on using the changeset viewer.