diff options
author | Sergey Budkin <sergey@vaadin.com> | 2014-09-30 15:05:38 +0300 |
---|---|---|
committer | Markus Koivisto <markus@vaadin.com> | 2014-10-01 08:55:44 +0000 |
commit | 686c2ee15bc02bec6cff0d65990fd5c01a71e144 (patch) | |
tree | c9ae653e4037e21deddf27e32b88a2ae2ba28fdc /WebContent/VAADIN/themes/base | |
parent | 70d15130d1dfbe147fa663adbef6a3bb0cf9204d (diff) | |
download | vaadin-framework-686c2ee15bc02bec6cff0d65990fd5c01a71e144.tar.gz vaadin-framework-686c2ee15bc02bec6cff0d65990fd5c01a71e144.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')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 5 |
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; +} + |