Admin pointers don't work at responsive sizes because of responsive layout adjustments. Hide the pointers for now until they're made responsive. Fixes #25984.

git-svn-id: https://develop.svn.wordpress.org/trunk@26419 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Thomas 2013-11-26 21:46:55 +00:00
parent 9366fb85dc
commit 8dcf785e95

View File

@ -146,4 +146,11 @@
right:0;
border-width: 17px 0 17px 15px;
border-left-color: #fff;
}
/* Disable pointers at responsive sizes */
@media screen and ( max-width: 782px ) {
.wp-pointer {
display: none;
}
}