diff options
author | Matti Hosio <mhosio@vaadin.com> | 2015-01-30 17:05:55 +0200 |
---|---|---|
committer | Matti Hosio <mhosio@vaadin.com> | 2015-02-02 08:54:30 +0200 |
commit | 15c4b00eee1b0aa19e13ffdc103de677be7c2d67 (patch) | |
tree | 1eee2cc851400e968d188112c26b73a3142a7a00 /WebContent/VAADIN/themes/valo/components | |
parent | e88f71dd6d1d7634e3a90a7e53859ff6dc028e21 (diff) | |
download | vaadin-framework-15c4b00eee1b0aa19e13ffdc103de677be7c2d67.tar.gz vaadin-framework-15c4b00eee1b0aa19e13ffdc103de677be7c2d67.zip |
Fix for TextField focus problem with Valo in IE (#16491)
When clicking the text field with text, the caret was always moved to the beginning. Related also to ticket #11152.
Change-Id: I6dd8dcdc51892c2a4f51a9590d4ad435a8dbaba9
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_orderedlayout.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_orderedlayout.scss b/WebContent/VAADIN/themes/valo/components/_orderedlayout.scss index fb40763ade..8a7c877d69 100644 --- a/WebContent/VAADIN/themes/valo/components/_orderedlayout.scss +++ b/WebContent/VAADIN/themes/valo/components/_orderedlayout.scss @@ -43,6 +43,11 @@ .v-horizontal > .v-expand > .v-slot { height: 100%; } + + /* Workaround for IE8+IE9 bug where clicking inside an input area which is inside a div with negative margin causes cursor position to jump to wrong position. See #11152 */ + .v-horizontal > .v-expand > .v-slot { + position: relative; + } .v-vertical > .v-spacing, .v-vertical > .v-expand > .v-spacing { |