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:
parent
d6e06a2ee5
commit
6384a83e5f
@ -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 */
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user