Make WordPress Core

Ticket #35076: 35076.patch

File 35076.patch, 3.9 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/edit.css

     
    303303        padding: 3px 5px 5px;
    304304}
    305305
     306#set-post-thumbnail {
     307        display: inline-block;
     308        max-width: 100%;
     309}
     310
    306311#postimagediv .inside img {
    307312        max-width: 100%;
    308313        height: auto;
    309314        width: auto;
     315        vertical-align: top;
    310316        background-image: -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    311317        background-image: linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    312318        background-position: 0 0, 10px 10px;
  • src/wp-admin/includes/post.php

     
    13801380
    13811381        $post               = get_post( $post );
    13821382        $post_type_object   = get_post_type_object( $post->post_type );
    1383         $set_thumbnail_link = '<p class="hide-if-no-js"><a title="%s" href="%s" id="set-post-thumbnail" class="thickbox">%s</a></p>';
     1383        $set_thumbnail_link = '<p class="hide-if-no-js"><a href="%s" id="set-post-thumbnail" aria-describedby="set-post-thumbnail-desc" class="thickbox">%s</a></p>';
    13841384        $upload_iframe_src  = get_upload_iframe_src( 'image', $post->ID );
    13851385
    13861386        $content = sprintf( $set_thumbnail_link,
    1387                 esc_attr( $post_type_object->labels->set_featured_image ),
    13881387                esc_url( $upload_iframe_src ),
    13891388                esc_html( $post_type_object->labels->set_featured_image )
    13901389        );
     
    14161415                if ( !empty( $thumbnail_html ) ) {
    14171416                        $ajax_nonce = wp_create_nonce( 'set_post_thumbnail-' . $post->ID );
    14181417                        $content = sprintf( $set_thumbnail_link,
    1419                                 esc_attr( $post_type_object->labels->set_featured_image ),
    14201418                                esc_url( $upload_iframe_src ),
    14211419                                $thumbnail_html
    14221420                        );
     1421                        $content .= '<p class="hide-if-no-js howto" id="set-post-thumbnail-desc">' . esc_html( $post_type_object->labels->edit_update_featured_image ) . '</p>';
    14231422                        $content .= '<p class="hide-if-no-js"><a href="#" id="remove-post-thumbnail" onclick="WPRemoveThumbnail(\'' . $ajax_nonce . '\');return false;">' . esc_html( $post_type_object->labels->remove_featured_image ) . '</a></p>';
    14241423                }
    14251424        }
  • src/wp-includes/post.php

     
    13401340 * - filter_items_list - String for the table views hidden heading.
    13411341 * - items_list_navigation - String for the table pagination hidden heading.
    13421342 * - items_list - String for the table hidden heading.
     1343 * - edit_update_featured_image - Default is Click the image to edit or update.
    13431344 *
    13441345 * Above, the first default value is for non-hierarchical post types (like posts)
    13451346 * and the second one is for hierarchical post types (like pages).
     
    13491350 *              and `use_featured_image` labels.
    13501351 * @since 4.4.0 Added the `insert_into_item`, `uploaded_to_this_item`, `filter_items_list`,
    13511352 *              `items_list_navigation`, and `items_list` labels.
     1353 * @since 4.5.0 Added the `edit_update_featured_image` label.
    13521354 *
    13531355 * @access private
    13541356 *
     
    13791381                'filter_items_list' => array( __( 'Filter posts list' ), __( 'Filter pages list' ) ),
    13801382                'items_list_navigation' => array( __( 'Posts list navigation' ), __( 'Pages list navigation' ) ),
    13811383                'items_list' => array( __( 'Posts list' ), __( 'Pages list' ) ),
     1384                'edit_update_featured_image' => array( __( 'Click the image to edit or update' ), __( 'Click the image to edit or update' ) ),
    13821385        );
    13831386        $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
    13841387