Fix dragging in IE10 on touch devices.
Props georgestephanis, koopersmith fixes #22583 git-svn-id: http://core.svn.wordpress.org/trunk@22866 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
555a87db2f
commit
adae728f00
|
@ -8303,6 +8303,12 @@ a.widget-control-edit {
|
|||
cursor: default;
|
||||
}
|
||||
|
||||
/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
|
||||
.ui-sortable,
|
||||
.ui-draggable {
|
||||
-ms-touch-action: none;
|
||||
}
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
|
|
|
@ -53,6 +53,12 @@ input[type="search"] {
|
|||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
|
||||
.ui-sortable,
|
||||
.ui-draggable {
|
||||
-ms-touch-action: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Modal
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue