From: <df...@us...> - 2009-04-09 15:38:58
|
Revision: 1137 http://openutils.svn.sourceforge.net/openutils/?rev=1137&view=rev Author: dfghi Date: 2009-04-09 15:38:48 +0000 (Thu, 09 Apr 2009) Log Message: ----------- Fix grid table out of borders on IE6. On behalf of Diego. Modified Paths: -------------- trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl Added Paths: ----------- trunk/openutils-mgnlcontrols/src/main/resources/mgnl-resources/controls/css/grid-ie6fix.css Modified: trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl =================================================================== --- trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl 2009-04-09 15:33:56 UTC (rev 1136) +++ trunk/openutils-mgnlcontrols/src/main/resources/dialogs/grid.ftl 2009-04-09 15:38:48 UTC (rev 1137) @@ -12,6 +12,9 @@ <link rel="stylesheet" type="text/css" href="${request.contextPath}/.resources/ext/css/ext-all.css" /> <link rel="stylesheet" type="text/css" href="${request.contextPath}/.resources/controls/css/grid.css" /> + <!--[if IE 6]> + <link rel="stylesheet" type="text/css" href="${request.contextPath}/.resources/controls/css/grid-ie6fix.css" /> + <![endif]--> [/#if] [#assign key = uuid?replace("-", "")] Added: trunk/openutils-mgnlcontrols/src/main/resources/mgnl-resources/controls/css/grid-ie6fix.css =================================================================== --- trunk/openutils-mgnlcontrols/src/main/resources/mgnl-resources/controls/css/grid-ie6fix.css (rev 0) +++ trunk/openutils-mgnlcontrols/src/main/resources/mgnl-resources/controls/css/grid-ie6fix.css 2009-04-09 15:38:48 UTC (rev 1137) @@ -0,0 +1,4 @@ +/* http://extjs.com/forum/showthread.php?p=151624 */ +.x-grid3-header-offset { + width: auto !important; +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |