From: Sergey Budkin Date: Tue, 30 Sep 2014 12:05:38 +0000 (+0300) Subject: A cursor is displayed when clicking on radio buttons on iOS 8.0 (#14681) X-Git-Tag: 7.4.0.beta1~187 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=686c2ee15bc02bec6cff0d65990fd5c01a71e144;p=vaadin-framework.git 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 --- 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; +} +