diff options
author | Marc Englund <marc@vaadin.com> | 2013-04-12 16:16:48 +0300 |
---|---|---|
committer | Marc Englund <marc@vaadin.com> | 2013-04-12 16:17:01 +0300 |
commit | a4911981752e599918ba1f23ace5883aa5e7f4c2 (patch) | |
tree | c332fa76aa7fac7c4584fd2658359d5a851d07fc /WebContent/VAADIN/themes/base | |
parent | 0f7af13adf1b5451842fc35a00d873ddb1a2e577 (diff) | |
download | vaadin-framework-a4911981752e599918ba1f23ace5883aa5e7f4c2.tar.gz vaadin-framework-a4911981752e599918ba1f23ace5883aa5e7f4c2.zip |
Fixes #11152 (IE9 caret/cursor postion) by applying position:relative to inputs and textareas
Change-Id: I067cd44d21ece65a0988b2fbb832a903aaf92aba
Diffstat (limited to 'WebContent/VAADIN/themes/base')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss index e7fdd3fe84..d6dfed11df 100644 --- a/WebContent/VAADIN/themes/base/common/common.scss +++ b/WebContent/VAADIN/themes/base/common/common.scss @@ -204,6 +204,12 @@ body &.v-app-loading { padding: 2px; } +/* Fix for IE9 caret bug #11152 */ +input, +textarea { + position: relative; +} + .v-drag-element { z-index: 60000; /* override any other position: properties */ |