Keep draggable panels from interfering with swipe scrolling on touch devices running Internet Explorer 10/11. Fixes #26297, props georgestephanis.

git-svn-id: https://develop.svn.wordpress.org/trunk@26715 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Thomas 2013-12-06 04:43:23 +00:00
parent d6e06a2ee5
commit 6384a83e5f
2 changed files with 24 additions and 0 deletions

View File

@ -11181,6 +11181,19 @@ div#widgets-right .closed .widgets-sortables {
.ui-sortable,
.ui-draggable {
-ms-touch-action: none;
touch-action: none;
}
.meta-box-sortables.ui-sortable,
.menu.ui-sortable {
-ms-touch-action: auto;
touch-action: auto;
}
.meta-box-sortables.ui-sortable .hndle,
.menu.ui-sortable .menu-item-handle {
-ms-touch-action: none;
touch-action: none;
}
/* Accordion */

View File

@ -84,6 +84,17 @@
.ui-sortable,
.ui-draggable {
-ms-touch-action: none;
touch-action: none;
}
.meta-box-sortables.ui-sortable {
-ms-touch-action: auto;
touch-action: auto;
}
.meta-box-sortables.ui-sortable .hndle {
-ms-touch-action: none;
touch-action: none;
}
/**