]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed the IE6 rendering bug #7314
authorJohn Alhroos <john.ahlroos@itmill.com>
Wed, 27 Jul 2011 13:54:02 +0000 (13:54 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Wed, 27 Jul 2011 13:54:02 +0000 (13:54 +0000)
svn changeset:19991/svn branch:6.6

WebContent/VAADIN/themes/reindeer/table/table.css

index 156c1c3e500c5c32220e18250d79763c53e17bc9..84c423bec9f2c89ebb1cc67cdb9f0769183883c6 100644 (file)
        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;
 }