summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/common
diff options
context:
space:
mode:
authorSergey Budkin <sergey@vaadin.com>2014-09-30 15:05:38 +0300
committerMarkus Koivisto <markus@vaadin.com>2014-10-14 17:57:51 +0300
commitf55c6c21505d9d00f2369c436d27dd06d98947e8 (patch)
tree561f43e06a0005475499a8c275898b8acb9cb30d /WebContent/VAADIN/themes/base/common
parentfbca7e57f42bdcbd9db693814d33c3561e3b61dc (diff)
downloadvaadin-framework-f55c6c21505d9d00f2369c436d27dd06d98947e8.tar.gz
vaadin-framework-f55c6c21505d9d00f2369c436d27dd06d98947e8.zip
A cursor is displayed when clicking on radio buttons on iOS 8.0 (#14681)
Added css instructions for enclosing span to prevent this. Change-Id: Ib5e396b85ce37ab722e70fddf3553179248d59e8
Diffstat (limited to 'WebContent/VAADIN/themes/base/common')
-rw-r--r--WebContent/VAADIN/themes/base/common/common.scss5
1 files changed, 5 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss
index 77248c0c96..2f03561c0b 100644
--- a/WebContent/VAADIN/themes/base/common/common.scss
+++ b/WebContent/VAADIN/themes/base/common/common.scss
@@ -274,3 +274,8 @@ input::-ms-clear {
width: 10px;
overflow: hidden;
}
+/* fix for #14681 - mobile safari 8 sometimes displayed text cursor on that element */
+.v-radiobutton {
+ -webkit-user-select: none;
+}
+