Make WordPress Core

Ticket #31474: 31474.2.patch

File 31474.2.patch, 3.3 KB (added by ocean90, 10 years ago)

Fix for arrows

  • src/wp-admin/css/press-this.css

     
    18581858        color: #333;
    18591859}
    18601860
    1861 .post-options .dashicons-arrow-right-alt2 {
     1861.post-option-forward:before {
    18621862        position: absolute;
    18631863        top: 50%;
    18641864        right: 8px;
    18651865        margin-top: -10px;
     1866        content: "\f345"
    18661867}
    18671868
     1869.post-option-back:before {
     1870        content: "\f341";
     1871}
     1872
    18681873.lt-ie9 .options-panel,
    18691874.lt-ie9 .post-options {
    18701875        border-left: 1px solid #e5e5e5;
  • src/wp-admin/includes/class-wp-press-this.php

     
    821821                                                <span class="dashicons dashicons-admin-post"></span>
    822822                                                <span class="post-option-title"><?php _e( 'Format' ); ?></span>
    823823                                                <span class="post-option-contents" id="post-option-post-format"><?php echo esc_html( get_post_format_string( $post_format ) ); ?></span>
    824                                                 <span class="dashicons dashicons-arrow-right-alt2"></span>
     824                                                <span class="dashicons post-option-forward"></span>
    825825                                        </button>
    826826                                <?php endif; ?>
    827827
     
    829829                                        <span class="dashicons dashicons-category"></span>
    830830                                        <span class="post-option-title"><?php _e( 'Categories' ); ?></span>
    831831                                        <span class="post-option-contents" id="post-option-category"></span>
    832                                         <span class="dashicons dashicons-arrow-right-alt2"></span>
     832                                        <span class="dashicons post-option-forward"></span>
    833833                                </button>
    834834
    835835                                <button type="button" class="button-reset post-option">
    836836                                        <span class="dashicons dashicons-tag"></span>
    837837                                        <span class="post-option-title"><?php _e( 'Tags' ); ?></span>
    838838                                        <span class="post-option-contents" id="post-option-tags"></span>
    839                                         <span class="dashicons dashicons-arrow-right-alt2"></span>
     839                                        <span class="dashicons post-option-forward"></span>
    840840                                </button>
    841841                        </div>
    842842
    843843                        <?php if ( $supports_formats ) : ?>
    844844                                <div class="setting-modal is-off-screen is-hidden">
    845845                                        <button type="button" class="button-reset modal-close">
    846                                                 <span class="dashicons dashicons-arrow-left-alt2"></span>
     846                                                <span class="dashicons post-option-back"></span>
    847847                                                <span class="setting-title" aria-hidden="true"><?php _e( 'Post format' ); ?></span>
    848848                                                <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span>
    849849                                        </button>
     
    853853
    854854                        <div class="setting-modal is-off-screen is-hidden">
    855855                                <button type="button" class="button-reset modal-close">
    856                                         <span class="dashicons dashicons-arrow-left-alt2"></span>
     856                                        <span class="dashicons post-option-back"></span>
    857857                                        <span class="setting-title" aria-hidden="true"><?php _e( 'Categories' ); ?></span>
    858858                                        <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span>
    859859                                </button>
     
    862862
    863863                        <div class="setting-modal tags is-off-screen is-hidden">
    864864                                <button type="button" class="button-reset modal-close">
    865                                         <span class="dashicons dashicons-arrow-left-alt2"></span>
     865                                        <span class="dashicons post-option-back"></span>
    866866                                        <span class="setting-title" aria-hidden="true"><?php _e( 'Tags' ); ?></span>
    867867                                        <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span>
    868868                                </button>