Changeset 28107
- Timestamp:
- 04/13/2014 11:59:01 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r28093 r28107 1979 1979 if ( 'themes' === get_current_screen()->id ) { 1980 1980 $selector = '.theme.active .customize'; 1981 $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' );1981 $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center', 'my' => is_rtl() ? 'right-13px' : '' ); 1982 1982 } else { 1983 1983 $selector = 'a[href="customize.php"]'; 1984 1984 if ( is_rtl() ) { 1985 $position = array( 'edge' => 'right', 'align' => 'center -8px', 'my' => 'right-5px' );1985 $position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-5px' ); 1986 1986 } else { 1987 $position = array( 'edge' => 'left', 'align' => 'center -8px', 'my' => 'left-5px' );1987 $position = array( 'edge' => 'left', 'align' => 'center', 'my' => 'left-5px' ); 1988 1988 } 1989 1989 } -
trunk/src/wp-includes/css/wp-pointer.css
r27174 r28107 67 67 font: normal 13px/1 'dashicons'; 68 68 speak: none; 69 margin: 2px 0;69 margin: 1px 0; 70 70 text-align: center; 71 71 -webkit-font-smoothing: antialiased !important; … … 189 189 190 190 .wp-pointer-right .wp-pointer-arrow:before { 191 margin-left: -1 4px;191 margin-left: -12px; 192 192 margin-top: -13px; 193 193 border: 13px solid transparent; … … 195 195 display: block; 196 196 content: ' '; 197 } 198 199 .rtl .wp-pointer-arrow:before { 200 -webkit-transform: rotateY(180deg); 201 -ms-transform: rotateY(180deg); 202 transform: rotateY(180deg); 197 203 } 198 204
Note: See TracChangeset
for help on using the changeset viewer.