[Erp5-report] r21345 - in /erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style: SkinTemplat...

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Jun 5 13:48:38 CEST 2008


Author: vincent
Date: Thu Jun  5 13:48:37 2008
New Revision: 21345

URL: http://svn.erp5.org?rev=21345&view=rev
Log:
Generate real table cells by javascript, each containing just one fieldset. This fixes a rendering problem in konqueror: right fieldset "100%" was left fieldset's width, instead of container's (tr). Also, right was always wrapped below left.

Modified:
    erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.css.xml
    erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml
    erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/bt/revision

Modified: erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.css.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.css.xml?rev=21345&r1=21344&r2=21345&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.css.xml (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.css.xml Thu Jun  5 13:48:37 2008
@@ -599,11 +599,6 @@
   width: 100%;\n
 }\n
 \n
-table.fake > tr > fieldset {\n
-  display: table-cell;\n
-  float: none;\n
-}\n
-\n
 .content .field {\n
   position: relative;\n
   clear: left;\n
@@ -674,7 +669,8 @@
   border-width: 0;\n
   padding: 0;\n
   margin: 0;\n
-  width: 50%;\n
+  width: 100%;\n
+  float: none;\n
 }\n
 \n
 fieldset.center,\n

Modified: erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml?rev=21345&r1=21344&r2=21345&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml Thu Jun  5 13:48:37 2008
@@ -145,8 +145,11 @@
       for (i = 0; i < row_list.length; i++) {\n
         var fake_row = document.createElement("tr");\n
         var row_element_list = row_list[i];\n
-        for (j = 0; j < row_element_list.length; j++)\n
-          fake_row.appendChild(row_element_list[j]);\n
+        for (j = 0; j < row_element_list.length; j++) {\n
+          var fake_cell = document.createElement("td");\n
+          fake_cell.appendChild(row_element_list[j]);\n
+          fake_row.appendChild(fake_cell);\n
+        }\n
         fake_table.appendChild(fake_row);\n
       }\n
     }\n

Modified: erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/bt/revision
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/bt/revision?rev=21345&r1=21344&r2=21345&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/bt/revision (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_xhtml_style/bt/revision Thu Jun  5 13:48:37 2008
@@ -1,1 +1,1 @@
-546
+548




More information about the Erp5-report mailing list