mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
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:
@@ -66,7 +66,7 @@
|
||||
display: block !important;
|
||||
font: normal 13px/1 'dashicons';
|
||||
speak: none;
|
||||
margin: 2px 0;
|
||||
margin: 1px 0;
|
||||
text-align: center;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
width: 10px;
|
||||
@@ -188,7 +188,7 @@
|
||||
}
|
||||
|
||||
.wp-pointer-right .wp-pointer-arrow:before {
|
||||
margin-left: -14px;
|
||||
margin-left: -12px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-left-color: #fff;
|
||||
@@ -196,6 +196,12 @@
|
||||
content: ' ';
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-arrow:before {
|
||||
-webkit-transform: rotateY(180deg);
|
||||
-ms-transform: rotateY(180deg);
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
/* Disable pointers at responsive sizes */
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-pointer {
|
||||
|
||||
Reference in New Issue
Block a user