From e6fa392681846d8f9c61d412cdb35ffec99161d6 Mon Sep 17 00:00:00 2001 From: jwollert Date: Tue, 28 Jun 2011 17:21:16 +0200 Subject: [PATCH] IE fix to show all empty cells in task board table --- assets/stylesheets/taskboard.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/stylesheets/taskboard.css b/assets/stylesheets/taskboard.css index 69ca155715..94fd1a1e28 100644 --- a/assets/stylesheets/taskboard.css +++ b/assets/stylesheets/taskboard.css @@ -61,6 +61,10 @@ See RB.Taskboard.initialize() border:1px solid #CCCCCC; border-top:none; margin-right:10px; + /* IE7 table fix */ + table-layout: fixed; + border-collapse: collapse; + empty-cells: show; } #rb .board tr:hover { background-color:#ffffff;