Make WordPress Core

Ticket #55364: 55364.diff

File 55364.diff, 2.2 KB (added by afercia, 3 years ago)
  • src/wp-admin/css/list-tables.css

     
    897897}
    898898
    899899.inline-edit-row .submit {
     900        display: flex;
     901        flex-wrap: wrap;
     902        align-items: center;
    900903        clear: both;
    901904        padding: 0.5em;
    902905        margin: 0.5em 0 0;
    903906}
    904907
     908.inline-edit-save.submit .button {
     909        margin-right: 8px;
     910}
     911
     912.inline-edit-save .spinner {
     913        float: none;
     914        margin: 0;
     915}
     916
    905917.inline-edit-row .notice-error {
     918        box-sizing: border-box;
     919        min-width: 100%;
    906920        margin-top: 1em;
    907921}
    908922
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    20082008                        ?>
    20092009
    20102010                        <div class="submit inline-edit-save">
    2011                                 <button type="button" class="button cancel alignleft"><?php _e( 'Cancel' ); ?></button>
    2012 
    20132011                                <?php if ( ! $bulk ) : ?>
    20142012                                        <?php wp_nonce_field( 'inlineeditnonce', '_inline_edit', false ); ?>
    2015                                         <button type="button" class="button button-primary save alignright"><?php _e( 'Update' ); ?></button>
    2016                                         <span class="spinner"></span>
     2013                                        <button type="button" class="button button-primary save"><?php _e( 'Update' ); ?></button>
    20172014                                <?php else : ?>
    2018                                         <?php submit_button( __( 'Update' ), 'primary alignright', 'bulk_edit', false ); ?>
     2015                                        <?php submit_button( __( 'Update' ), 'primary', 'bulk_edit', false ); ?>
    20192016                                <?php endif; ?>
    20202017
     2018                                <button type="button" class="button cancel"><?php _e( 'Cancel' ); ?></button>
     2019
     2020                                <?php if ( ! $bulk ) : ?>
     2021                                        <span class="spinner"></span>
     2022                                <?php endif; ?>
     2023
    20212024                                <input type="hidden" name="post_view" value="<?php echo esc_attr( $m ); ?>" />
    20222025                                <input type="hidden" name="screen" value="<?php echo esc_attr( $screen->id ); ?>" />
    20232026                                <?php if ( ! $bulk && ! post_type_supports( $screen->post_type, 'author' ) ) : ?>
    20242027                                        <input type="hidden" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
    20252028                                <?php endif; ?>
    2026                                 <br class="clear" />
    20272029
    20282030                                <div class="notice notice-error notice-alt inline hidden">
    20292031                                        <p class="error"></p>