diff --git src/wp-admin/includes/class-wp-internal-pointers.php src/wp-admin/includes/class-wp-internal-pointers.php
index de9c3ef8e2..be5ed50339 100644
|
|
final class WP_Internal_Pointers { |
170 | 170 | if ( is_rtl() ) { |
171 | 171 | $position = array( |
172 | 172 | 'edge' => 'right', |
173 | | 'align' => 'left', |
| 173 | 'align' => 'bottom', |
174 | 174 | ); |
175 | 175 | } else { |
176 | 176 | $position = array( |
177 | 177 | 'edge' => 'left', |
178 | | 'align' => 'right', |
| 178 | 'align' => 'bottom', |
179 | 179 | ); |
180 | 180 | } |
181 | 181 | |
182 | 182 | $js_args = array( |
183 | | 'content' => $content, |
184 | | 'position' => $position, |
| 183 | 'content' => $content, |
| 184 | 'position' => $position, |
| 185 | 'pointerClass' => 'wp-pointer arrow-bottom', |
| 186 | 'pointerWidth' => 420, |
185 | 187 | ); |
186 | 188 | self::print_js( 'wp496_privacy', '#menu-tools', $js_args ); |
187 | 189 | } |
diff --git src/wp-includes/css/wp-pointer.css src/wp-includes/css/wp-pointer.css
index f1856d995c..f8d58be9f6 100644
|
|
|
207 | 207 | content: " "; |
208 | 208 | } |
209 | 209 | |
| 210 | .wp-pointer.arrow-bottom .wp-pointer-content { |
| 211 | margin-bottom: -45px; |
| 212 | } |
| 213 | |
| 214 | .wp-pointer.arrow-bottom .wp-pointer-arrow { |
| 215 | top: 100%; |
| 216 | margin-top: -30px; |
| 217 | } |
| 218 | |
210 | 219 | /* Disable pointers at responsive sizes */ |
211 | 220 | @media screen and ( max-width: 782px ) { |
212 | 221 | .wp-pointer { |