diff options
author | John Ahlroos <john@vaadin.com> | 2013-06-06 15:21:11 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2013-06-06 15:21:11 +0300 |
commit | 8f4add90a7b6c851d26114b946a5a36470004b2f (patch) | |
tree | ef3e1f4fdd79258f2bf294575254baf4372da48f /WebContent/VAADIN/themes | |
parent | 9b3807293d3393a66390bb5c97d464fe84aa48c1 (diff) | |
download | vaadin-framework-8f4add90a7b6c851d26114b946a5a36470004b2f.tar.gz vaadin-framework-8f4add90a7b6c851d26114b946a5a36470004b2f.zip |
Fixed button highlighting when dragging #10917
Change-Id: I69ff2c5a987e26d5d065f7c5a7ac45f9d6fa289a
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r-- | WebContent/VAADIN/themes/base/button/button.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/base/button/button.scss b/WebContent/VAADIN/themes/base/button/button.scss index 66c7c13ce8..694e49a359 100644 --- a/WebContent/VAADIN/themes/base/button/button.scss +++ b/WebContent/VAADIN/themes/base/button/button.scss @@ -18,9 +18,11 @@ font: inherit; font-size: $font-size; line-height: normal; + -webkit-touch-callout: none; + -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; - -ie-user-select: none; + -ms-user-select: none; user-select: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; |