diff options
author | TJ VanToll <tj.vantoll@gmail.com> | 2013-12-12 22:10:06 -0500 |
---|---|---|
committer | TJ VanToll <tj.vantoll@gmail.com> | 2014-01-15 15:38:10 -0500 |
commit | 28310ff55f062199fb2f187ea13d3561a879aea8 (patch) | |
tree | 84bfaf2266437b2357967dea5284207c71a30448 /themes/base | |
parent | 1bbbcc723c489d7ef7d72bb62564b8f07805c41c (diff) | |
download | jquery-ui-28310ff55f062199fb2f187ea13d3561a879aea8.tar.gz jquery-ui-28310ff55f062199fb2f187ea13d3561a879aea8.zip |
Slider & Interactions: Add Windows 8 touch support
Fixes #9709
Fixes #9710
Closes gh-1152
Diffstat (limited to 'themes/base')
-rw-r--r-- | themes/base/jquery.ui.base.css | 2 | ||||
-rw-r--r-- | themes/base/jquery.ui.draggable.css | 12 | ||||
-rw-r--r-- | themes/base/jquery.ui.resizable.css | 2 | ||||
-rw-r--r-- | themes/base/jquery.ui.selectable.css | 4 | ||||
-rw-r--r-- | themes/base/jquery.ui.slider.css | 2 | ||||
-rw-r--r-- | themes/base/jquery.ui.sortable.css | 12 |
6 files changed, 34 insertions, 0 deletions
diff --git a/themes/base/jquery.ui.base.css b/themes/base/jquery.ui.base.css index aefa81de4..8ff61a511 100644 --- a/themes/base/jquery.ui.base.css +++ b/themes/base/jquery.ui.base.css @@ -15,11 +15,13 @@ @import url("jquery.ui.button.css"); @import url("jquery.ui.datepicker.css"); @import url("jquery.ui.dialog.css"); +@import url("jquery.ui.draggable.css"); @import url("jquery.ui.menu.css"); @import url("jquery.ui.progressbar.css"); @import url("jquery.ui.resizable.css"); @import url("jquery.ui.selectable.css"); @import url("jquery.ui.selectmenu.css"); +@import url("jquery.ui.sortable.css"); @import url("jquery.ui.slider.css"); @import url("jquery.ui.spinner.css"); @import url("jquery.ui.tabs.css"); diff --git a/themes/base/jquery.ui.draggable.css b/themes/base/jquery.ui.draggable.css new file mode 100644 index 000000000..707134e78 --- /dev/null +++ b/themes/base/jquery.ui.draggable.css @@ -0,0 +1,12 @@ +/*! + * jQuery UI Draggable @VERSION + * http://jqueryui.com + * + * Copyright 2013 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +.ui-draggable-handle { + -ms-touch-action: none; + touch-action: none; +} diff --git a/themes/base/jquery.ui.resizable.css b/themes/base/jquery.ui.resizable.css index f0f8c474d..23ec832eb 100644 --- a/themes/base/jquery.ui.resizable.css +++ b/themes/base/jquery.ui.resizable.css @@ -13,6 +13,8 @@ position: absolute; font-size: 0.1px; display: block; + -ms-touch-action: none; + touch-action: none; } .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { diff --git a/themes/base/jquery.ui.selectable.css b/themes/base/jquery.ui.selectable.css index d44ad46cf..4fae8d149 100644 --- a/themes/base/jquery.ui.selectable.css +++ b/themes/base/jquery.ui.selectable.css @@ -6,6 +6,10 @@ * Released under the MIT license. * http://jquery.org/license */ +.ui-selectable { + -ms-touch-action: none; + touch-action: none; +} .ui-selectable-helper { position: absolute; z-index: 100; diff --git a/themes/base/jquery.ui.slider.css b/themes/base/jquery.ui.slider.css index b6b68b8b0..91bc1a048 100644 --- a/themes/base/jquery.ui.slider.css +++ b/themes/base/jquery.ui.slider.css @@ -18,6 +18,8 @@ width: 1.2em; height: 1.2em; cursor: default; + -ms-touch-action: none; + touch-action: none; } .ui-slider .ui-slider-range { position: absolute; diff --git a/themes/base/jquery.ui.sortable.css b/themes/base/jquery.ui.sortable.css new file mode 100644 index 000000000..139c705db --- /dev/null +++ b/themes/base/jquery.ui.sortable.css @@ -0,0 +1,12 @@ +/*! + * jQuery UI Sortable @VERSION + * http://jqueryui.com + * + * Copyright 2013 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +.ui-sortable-handle { + -ms-touch-action: none; + touch-action: none; +} |