[Mpuls-commits] r5311 - base/trunk/mpulsweb/public/styles

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Sep 9 14:59:15 CEST 2011


Author: roland
Date: 2011-09-09 14:59:14 +0200 (Fri, 09 Sep 2011)
New Revision: 5311

Modified:
   base/trunk/mpulsweb/public/styles/all.css
Log:
Fix CSS problem with internet explorer

Change table-layout on evaluation tables from "fixed" to the default "auto".
This caused very long tables to become unreadable on internet explorer


Modified: base/trunk/mpulsweb/public/styles/all.css
===================================================================
--- base/trunk/mpulsweb/public/styles/all.css	2011-09-09 10:48:51 UTC (rev 5310)
+++ base/trunk/mpulsweb/public/styles/all.css	2011-09-09 12:59:14 UTC (rev 5311)
@@ -179,7 +179,8 @@
 }
 
 div.evaluation table {
-	width:auto;
+    width:auto;
+    table-layout: auto;
 }
 
 .table_checkbox {



More information about the Mpuls-commits mailing list