Make WordPress Core


Ignore:
Timestamp:
06/29/2014 04:05:53 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Fix feature pointer positioning issues for both LTR and RTL.

fixes #28062.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/template.php

    r28747 r28897  
    19931993        self::print_js( 'wp360_revisions', '.misc-pub-section.misc-pub-revisions', array(
    19941994            'content' => $content,
    1995             'position' => array( 'edge' => is_rtl() ? 'left' : 'right', 'align' => 'center', 'my' => is_rtl() ? 'left' : 'right-14px' ),
     1995            'position' => array( 'edge' => is_rtl() ? 'left' : 'right', 'align' => 'center' ),
    19961996        ) );
    19971997    }
     
    20212021        if ( 'themes' === get_current_screen()->id ) {
    20222022            $selector = '.theme.active .customize';
    2023             $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center', 'my' => is_rtl() ? 'right-13px' : '' );
     2023            $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' );
    20242024        } else {
    20252025            $selector = 'a[href="customize.php"]';
Note: See TracChangeset for help on using the changeset viewer.