svn commit: r1056986 - in /ofbiz/trunk: applications/content/webapp/content/content/ framework/images/webapp/images/ themes/bizznesstime/webapp/bizznesstime/css/ themes/bluelight/webapp/bluelight/ themes/droppingcrumbs/webapp/droppingcrumbs/css/ themes...

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1056986 - in /ofbiz/trunk: applications/content/webapp/content/content/ framework/images/webapp/images/ themes/bizznesstime/webapp/bizznesstime/css/ themes/bluelight/webapp/bluelight/ themes/droppingcrumbs/webapp/droppingcrumbs/css/ themes...

jleroux@apache.org
Author: jleroux
Date: Sun Jan  9 17:55:04 2011
New Revision: 1056986

URL: http://svn.apache.org/viewvc?rev=1056986&view=rev
Log:
Resolves "The online help navigation panel is too narrow" (https://issues.apache.org/jira/browse/OFBIZ-4066) - OFBIZ-4066

But in Flat Grey, even when you had the content of the bluelight/help.css in flatgrey/help.css...

I have set the default lookup_popup2 size to width=900 height=700, now that anyway OFBiz is designed to be used with at least a 1024*768 screen

Modified:
    ofbiz/trunk/applications/content/webapp/content/content/DisplayContentNav.ftl
    ofbiz/trunk/framework/images/webapp/images/fieldlookup.js
    ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/help.css
    ofbiz/trunk/themes/bluelight/webapp/bluelight/help.css
    ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/help.css
    ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/help.css

Modified: ofbiz/trunk/applications/content/webapp/content/content/DisplayContentNav.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/webapp/content/content/DisplayContentNav.ftl?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/webapp/content/content/DisplayContentNav.ftl (original)
+++ ofbiz/trunk/applications/content/webapp/content/content/DisplayContentNav.ftl Sun Jan  9 17:55:04 2011
@@ -235,5 +235,3 @@ var rawdata = [
 </style>
 
 <div id="tree"></div>
-
-

Modified: ofbiz/trunk/framework/images/webapp/images/fieldlookup.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/fieldlookup.js?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/fieldlookup.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/fieldlookup.js Sun Jan  9 17:55:04 2011
@@ -126,7 +126,7 @@ function lookup_popup2(view_name) {
         }
     }
 
-    var obj_lookupwindow = window.open(getViewNameWithSeparator(view_name) + 'presentation=' + this.presentation + '&id=' + this.id + argString, '_blank', 'width=700,height=550,scrollbars=yes,status=no,resizable=yes,top=' + my + ',left=' + mx + ',dependent=yes,alwaysRaised=yes');
+    var obj_lookupwindow = window.open(getViewNameWithSeparator(view_name) + 'presentation=' + this.presentation + '&id=' + this.id + argString, '_blank', 'width=900,height=700,scrollbars=yes,status=no,resizable=yes,top=' + my + ',left=' + mx + ',dependent=yes,alwaysRaised=yes');
     obj_lookupwindow.opener = window;
     obj_lookupwindow.focus();
 }

Modified: ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/help.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/help.css?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/help.css (original)
+++ ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/help.css Sun Jan  9 17:55:04 2011
@@ -21,7 +21,7 @@ body {
 }
 
 .left-border {
-    float:left;width:25%;
+    float:left;width:30%;
 }
 
 .contentarea {

Modified: ofbiz/trunk/themes/bluelight/webapp/bluelight/help.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bluelight/webapp/bluelight/help.css?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/themes/bluelight/webapp/bluelight/help.css (original)
+++ ofbiz/trunk/themes/bluelight/webapp/bluelight/help.css Sun Jan  9 17:55:04 2011
@@ -24,7 +24,7 @@ body {
 
 .left-border {
     float:left;
-    width:20em;
+    width:50em;
 }
 
 div.contentarea {
@@ -37,7 +37,7 @@ div.contentarea {
 }
 
 #column-container .leftonly {
-margin-left:20em;
+margin-left:50em;
 width:auto;
 }
 

Modified: ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/help.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/help.css?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/help.css (original)
+++ ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/help.css Sun Jan  9 17:55:04 2011
@@ -24,7 +24,7 @@ font-size=105%;
 
 .left-border {
 float:left;
-width:20em;
+width:50em;
 }
 
 div.contentarea {
@@ -37,7 +37,7 @@ min-height:25em;
 }
 
 #column-container .leftonly {
-margin-left:20em;
+margin-left:50em;
 width:auto;
 }
 

Modified: ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/help.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/help.css?rev=1056986&r1=1056985&r2=1056986&view=diff
==============================================================================
--- ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/help.css (original)
+++ ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/help.css Sun Jan  9 17:55:04 2011
@@ -28,7 +28,7 @@ margin-top:10px;
 
 .left-border {
 float:left;
-width:20em;
+width:50em;
 }
 
 .leftonly {
@@ -37,7 +37,7 @@ min-height:25em;
 }
 
 #column-container .leftonly {
-margin-left:20em;
+margin-left:50em;
 width:auto;
 }