mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 17:20:07 +00:00
RTL styles for pointers. props helenyhou, fixes #19335.
git-svn-id: https://develop.svn.wordpress.org/trunk@19419 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1775,7 +1775,7 @@ final class WP_Internal_Pointers {
|
||||
|
||||
WP_Internal_Pointers::print_js( 'wp330_media_uploader', '#content-add_media', array(
|
||||
'content' => $content,
|
||||
'position' => array( 'edge' => 'left', 'align' => 'center' ),
|
||||
'position' => array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' ),
|
||||
) );
|
||||
}
|
||||
|
||||
@@ -1790,7 +1790,7 @@ final class WP_Internal_Pointers {
|
||||
|
||||
WP_Internal_Pointers::print_js( 'wp330_saving_widgets', '#message2', array(
|
||||
'content' => $content,
|
||||
'position' => array( 'edge' => 'top', 'align' => 'left' ),
|
||||
'position' => array( 'edge' => 'top', 'align' => is_rtl() ? 'right' : 'left' ),
|
||||
) );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user