diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2011-07-27 13:54:02 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2011-07-27 13:54:02 +0000 |
commit | a8a4c668cbb392cb2e999d4cdb85d02e677c5d5e (patch) | |
tree | 8ab818dcf3c8d327d629c171b5048c8dbb0077d8 /WebContent/VAADIN/themes | |
parent | f72561320e6d16656443d1746f97b9f3f3b038e3 (diff) | |
download | vaadin-framework-a8a4c668cbb392cb2e999d4cdb85d02e677c5d5e.tar.gz vaadin-framework-a8a4c668cbb392cb2e999d4cdb85d02e677c5d5e.zip |
Fixed the IE6 rendering bug #7314
svn changeset:19991/svn branch:6.6
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/table/table.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/table/table.css b/WebContent/VAADIN/themes/reindeer/table/table.css index 156c1c3e50..84c423bec9 100644 --- a/WebContent/VAADIN/themes/reindeer/table/table.css +++ b/WebContent/VAADIN/themes/reindeer/table/table.css @@ -24,10 +24,15 @@ line-height: normal; } +.v-ie6 .v-table, .v-ie6 .v-table-header-wrap, .v-ie6 .v-table-footer-wrap, .v-ie6 .v-table-column-selector{ - /* Fixes IE6 overflow bug #7314 which causes Table headers to overflow and cover the column selector. */ + /* The header will overflow the Table due to a bug in IE6 after changes in #3003. To fix this (#7314) + * we need to apply position:relative to the wrappers and selector to make them appear on top of the + * header. We also need to apply it to the table root div to get rid of a really wierd IE6 rendering bug + * caused by all this relativeness (see attachment in #7314). + */ position:relative; } |