Fix feature pointer RTL placement.
props SergeyBiryukov, ocean90. fixes #27778. git-svn-id: https://develop.svn.wordpress.org/trunk@28107 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d2e679179b
commit
c43b8b063d
@ -1978,13 +1978,13 @@ final class WP_Internal_Pointers {
|
|||||||
|
|
||||||
if ( 'themes' === get_current_screen()->id ) {
|
if ( 'themes' === get_current_screen()->id ) {
|
||||||
$selector = '.theme.active .customize';
|
$selector = '.theme.active .customize';
|
||||||
$position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' );
|
$position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center', 'my' => is_rtl() ? 'right-13px' : '' );
|
||||||
} else {
|
} else {
|
||||||
$selector = 'a[href="customize.php"]';
|
$selector = 'a[href="customize.php"]';
|
||||||
if ( is_rtl() ) {
|
if ( is_rtl() ) {
|
||||||
$position = array( 'edge' => 'right', 'align' => 'center-8px', 'my' => 'right-5px' );
|
$position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-5px' );
|
||||||
} else {
|
} else {
|
||||||
$position = array( 'edge' => 'left', 'align' => 'center-8px', 'my' => 'left-5px' );
|
$position = array( 'edge' => 'left', 'align' => 'center', 'my' => 'left-5px' );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
font: normal 13px/1 'dashicons';
|
font: normal 13px/1 'dashicons';
|
||||||
speak: none;
|
speak: none;
|
||||||
margin: 2px 0;
|
margin: 1px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
-webkit-font-smoothing: antialiased !important;
|
-webkit-font-smoothing: antialiased !important;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
@ -188,7 +188,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer-right .wp-pointer-arrow:before {
|
.wp-pointer-right .wp-pointer-arrow:before {
|
||||||
margin-left: -14px;
|
margin-left: -12px;
|
||||||
margin-top: -13px;
|
margin-top: -13px;
|
||||||
border: 13px solid transparent;
|
border: 13px solid transparent;
|
||||||
border-left-color: #fff;
|
border-left-color: #fff;
|
||||||
@ -196,6 +196,12 @@
|
|||||||
content: ' ';
|
content: ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl .wp-pointer-arrow:before {
|
||||||
|
-webkit-transform: rotateY(180deg);
|
||||||
|
-ms-transform: rotateY(180deg);
|
||||||
|
transform: rotateY(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
/* Disable pointers at responsive sizes */
|
/* Disable pointers at responsive sizes */
|
||||||
@media screen and ( max-width: 782px ) {
|
@media screen and ( max-width: 782px ) {
|
||||||
.wp-pointer {
|
.wp-pointer {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user