Ticket #31474: 31474.2.patch
File 31474.2.patch, 3.3 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/press-this.css
1858 1858 color: #333; 1859 1859 } 1860 1860 1861 .post-option s .dashicons-arrow-right-alt2{1861 .post-option-forward:before { 1862 1862 position: absolute; 1863 1863 top: 50%; 1864 1864 right: 8px; 1865 1865 margin-top: -10px; 1866 content: "\f345" 1866 1867 } 1867 1868 1869 .post-option-back:before { 1870 content: "\f341"; 1871 } 1872 1868 1873 .lt-ie9 .options-panel, 1869 1874 .lt-ie9 .post-options { 1870 1875 border-left: 1px solid #e5e5e5; -
src/wp-admin/includes/class-wp-press-this.php
821 821 <span class="dashicons dashicons-admin-post"></span> 822 822 <span class="post-option-title"><?php _e( 'Format' ); ?></span> 823 823 <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> 825 825 </button> 826 826 <?php endif; ?> 827 827 … … 829 829 <span class="dashicons dashicons-category"></span> 830 830 <span class="post-option-title"><?php _e( 'Categories' ); ?></span> 831 831 <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> 833 833 </button> 834 834 835 835 <button type="button" class="button-reset post-option"> 836 836 <span class="dashicons dashicons-tag"></span> 837 837 <span class="post-option-title"><?php _e( 'Tags' ); ?></span> 838 838 <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> 840 840 </button> 841 841 </div> 842 842 843 843 <?php if ( $supports_formats ) : ?> 844 844 <div class="setting-modal is-off-screen is-hidden"> 845 845 <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> 847 847 <span class="setting-title" aria-hidden="true"><?php _e( 'Post format' ); ?></span> 848 848 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span> 849 849 </button> … … 853 853 854 854 <div class="setting-modal is-off-screen is-hidden"> 855 855 <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> 857 857 <span class="setting-title" aria-hidden="true"><?php _e( 'Categories' ); ?></span> 858 858 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span> 859 859 </button> … … 862 862 863 863 <div class="setting-modal tags is-off-screen is-hidden"> 864 864 <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> 866 866 <span class="setting-title" aria-hidden="true"><?php _e( 'Tags' ); ?></span> 867 867 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span> 868 868 </button>