diff --git a/scss/_buttons.scss b/scss/_buttons.scss index 37ad14ddd7..f82f43305d 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -8,7 +8,6 @@ text-align: center; white-space: nowrap; vertical-align: middle; - touch-action: manipulation; cursor: pointer; user-select: none; border: $border-width solid transparent; diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 58fd54c683..2dddf5f1db 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -206,6 +206,28 @@ img { cursor: pointer; } + +// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property. +// +// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 +// DON'T remove the click delay when `` is present. +// However, they DO support removing the click delay via `touch-action: manipulation`. +// See: +// * http://caniuse.com/#feat=css-touch-action +// * http://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay + +a, +area, +button, +[role="button"], +input, +label, +select, +summary, +textarea { + touch-action: manipulation; +} + // // Tables //