Make WordPress Core

Ticket #32757: 32757-unordered-list.patch

File 32757-unordered-list.patch, 1.8 KB (added by afercia, 10 years ago)
  • src/wp-admin/css/press-this.css

     
    405405        background-color: #fff;
    406406        min-width: 180px;
    407407        max-width: 100%;
     408        margin: 0;
    408409        padding: 8px;
     410        list-style: none;
    409411        -webkit-box-shadow: 1px 0 4px rgba( 0, 0, 0, 0.15 );
    410412        box-shadow: 1px 0 4px rgba( 0, 0, 0, 0.15 );
    411413}
  • src/wp-admin/includes/class-wp-press-this.php

     
    14581458                                                <span class="screen-reader-text"><?php _e('Toggle dropdown'); ?></span>
    14591459                                        </button>
    14601460                                </div>
    1461                                 <div class="split-button-body">
    1462                                         <button type="button" class="button-subtle draft-button split-button-option" aria-live="polite"><?php _e( 'Save Draft' ); ?></button>
    1463                                         <a href="<?php echo esc_url( get_edit_post_link( $post_ID ) ); ?>" class="edit-post-link split-button-option" target="_blank"><?php _e( 'Standard Editor' ); ?></a>
    1464                                         <button type="button" class="button-subtle preview-button split-button-option"><?php _e( 'Preview' ); ?></button>
    1465                                 </div>
     1461                                <ul class="split-button-body">
     1462                                        <li><button type="button" class="button-subtle draft-button split-button-option" aria-live="polite"><?php _e( 'Save Draft' ); ?></button></li>
     1463                                        <li><a href="<?php echo esc_url( get_edit_post_link( $post_ID ) ); ?>" class="edit-post-link split-button-option" target="_blank"><?php _e( 'Standard Editor' ); ?></a></li>
     1464                                        <li><button type="button" class="button-subtle preview-button split-button-option"><?php _e( 'Preview' ); ?></button></li>
     1465                                </ul>
    14661466                        </div>
    14671467                </div>
    14681468        </div>