diff options
author | John Ahlroos <john@vaadin.com> | 2013-03-11 17:33:48 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-03-12 10:50:44 +0000 |
commit | 06748244ae0ebd8f43742a2c0b3349794b169b45 (patch) | |
tree | 57822d98b145af25c3eb52693b0eb3d9c90a16f7 /WebContent | |
parent | d0b5b614e9e4dfb53dfcdcc53096b2f26ed12327 (diff) | |
download | vaadin-framework-06748244ae0ebd8f43742a2c0b3349794b169b45.tar.gz vaadin-framework-06748244ae0ebd8f43742a2c0b3349794b169b45.zip |
Removes the clear button added to all input fields by IE10 #11300
Change-Id: Iae8f2073356db9702bbd0c63bc639cbb4ad27823
Diffstat (limited to 'WebContent')
-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 e7fdd3fe84..e801ec2821 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -204,6 +204,11 @@ body &.v-app-loading { padding: 2px; } +/* Removes clear button from input fields introduced by IE10 */ +input::-ms-clear { + display: none; +} + .v-drag-element { z-index: 60000; /* override any other position: properties */ |