Skip to content

Commit

Permalink
Use touch-action: manipulation in controls. Closes #1787
Browse files Browse the repository at this point in the history
  • Loading branch information
tadatuta committed Apr 20, 2016
1 parent 2b12720 commit 21f0c30
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common.blocks/attach/attach.styl
@@ -1,5 +1,7 @@
.attach
{
touch-action: manipulation;

&__file,
&__no-file,
.button__text,
Expand Down
4 changes: 4 additions & 0 deletions common.blocks/button/button.styl
@@ -0,0 +1,4 @@
.button
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/checkbox/checkbox.styl
@@ -0,0 +1,4 @@
.checkbox
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/input/input.styl
@@ -0,0 +1,4 @@
.input
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/link/link.styl
@@ -0,0 +1,4 @@
.link
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/menu-item/menu-item.styl
@@ -0,0 +1,4 @@
.menu-item
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/radio/radio.styl
@@ -0,0 +1,4 @@
.radio
{
touch-action: manipulation;
}
4 changes: 4 additions & 0 deletions common.blocks/textarea/textarea.styl
@@ -0,0 +1,4 @@
.textarea
{
touch-action: manipulation;
}

0 comments on commit 21f0c30

Please sign in to comment.