diff options
-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 */ |