Changeset 31577 for trunk/src/wp-admin/includes/class-wp-press-this.php
- Timestamp:
- 02/27/2015 07:43:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.