Changeset 31577
- Timestamp:
- 02/27/2015 07:43:33 PM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/press-this.css
r31566 r31577 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" 1867 } 1868 1869 .post-option-back:before { 1870 content: "\f341"; 1866 1871 } 1867 1872 -
trunk/src/wp-admin/includes/class-wp-press-this.php
r31571 r31577 509 509 $styles .= ','; 510 510 } 511 return $styles . admin_url( 'css/press-this-editor.css' ); 511 512 $press_this = admin_url( 'css/press-this-editor.css' ); 513 if ( is_rtl() ) { 514 $press_this = str_replace( '.css', '-rtl.css', $press_this ); 515 } 516 517 return $styles . $press_this; 512 518 } 513 519 … … 822 828 <span class="post-option-title"><?php _e( 'Format' ); ?></span> 823 829 <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>830 <span class="dashicons post-option-forward"></span> 825 831 </button> 826 832 <?php endif; ?> … … 830 836 <span class="post-option-title"><?php _e( 'Categories' ); ?></span> 831 837 <span class="post-option-contents" id="post-option-category"></span> 832 <span class="dashicons dashicons-arrow-right-alt2"></span>838 <span class="dashicons post-option-forward"></span> 833 839 </button> 834 840 … … 837 843 <span class="post-option-title"><?php _e( 'Tags' ); ?></span> 838 844 <span class="post-option-contents" id="post-option-tags"></span> 839 <span class="dashicons dashicons-arrow-right-alt2"></span>845 <span class="dashicons post-option-forward"></span> 840 846 </button> 841 847 </div> … … 844 850 <div class="setting-modal is-off-screen is-hidden"> 845 851 <button type="button" class="button-reset modal-close"> 846 <span class="dashicons dashicons-arrow-left-alt2"></span>852 <span class="dashicons post-option-back"></span> 847 853 <span class="setting-title" aria-hidden="true"><?php _e( 'Post format' ); ?></span> 848 854 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span> … … 854 860 <div class="setting-modal is-off-screen is-hidden"> 855 861 <button type="button" class="button-reset modal-close"> 856 <span class="dashicons dashicons-arrow-left-alt2"></span>862 <span class="dashicons post-option-back"></span> 857 863 <span class="setting-title" aria-hidden="true"><?php _e( 'Categories' ); ?></span> 858 864 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span> … … 863 869 <div class="setting-modal tags is-off-screen is-hidden"> 864 870 <button type="button" class="button-reset modal-close"> 865 <span class="dashicons dashicons-arrow-left-alt2"></span>871 <span class="dashicons post-option-back"></span> 866 872 <span class="setting-title" aria-hidden="true"><?php _e( 'Tags' ); ?></span> 867 873 <span class="screen-reader-text"><?php _e( 'Back to post options' ) ?></span>
Note: See TracChangeset
for help on using the changeset viewer.