Author: jacopoc
Date: Wed Jan 3 10:20:20 2007 New Revision: 492242 URL: http://svn.apache.org/viewvc?view=rev&rev=492242 Log: Small improvements to the css styles of the manufacturing application. Removed all the smallSubmit classes associated to buttons (and added new selector for this element). Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/BomForms.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/EditProductBom.ftl ofbiz/trunk/applications/manufacturing/webapp/manufacturing/jobshopmgt/ProductionRunForms.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/MrpForms.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/findInventoryEventPlan.ftl ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/CalendarForms.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendar.ftl ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendarWeek.ftl ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditRoutingTaskAssoc.ftl ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml ofbiz/trunk/framework/images/webapp/images/maincss.css Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/BomForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/BomForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/BomForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/BomForms.xml Wed Jan 3 10:20:20 2007 @@ -25,7 +25,7 @@ <field name="productId"> <lookup target-form-name="LookupProduct"/> </field> - <field name="bomType" title="${uiLabelMap.ManufacturingBomType}" widget-style="selectBox"> + <field name="bomType" title="${uiLabelMap.ManufacturingBomType}"> <drop-down allow-empty="false" no-current-selected-key="MANUF_COMPONENT"> <entity-options entity-name="ProductAssocType" key-field-name="productAssocTypeId" description="${description}"> <entity-constraint name="parentTypeId" value="PRODUCT_COMPONENT"/> @@ -56,7 +56,7 @@ </entity-options> </drop-down> </field> - <field name="currencyUomId" title="${uiLabelMap.ProductCurrencyUomId}" widget-style="selectBox"> + <field name="currencyUomId" title="${uiLabelMap.ProductCurrencyUomId}"> <drop-down allow-empty="true" no-current-selected-key="${defaultCurrencyUomId}"> <entity-options entity-name="Uom" key-field-name="uomId" description="${description} [${uomId}]"> <entity-constraint name="uomTypeId" value="CURRENCY_MEASURE"/> @@ -64,7 +64,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> @@ -120,7 +120,7 @@ <option key="AND" description="${uiLabelMap.CommonAnd}"/> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"> <submit button-type="button"/> </field> </form> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/EditProductBom.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/EditProductBom.ftl?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/EditProductBom.ftl (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/bom/EditProductBom.ftl Wed Jan 3 10:20:20 2007 @@ -42,7 +42,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingBomType}:</div></td> <td> </td> <td> - <select class="selectBox" name="productAssocTypeId" size="1"> + <select name="productAssocTypeId" size="1"> <#if productAssocTypeId?has_content> <#assign curAssocType = delegator.findByPrimaryKey("ProductAssocType", Static["org.ofbiz.base.util.UtilMisc"].toMap("productAssocTypeId", productAssocTypeId))> <#if curAssocType?exists> @@ -58,7 +58,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ProductProductId}:</div></td> <td> </td> <td> - <input type="text" class="inputBox" name="productId" size="20" maxlength="40" value="${productId?if_exists}"/> + <input type="text" name="productId" size="20" maxlength="40" value="${productId?if_exists}"/> <a href="javascript:call_fieldlookup2(document.searchform.productId,'LookupProduct');"><img src="/images/fieldlookup.gif" width="16" height="16" border="0" alt="Lookup"/></a> <span class='tabletext'><a href="javascript:document.searchform.submit();" class="buttontext">${uiLabelMap.ManufacturingShowBOMAssocs}</a></span> </td> @@ -70,7 +70,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingCopyToProductId}:</div></td> <td> </td> <td> - <input type="text" class="inputBox" name="copyToProductId" size="20" maxlength="40" value=""/> + <input type="text" name="copyToProductId" size="20" maxlength="40" value=""/> <a href="javascript:call_fieldlookup2(document.searchform.copyToProductId,'LookupProduct');"><img src="/images/fieldlookup.gif" width="16" height="16" border="0" alt="Lookup"/></a> <span class='tabletext'><a href="javascript:document.searchform.UPDATE_MODE.value='COPY';document.searchform.submit();" class="buttontext">${uiLabelMap.ManufacturingCopyBOMAssocs}</a></span> </td> @@ -89,7 +89,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingBomType}:</div></td> <td> </td> <td> - <select class="selectBox" name="productAssocTypeId" size="1"> + <select name="productAssocTypeId" size="1"> <#if productAssocTypeId?has_content> <#assign curAssocType = delegator.findByPrimaryKey("ProductAssocType", Static["org.ofbiz.base.util.UtilMisc"].toMap("productAssocTypeId", productAssocTypeId))> <#if curAssocType?exists> @@ -107,7 +107,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ProductProductId}:</div></td> <td> </td> <td> - <input type="text" class="inputBox" name="productId" size="20" maxlength="40" value="${productId?if_exists}"/> + <input type="text" name="productId" size="20" maxlength="40" value="${productId?if_exists}"/> <a href="javascript:call_fieldlookup2(document.editProductAssocForm.productId,'LookupProduct');"><img src="/images/fieldlookup.gif" width="16" height="16" border="0" alt="Lookup"/></a> </td> </tr> @@ -115,7 +115,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingProductIdTo}:</div></td> <td> </td> <td> - <input type="text" class="inputBox" name="productIdTo" size="20" maxlength="40" value="${productIdTo?if_exists}"/> + <input type="text" name="productIdTo" size="20" maxlength="40" value="${productIdTo?if_exists}"/> <a href="javascript:call_fieldlookup2(document.editProductAssocForm.productIdTo,'LookupProduct');"><img src="/images/fieldlookup.gif" width="16" height="16" border="0" alt="Lookup"/></a> </td> </tr> @@ -123,7 +123,7 @@ <td align="right"><div class='tableheadtext'>${uiLabelMap.CommonFromDate}:</div></td> <td> </td> <td> - <input type="text" class="inputBox" name="fromDate" size="25" maxlength="40" value=""/> + <input type="text" name="fromDate" size="25" maxlength="40" value=""/> <a href="javascript:call_cal(document.editProductAssocForm.fromDate,'${nowTimestampString}');"><img src="/images/cal.gif" width="16" height="16" border="0" alt="Calendar"/></a> (${uiLabelMap.ManufacturingWillBeSetToNow}) </td> @@ -161,43 +161,43 @@ <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.CommonThruDate}:</div></td> <td> </td> <td width="74%"> - <input type="text" class="inputBox" name="thruDate" <#if useValues> value="${productAssoc.thruDate?if_exists}"<#else>value="${(request.getParameter("thruDate"))?if_exists}"</#if> size="30" maxlength="30"/> + <input type="text" name="thruDate" <#if useValues> value="${productAssoc.thruDate?if_exists}"<#else>value="${(request.getParameter("thruDate"))?if_exists}"</#if> size="30" maxlength="30"/> <a href="javascript:call_cal(document.editProductAssocForm.thruDate,<#if useValues>'${productAssoc.thruDate?if_exists}'<#elseif (request.getParameter("thruDate"))?exists>'${request.getParameter("thruDate")}'<#else>'${nowTimestampString}'</#if>);"><img src="/images/cal.gif" width="16" height="16" border="0" alt="Calendar"/></a> </td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.CommonSequenceNum}:</div></td> <td> </td> - <td width="74%"><input type="text" class="inputBox" name="sequenceNum" <#if useValues>value="${(productAssoc.sequenceNum)?if_exists}"<#else>value="${(request.getParameter("sequenceNum"))?if_exists}"</#if> size="5" maxlength="10"/></td> + <td width="74%"><input type="text" name="sequenceNum" <#if useValues>value="${(productAssoc.sequenceNum)?if_exists}"<#else>value="${(request.getParameter("sequenceNum"))?if_exists}"</#if> size="5" maxlength="10"/></td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingReason}:</div></td> <td> </td> - <td width="74%"><input type="text" class="inputBox" name="reason" <#if useValues>value="${(productAssoc.reason)?if_exists}"<#else>value="${(request.getParameter("reason"))?if_exists}"</#if> size="60" maxlength="255"/></td> + <td width="74%"><input type="text" name="reason" <#if useValues>value="${(productAssoc.reason)?if_exists}"<#else>value="${(request.getParameter("reason"))?if_exists}"</#if> size="60" maxlength="255"/></td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingInstruction}:</div></td> <td> </td> - <td width="74%"><input type="text" class="inputBox" name="instruction" <#if useValues>value="${(productAssoc.instruction)?if_exists}"<#else>value="${(request.getParameter("instruction"))?if_exists}"</#if> size="60" maxlength="255"/></td> + <td width="74%"><input type="text" name="instruction" <#if useValues>value="${(productAssoc.instruction)?if_exists}"<#else>value="${(request.getParameter("instruction"))?if_exists}"</#if> size="60" maxlength="255"/></td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingQuantity}:</div></td> <td> </td> - <td width="74%"><input type="text" class="inputBox" name="quantity" <#if useValues>value="${(productAssoc.quantity)?if_exists}"<#else>value="${(request.getParameter("quantity"))?if_exists}"</#if> size="10" maxlength="15"/></td> + <td width="74%"><input type="text" name="quantity" <#if useValues>value="${(productAssoc.quantity)?if_exists}"<#else>value="${(request.getParameter("quantity"))?if_exists}"</#if> size="10" maxlength="15"/></td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingScrapFactor}:</div></td> <td> </td> - <td width="74%"><input type="text" class="inputBox" name="scrapFactor" <#if useValues>value="${(productAssoc.scrapFactor)?if_exists}"<#else>value="${(request.getParameter("scrapFactor"))?if_exists}"</#if> size="10" maxlength="15"/></td> + <td width="74%"><input type="text" name="scrapFactor" <#if useValues>value="${(productAssoc.scrapFactor)?if_exists}"<#else>value="${(request.getParameter("scrapFactor"))?if_exists}"</#if> size="10" maxlength="15"/></td> </tr> <tr> <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingFormula}:</div></td> <td> </td> <td width="74%"> - <select name="estimateCalcMethod" class="selectBox"> + <select name="estimateCalcMethod"> <option value=""> </option> <#assign selectedFormula = ""> <#if useValues> @@ -216,14 +216,14 @@ <td width="26%" align="right"><div class='tableheadtext'>${uiLabelMap.ManufacturingRoutingTask}:</div></td> <td> </td> <td width="74%"> - <input type="text" class="inputBox" name="routingWorkEffortId" <#if useValues>value="${(productAssoc.routingWorkEffortId)?if_exists}"<#else>value="${(request.getParameter("routingWorkEffortId"))?if_exists}"</#if> size="10" maxlength="15"/> + <input type="text" name="routingWorkEffortId" <#if useValues>value="${(productAssoc.routingWorkEffortId)?if_exists}"<#else>value="${(request.getParameter("routingWorkEffortId"))?if_exists}"</#if> size="10" maxlength="15"/> <a href="javascript:call_fieldlookup(document.editProductAssocForm.routingWorkEffortId,'<@ofbizUrl>LookupRoutingTask</@ofbizUrl>','none',640,460);"><img src='/images/fieldlookup.gif' width='15' height='14' border='0' alt='Click here For Field Lookup'/></a> </td> </tr> <tr> <td colspan="2"> </td> - <td align="left"><input type="submit" class="SmallSubmit" <#if !(productAssoc?exists)>value="${uiLabelMap.CommonAdd}"<#else>value="${uiLabelMap.CommonEdit}"</#if>/></td> + <td align="left"><input type="submit" <#if !(productAssoc?exists)>value="${uiLabelMap.CommonAdd}"<#else>value="${uiLabelMap.CommonEdit}"</#if>/></td> </tr> </table> </form> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/jobshopmgt/ProductionRunForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/jobshopmgt/ProductionRunForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/jobshopmgt/ProductionRunForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/jobshopmgt/ProductionRunForms.xml Wed Jan 3 10:20:20 2007 @@ -19,7 +19,7 @@ <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/widget-form.xsd"> <form name="CreateProductionRun" target="CreateProductionRunGo" title="" type="single" - default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <field name="productId" title="${uiLabelMap.ProductProductId}"><lookup target-form-name="LookupProduct" size="16"/></field> <field name="pRQuantity" title="${uiLabelMap.ManufacturingQuantity}"><text size="6"/></field> <field name="startDate" title="${uiLabelMap.ManufacturingStartDate}"><date-time/></field> @@ -33,12 +33,12 @@ <field name="routingId"><lookup target-form-name="LookupRouting" size="16"/></field> <field name="workEffortName" title="${uiLabelMap.ManufacturingProductionRunName}"><text size="30"/></field> <field name="description" title="${uiLabelMap.CommonDescription}"><text size="50"/></field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> <form name="findProductionRun" target="FindProductionRun" title="" type="single" - default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <field name="workEffortTypeId"><hidden value="PROD_ORDER_HEADER"/></field> <field name="workEffortId" title="${uiLabelMap.ManufacturingProductionRunId}"><text-find/></field> <field name="currentStatusId" title="${uiLabelMap.CommonStatus}"> @@ -58,7 +58,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonLookup}"><submit button-type="button"/></field> </form> <form name="listFindProductionRun" @@ -106,7 +106,7 @@ <field name="estimatedCompletionDate" title="${uiLabelMap.ManufacturingEstimatedCompletionDate}"><display/></field> <field name="workEffortName" title="${uiLabelMap.ManufacturingProductionRunName}"><text/></field> <field name="description" title="${uiLabelMap.CommonDescription}"><text/></field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"><submit button-type="button"/></field> </form> <form name="ListProductionRunRoutingTasks" type="list" @@ -183,7 +183,7 @@ <field name="estimatedMilliSeconds" title="${uiLabelMap.ManufacturingTaskEstimatedMilliSeconds}"> <text/> </field> - <field name="submitButton" title="${uiLabelButton}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelButton}"> <submit button-type="button"/> </field> </form> @@ -212,7 +212,7 @@ <field name="estimatedQuantity" title="${uiLabelMap.ManufacturingQuantity}"> <text size="10"/> </field> - <field name="workEffortId" title="${uiLabelMap.ManufacturingRoutingTaskId}" widget-style="selectBox" use-when="${actionIsAdd}!=null"> + <field name="workEffortId" title="${uiLabelMap.ManufacturingRoutingTaskId}" use-when="${actionIsAdd}!=null"> <drop-down allow-empty="false"> <entity-options entity-name="WorkEffort" description="${workEffortId}"> <entity-constraint name="workEffortParentId" value="${productComponentData.productionRunId}"/> @@ -222,7 +222,7 @@ <field name="workEffortName" title="${uiLabelMap.ManufacturingRoutingTaskId}" use-when="${actionIsAdd}==null"> <display description="${productComponentData.workEffortId}"/> </field> - <field name="submitButton" title="${uiLabelButton}" widget-style="smallSubmit" > + <field name="submitButton" title="${uiLabelButton}"> <submit button-type="button"/> </field> </form> @@ -248,7 +248,7 @@ <field name="productionRunName" title="${uiLabelMap.ManufacturingProductionRunName}"><display/></field> <field name="description" title="${uiLabelMap.CommonDescription}"><display/></field> <field name="quantity" title="${uiLabelMap.ManufacturingProduceQuantity}" use-when="${showQuantity}!=null"><text/></field> - <field name="submitButton" title="${uiLabelButton}" widget-style="smallSubmit" use-when="${showQuantity}!=null"> + <field name="submitButton" title="${uiLabelButton}" use-when="${showQuantity}!=null"> <submit button-type="button"/> </field> <field name="quantityProduced" title="${uiLabelMap.ManufacturingQuantityProduced}"><display/></field> @@ -316,7 +316,7 @@ <field name="returnedQuantity" title="${uiLabelMap.ManufacturingReturnedQuantity}"><display/></field> <field name="quantity" title="${uiLabelMap.CommonQuantity}"><text/></field> <field name="_rowSubmit" title="${uiLabelMap.CommonSelected}"><check/></field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"><submit/></field> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit/></field> <!--<field name="quantity" use-when=""PRUN_RUNNING".equals("${currentStatusId}")" title="${uiLabelMap.CommonQuantity}"><text/></field> <field name="quantity2" use-when=""PRUN_CREATED".equals("${currentStatusId}")" title="${uiLabelMap.CommonQuantity}"><display/></field>--> </form> @@ -391,7 +391,7 @@ <field name="partyId" title="${uiLabelMap.ManufacturingWorker}"> <text/> </field> - <field name="submitButton" title="${uiLabelButton}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelButton}"> <submit button-type="button"/> </field> </form> @@ -400,7 +400,7 @@ default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext"> <field name="productionRunId"><hidden/></field> <field name="workEffortId"><hidden/></field> - <field name="productId" title="${uiLabelMap.ProductProductId}" widget-style="selectBox" use-when="${bsh:delivProducts.size()>0}"> + <field name="productId" title="${uiLabelMap.ProductProductId}" use-when="${bsh:delivProducts.size()>0}"> <drop-down allow-empty="false"> <list-options list-name="delivProducts" key-name="productId" description="${productId}"/> </drop-down> @@ -409,7 +409,7 @@ <field name="quantity" title="${uiLabelMap.ManufacturingAddQuantityProduced}"> <text/> </field> - <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonAdd}"> <submit button-type="button"/> </field> </form> @@ -483,7 +483,7 @@ </drop-down> --> <hidden /> </field> - <field name="submitButton" title="${uiLabelButton}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelButton}"> <submit button-type="button" /> </field> </form> @@ -528,7 +528,7 @@ target="ManufacturingReports" title="" default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext"> <field name="mrpName" title="${uiLabelMap.ManufacturingMrpName}"><text size="20"/></field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/lookup/FieldLookupForms.xml Wed Jan 3 10:20:20 2007 @@ -19,14 +19,14 @@ <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/widget-form.xsd"> <form name="lookupRouting" target="LookupRouting" title="" type="single" - default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="lookupRoutingTask" default-field-type="hidden"/> <field name="workEffortName"><text-find/></field> <field name="workEffortTypeId"><hidden value="ROUTING"/></field> <field name="fixedAssetId"><hidden value=""/></field> <field name="fixedAssetId_op"><hidden value="equals"/></field> <field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field> - <field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonLookup}"><submit button-type="button"/></field> </form> <form name="listLookupRouting" list-name="listIt" paginate-target="LookupRouting" title="" type="list" default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="tabletext"> @@ -45,7 +45,7 @@ </form> <form name="lookupRoutingTask" target="LookupRoutingTask" title="" type="single" - default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="inputBox"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="lookupRoutingTask" default-field-type="find"/> <field name="workEffortTypeId"><hidden value="ROU_TASK"/></field> <field name="fixedAssetId" > @@ -59,7 +59,7 @@ <field name="fixedAssetId_op"><hidden value="equals"/></field> <field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field> - <field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonLookup}"><submit button-type="button"/></field> </form> <form name="listLookupRoutingTask" list-name="listIt" paginate-target="LookupRoutingTask" title="" type="list" default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="tabletext"> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/MrpForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/MrpForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/MrpForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/MrpForms.xml Wed Jan 3 10:20:20 2007 @@ -27,7 +27,7 @@ <entity-options entity-name="Facility" description="${facilityName} [${facilityId}]"/> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/findInventoryEventPlan.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/findInventoryEventPlan.ftl?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/findInventoryEventPlan.ftl (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/mrp/findInventoryEventPlan.ftl Wed Jan 3 10:20:20 2007 @@ -55,20 +55,20 @@ <td width='20%' align='right'><div class='tableheadtext'>${uiLabelMap.ManufacturingProductId}:</div></td> <td width='5%'> </td> <td> - <input type='text' size='25' class='inputBox' name='productId' value='${requestParameters.productId?if_exists}'/> + <input type='text' size='25' name='productId' value='${requestParameters.productId?if_exists}'/> <span class='tabletext'> <a href="javascript:call_fieldlookup2(document.lookupinventory.productId,'LookupProduct');"> <img src='/images/fieldlookup.gif' width='15' height='14' border='0' alt='Click here For Field Lookup'/> </a> </span> - <input type='text' size='25' readonly class='inputBox' name='productId_description' value=''/> + <input type='text' size='25' readonly name='productId_description' value=''/> </td> </tr> <tr> <td width='20%' align='right'><div class='tableheadtext'>${uiLabelMap.ProductFacility}:</div></td> <td width='5%'> </td> <td> - <select name="facilityId" class="selectBox"> + <select name="facilityId"> <#list facilities as facility> <option value="${facility.facilityId}">${facility.facilityName} [${facility.facilityId}]</option> </#list> @@ -79,7 +79,7 @@ <td width='20%' align='right'><div class='tableheadtext'>${uiLabelMap.CommonFromDate}:</div></td> <td width='5%'> </td> <td> - <input type='text' size='25' class='inputBox' name='eventDate' value='${requestParameters.eventDate?if_exists}'/> + <input type='text' size='25' name='eventDate' value='${requestParameters.eventDate?if_exists}'/> <a href="javascript:call_cal(document.lookupinventory.eventDate,'');"> <img src='/images/cal.gif' width='16' height='16' border='0' alt='Calendar'/> </a> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/CalendarForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/CalendarForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/CalendarForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/CalendarForms.xml Wed Jan 3 10:20:20 2007 @@ -52,13 +52,13 @@ <form name="UpdateCalendarExceptionDay" type="single" target="UpdateCalendarExceptionDay" title="" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="updateCalendarExceptionDay" map-name="calendarExceptionDay"/> <field name="calendarId" ><hidden/></field> <field name="exceptionDateStartTime" title="${uiLabelMap.ManufacturingExceptionDateStartTime}" ><display/></field> <field name="description" title="${uiLabelMap.CommonDescription}" position="2" ></field> <field name="exceptionCapacity" title="${uiLabelMap.ManufacturingCalendarCapacity}" position="3" ></field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" position="4" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}" position="4" ><submit button-type="button"/></field> <sort-order> <sort-field name="exceptionDateStartTime"/> <sort-field name="description"/> @@ -68,13 +68,13 @@ <form name="AddCalendarExceptionDay" type="single" target="CreateCalendarExceptionDay" title="" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="createCalendarExceptionDay" map-name="calendarExceptionDay"/> <field name="calendarId" map-name="techDataCalendar"><hidden/></field> <field name="description" title="${uiLabelMap.CommonDescription}" ></field> <field name="exceptionDateStartTime" title="${uiLabelMap.ManufacturingExceptionDateStartTime}" ></field> <field name="exceptionCapacity" title="${uiLabelMap.ManufacturingCalendarCapacity}"></field> - <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> <form name="ListCalendarExceptionWeek" type="list" @@ -99,7 +99,7 @@ </form> <form name="UpdateCalendarExceptionWeek" type="single" target="UpdateCalendarExceptionWeek" title="" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="updateCalendarExceptionWeek" map-name="calendarExceptionWeek"/> <field name="calendarId" ><hidden/></field> <field name="exceptionDateStart" title="${uiLabelMap.ManufacturingExceptionDateStart}" ><display/></field> @@ -111,7 +111,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" position="4" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}" position="4" ><submit button-type="button"/></field> <sort-order> <sort-field name="exceptionDateStart"/> <sort-field name="description"/> @@ -120,18 +120,18 @@ </form> <form name="AddCalendarExceptionWeek" type="single" target="CreateCalendarExceptionWeek" title="" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-service service-name="createCalendarExceptionWeek" map-name="calendarExceptionWeek"/> <field name="calendarId" map-name="techDatacalendar"><hidden/></field> <field name="description" title="${uiLabelMap.CommonDescription}" ></field> <field name="exceptionDateStart" title="${uiLabelMap.ManufacturingExceptionDateStart}" ><date-time type="date"/></field> - <field name="calendarWeekId" title="${uiLabelMap.ManufacturingCalendarWeekId}" widget-style="selectBox"> + <field name="calendarWeekId" title="${uiLabelMap.ManufacturingCalendarWeekId}"> <drop-down> <entity-options entity-name="TechDataCalendarWeek" description="${description}"> <entity-order-by field-name="description"/> </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field> </form> </forms> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendar.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendar.ftl?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendar.ftl (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendar.ftl Wed Jan 3 10:20:20 2007 @@ -36,19 +36,19 @@ <tr> <td width='26%' align='right' valign="top">${uiLabelMap.ManufacturingCalendarId}</div></td> <td width="5"> </td> - <td width="74%"><input type="text" class="inputBox" size="12" name="calendarId" value="${calendarData.calendarId?if_exists}"></td> + <td width="74%"><input type="text" size="12" name="calendarId" value="${calendarData.calendarId?if_exists}"></td> </tr> </#if> <tr> <td width='26%' align='right' valign='top'>${uiLabelMap.CommonDescription}</td> <td width="5"> </td> - <td width="74%"><input type="text" class="inputBox" size="40" name="description" value="${calendarData.description?if_exists}"></td> + <td width="74%"><input type="text" size="40" name="description" value="${calendarData.description?if_exists}"></td> </tr> <tr> <td width='26%' align='right' valign='top'>${uiLabelMap.ManufacturingCalendarWeekId}</td> <td width="5"> </td> <td width="74%"> - <select class="selectBox" name="calendarWeekId"> + <select name="calendarWeekId"> <#list calendarWeeks as calendarWeek> <option value="${calendarWeek.calendarWeekId}" <#if calendarData?has_content && calendarData.calendarWeekId?default("") == calendarWeek.calendarWeekId>SELECTED</#if>>${(calendarWeek.get("description",locale))?if_exists}</option> </#list> @@ -57,7 +57,7 @@ <tr> <td width="26%" align="right" valign="top"> <td width="5"> </td> - <td width="74%"><input type="submit" value="${uiLabelMap.CommonUpdate}" class="smallSubmit"></td> + <td width="74%"><input type="submit" value="${uiLabelMap.CommonUpdate}"></td> </tr> </table> </form> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendarWeek.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendarWeek.ftl?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendarWeek.ftl (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditCalendarWeek.ftl Wed Jan 3 10:20:20 2007 @@ -39,83 +39,82 @@ <tr> <td width="26%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarWeekId}</td> <td width="5"> </td> - <td width="74%" colspan="5"><input type="text" class="inputBox" size="12" name="calendarWeekId" value="${calendarWeekData.calendarWeekId?if_exists}"></td> + <td width="74%" colspan="5"><input type="text" size="12" name="calendarWeekId" value="${calendarWeekData.calendarWeekId?if_exists}"></td> </#if> </tr> <tr> <td width="26%" align="right" valign="top">${uiLabelMap.CommonDescription}</td> <td width="5"> </td> - <td width="74%" colspan="5"><input type="text" class="inputBox" size="30" name="description" value="${calendarWeekData.description?if_exists}"></td> + <td width="74%" colspan="5"><input type="text" size="30" name="description" value="${calendarWeekData.description?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonMonday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="mondayStartTime" value="${calendarWeekData.mondayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="mondayStartTime" value="${calendarWeekData.mondayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="mondayCapacity" value="${calendarWeekData.mondayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="mondayCapacity" value="${calendarWeekData.mondayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonTuesday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="tuesdayStartTime" value="${calendarWeekData.tuesdayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="tuesdayStartTime" value="${calendarWeekData.tuesdayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="tuesdayCapacity" value="${calendarWeekData.tuesdayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="tuesdayCapacity" value="${calendarWeekData.tuesdayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonWednesday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="wednesdayStartTime" value="${calendarWeekData.wednesdayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="wednesdayStartTime" value="${calendarWeekData.wednesdayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="wednesdayCapacity" value="${calendarWeekData.wednesdayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="wednesdayCapacity" value="${calendarWeekData.wednesdayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonThursday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="thursdayStartTime" value="${calendarWeekData.thursdayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="thursdayStartTime" value="${calendarWeekData.thursdayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="thursdayCapacity" value="${calendarWeekData.thursdayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="thursdayCapacity" value="${calendarWeekData.thursdayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonFriday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="fridayStartTime" value="${calendarWeekData.fridayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="fridayStartTime" value="${calendarWeekData.fridayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="fridayCapacity" value="${calendarWeekData.fridayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="fridayCapacity" value="${calendarWeekData.fridayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonSaturday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="saturdayStartTime" value="${calendarWeekData.saturdayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="saturdayStartTime" value="${calendarWeekData.saturdayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="saturdayCapacity" value="${calendarWeekData.saturdayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="saturdayCapacity" value="${calendarWeekData.saturdayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"><b>${uiLabelMap.CommonSunday}</b> ${uiLabelMap.ManufacturingStartTime}</td> <td width="5"> </td> - <td width="1%"><input type="text" class="inputBox" size="12" name="sundayStartTime" value="${calendarWeekData.sundayStartTime?if_exists}"></td> + <td width="1%"><input type="text" size="12" name="sundayStartTime" value="${calendarWeekData.sundayStartTime?if_exists}"></td> <td width="5"> </td> <td width="1%" align="right" valign="top">${uiLabelMap.ManufacturingCalendarCapacity}</td> <td width="1%"> </td> - <td width="40%"><input type="text" class="inputBox" size="8" name="sundayCapacity" value="${calendarWeekData.sundayCapacity?if_exists}"></td> + <td width="40%"><input type="text" size="8" name="sundayCapacity" value="${calendarWeekData.sundayCapacity?if_exists}"></td> </tr> <tr> <td width="26%" align="right" valign="top"> <td width="5"> </td> - <td width="74%" colspan="5"><input type="submit" value="${uiLabelMap.CommonUpdate}" class="smallSubmit"></td> - </tr> - + <td width="74%" colspan="5"><input type="submit" value="${uiLabelMap.CommonUpdate}"/></td> + </tr> </table> <br/> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditRoutingTaskAssoc.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditRoutingTaskAssoc.ftl?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditRoutingTaskAssoc.ftl (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/EditRoutingTaskAssoc.ftl Wed Jan 3 10:20:20 2007 @@ -40,14 +40,14 @@ <div class="tableheadtext">${uiLabelMap.ManufacturingRoutingTaskId}</div> </td> <td> - <input type="text" name="workEffortIdTo" class="inputBox" size="20"/> + <input type="text" name="workEffortIdTo" size="20"/> <a href="javascript:call_fieldlookup(document.addtaskassocform.workEffortIdTo,'<@ofbizUrl>LookupRoutingTask</@ofbizUrl>', 'vide',540,450);"><img src='/images/fieldlookup.gif' width='15' height='14' border='0' alt='Click here For Field Lookup'></a> </td> <td align="right"> <div class="tableheadtext">${uiLabelMap.CommonFromDate}</div> </td> <td> - <input type="text" name="fromDate" class="inputBox" size="25"/> + <input type="text" name="fromDate" size="25"/> <a href="javascript:call_cal(document.addtaskassocform.fromDate, null);"><img src="/images/cal.gif" width="16" height="16" border="0" alt="Click here For Calendar"></a> </td> <td align="center" width="40%"> </td> @@ -57,13 +57,13 @@ <div class="tableheadtext">${uiLabelMap.CommonSequenceNum}</div> </td> <td> - <input type="text" name="sequenceNum" class="inputBox" size="10"/> + <input type="text" name="sequenceNum" size="10"/> </td> <td align="right"> <div class="tableheadtext">${uiLabelMap.CommonThruDate}</div> </td> <td> - <input type="text" name="thruDate" class="inputBox" size="25"/> + <input type="text" name="thruDate" size="25"/> <a href="javascript:call_cal(document.addtaskassocform.thruDate, null);"><img src="/images/cal.gif" width="16" height="16" border="0" alt="Click here For Calendar"></a> </td> <td> </td> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/routing/RoutingTaskForms.xml Wed Jan 3 10:20:20 2007 @@ -29,7 +29,7 @@ <field name="workEffortName" title="${uiLabelMap.ManufacturingRoutingName}"> <text-find/> </field> - <field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonLookup}"> <submit button-type="button"/> </field> </form> @@ -52,7 +52,7 @@ </form> <form name="EditRouting" type="single" target="UpdateRouting" title="" default-map-name="routing" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <alt-target use-when="routing==null" target="CreateRouting"/> <field name="workEffortTypeId" use-when="routing==null"><hidden value="ROUTING"/></field> <field name="currentStatusId" use-when="routing==null"><hidden value="ROU_ACTIVE"/></field> @@ -60,7 +60,7 @@ <field name="workEffortName" title="${uiLabelMap.ManufacturingRoutingName}"><text/></field> <field name="description"><text/></field> <field name="quantityToProduce"><text/></field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> @@ -83,7 +83,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonLookup}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonLookup}"> <submit button-type="button"/> </field> </form> @@ -113,7 +113,7 @@ </form> <form name="EditRoutingTask" type="single" target="UpdateRoutingTask" title="" default-map-name="routingTask" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <alt-target use-when="routingTask==null" target="CreateRoutingTask"/> <field name="workEffortTypeId" use-when="routingTask==null"><hidden value="ROU_TASK"/></field> <field name="currentStatusId" use-when="routingTask==null"><hidden value="ROU_ACTIVE"/></field> @@ -143,7 +143,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> @@ -167,7 +167,7 @@ </field> </form> <form name="AddRoutingTaskCost" type="single" target="addRoutingTaskCost" title="" - default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext"> + default-title-style="tableheadtext" default-tooltip-style="tabletext"> <auto-fields-entity entity-name="WorkEffortCostCalc" default-field-type="edit"/> <field name="workEffortId"><hidden/></field> <field name="costComponentTypeId"> @@ -183,7 +183,7 @@ </entity-options> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonSubmit}"> <submit button-type="button"/> </field> </form> @@ -238,7 +238,7 @@ <field name="workEffortAssocTypeId" ><hidden/></field> <field name="fromDate" title="${uiLabelMap.CommonFromDate}" ><display/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}" ></field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" ><submit button-type="button"/></field> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"><submit button-type="button"/></field> <sort-order> <sort-field name="workEffortIdFrom"/> <sort-field name="workEffortIdTo"/> @@ -262,7 +262,7 @@ <field name="fromDate" title="${uiLabelMap.CommonFromDate}" use-when="routingProductLink!=null"><display/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"></field> <field name="estimatedQuantity" title="${uiLabelMap.ManufacturingQuantity}"></field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" > + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"> <submit button-type="button"/> </field> </form> @@ -317,7 +317,7 @@ </field> <field name="fromDate" title="${uiLabelMap.CommonFromDate}" use-when="routingProductLink!=null"><display/></field> <field name="thruDate" title="${uiLabelMap.CommonThruDate}"></field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit" > + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"> <submit button-type="button"/> </field> </form> @@ -331,7 +331,7 @@ <field name="fixedAssetTypeId"> <display-entity entity-name="FixedAssetType" /> </field> - <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonUpdate}"> <submit button-type="button" /> </field> <field name="deleteLink" title="" widget-style="buttontext"> @@ -348,7 +348,7 @@ <entity-options entity-name="FixedAssetType" description="${description}" /> </drop-down> </field> - <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"> + <field name="submitButton" title="${uiLabelMap.CommonAdd}"> <submit button-type="button" /> </field> </form> Modified: ofbiz/trunk/framework/images/webapp/images/maincss.css URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/maincss.css?view=diff&rev=492242&r1=492241&r2=492242 ============================================================================== --- ofbiz/trunk/framework/images/webapp/images/maincss.css (original) +++ ofbiz/trunk/framework/images/webapp/images/maincss.css Wed Jan 3 10:20:20 2007 @@ -33,6 +33,40 @@ margin: 0px; } +INPUT { +font-family: Verdana, Arial, Helvetica, sans-serif; +background: #FFFFFF; +font-size: 8pt; +background: white; +border: #999999 solid 1px; +margin: 2px; +} + +INPUT[type="submit"] { +font-family: Verdana, Arial, Helvetica, sans-serif; +font-size: 8pt; +font-weight: bold; +text-decoration: none; +color: #000099; +background: white; +border: #999999 solid 1px; +margin: 2px; +} + +INPUT[type="submit"]:hover { +color: red; +text-decoration: underline; +} + +SELECT { +font-family: Verdana, Arial, Helvetica, sans-serif; +background: #FFFFFF; +font-size: 8pt; +background: white; +border: #999999 solid 1px; +margin: 2px; +} + UL { margin-top: 0; margin-bottom: 0; @@ -902,6 +936,10 @@ font-size: 8pt; } +/* + * This style can be used to decorate links (A elements) to make them similar to form's buttons. + * For this reason its style attributes should be the same as the ones of the SUBMIT selector. + */ .smallSubmit { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; |
Free forum by Nabble | Edit this page |