Keep draggable panels from interfering with swipe scrolling on touch devices running Internet Explorer 10/11. Fixes #26297, props georgestephanis.
Built from https://develop.svn.wordpress.org/trunk@26715 git-svn-id: http://core.svn.wordpress.org/trunk@26604 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aff7304e0d
commit
1f5503f92e
|
@ -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 */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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 */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue