Modified: ofbiz/trunk/specialpurpose/ebay/data/helpdata/HELP_EBAY_main.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/data/helpdata/HELP_EBAY_main.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebay/data/helpdata/HELP_EBAY_main.xml (original) +++ ofbiz/trunk/specialpurpose/ebay/data/helpdata/HELP_EBAY_main.xml Wed Mar 17 17:28:01 2010 @@ -31,43 +31,43 @@ <title>How to setup OFBiz integration eBay.</title> <orderedlist> <listitem><para>Register with ebay developer site for obtain keys and certificate (eBayExport.devId,eBayExport.appId,eBayExport.cerId and eBayExport.token etc.) at <link xl:href="https://developer.ebay.com/join/">Join with ebay developers</link> </para></listitem> - <listitem> - <para> - After registered it should be following the keys below :# ebay keys example - <orderedlist> - <listitem><para>eBayExport.devID=f3586481-93c7-4aaf-ab87-d383d56b71b1</para></listitem> - <listitem><para>eBayExport.appID=antwebc0f-9bf9-4829-998b-e5e8fb773ac</para></listitem> - <listitem><para>eBayExport.certID=7f363bc0-11d6-489a-a54d-4a44de82f790</para></listitem> - </orderedlist> - # token key generated from ebay account example : - <orderedlist> - <listitem><para>eBayExport.token=AgAAAA**AQAAAA**aAAAAA**Ccn7Sg.....</para></listitem> - </orderedlist> - </para> - </listitem> + <listitem> + <para> + After registered it should be following the keys below :# ebay keys example + <orderedlist> + <listitem><para>eBayExport.devID=f3586481-93c7-4aaf-ab87-d383d56b71b1</para></listitem> + <listitem><para>eBayExport.appID=antwebc0f-9bf9-4829-998b-e5e8fb773ac</para></listitem> + <listitem><para>eBayExport.certID=7f363bc0-11d6-489a-a54d-4a44de82f790</para></listitem> + </orderedlist> + # token key generated from ebay account example : + <orderedlist> + <listitem><para>eBayExport.token=AgAAAA**AQAAAA**aAAAAA**Ccn7Sg.....</para></listitem> + </orderedlist> + </para> + </listitem> <listitem> - <para> - Following file in specialpurpose/ebay/config/eBayExport.properties. You will see Merchant configurations. - For : - eBayExport.xmlGatewayUri : - <orderedlist> - <listitem><para>https://api.sandbox.ebay.com/ws/api.dll (sandbox environment used for testing and develoment )if you want to use for testing should select sandbox enviroment. </para></listitem> - <listitem><para>https://api.ebay.com/ws/api.dll (production environment). </para></listitem> - </orderedlist> - For : eBayExport.siteID : - <orderedlist> - <listitem><para>It was siteId you want to sell products ex: site id (0=US, 101=Italy, ...) obtain from <link xl:href="http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SiteCodeType.html">SiteCodeType</link> - </para></listitem> - </orderedlist> - - </para> - </listitem> + <para> + Following file in specialpurpose/ebay/config/eBayExport.properties. You will see Merchant configurations. + For : + eBayExport.xmlGatewayUri : + <orderedlist> + <listitem><para>https://api.sandbox.ebay.com/ws/api.dll (sandbox environment used for testing and develoment )if you want to use for testing should select sandbox enviroment. </para></listitem> + <listitem><para>https://api.ebay.com/ws/api.dll (production environment). </para></listitem> + </orderedlist> + For : eBayExport.siteID : + <orderedlist> + <listitem><para>It was siteId you want to sell products ex: site id (0=US, 101=Italy, ...) obtain from <link xl:href="http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/SiteCodeType.html">SiteCodeType</link> + </para></listitem> + </orderedlist> + + </para> + </listitem> <listitem> - <para> - Go to ebay-->Ebay Configurations screen(see link in the bottom of page) This screen will displayed ebay configurations with each stores. You need to âaddâ or âeditâ the configuration keys you got from ebay for each productstores into this screen. This configuration is for connect to ebay site and export or import data to ebay. - </para> - </listitem> + <para> + Go to ebay-->Ebay Configurations screen(see link in the bottom of page) This screen will displayed ebay configurations with each stores. You need to âaddâ or âeditâ the configuration keys you got from ebay for each productstores into this screen. This configuration is for connect to ebay site and export or import data to ebay. + </para> + </listitem> <listitem><para>Go to ebay-->Export to eBay screen or eBay orders Import then try to test export products and import orders from ebay. </para></listitem> </orderedlist> </section> Modified: ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java (original) +++ ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java Wed Mar 17 17:28:01 2010 @@ -245,7 +245,7 @@ public class ProductsExportToEbay { String listingFormat = ""; if (UtilValidate.isNotEmpty(context.get("listingFormat"))) { - listingFormat = (String) context.get("listingFormat"); + listingFormat = (String) context.get("listingFormat"); UtilXml.addChildElementValue(itemElem, "ListingType", listingFormat, itemDocument); } if (listingFormat.equals("FixedPriceItem")) { Modified: ofbiz/trunk/specialpurpose/ebaystore/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/build.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/build.xml (original) +++ ofbiz/trunk/specialpurpose/ebaystore/build.xml Wed Mar 17 17:28:01 2010 @@ -29,7 +29,7 @@ under the License. <property name="name" value="ofbiz-ebaystore"/> <path id="local.class.path"> - <fileset dir="${lib.dir}" includes="*.jar"/> + <fileset dir="${lib.dir}" includes="*.jar"/> <fileset dir="../../framework/base/lib" includes="*.jar"/> <fileset dir="../../framework/base/lib/commons" includes="*.jar"/> <fileset dir="../../framework/base/lib/j2eespecs" includes="*.jar"/> @@ -46,6 +46,6 @@ under the License. <fileset dir="../../applications/product/build/lib" includes="*.jar"/> <fileset dir="../../applications/party/build/lib" includes="*.jar"/> <fileset dir="../../applications/order/build/lib" includes="*.jar"/> - <fileset dir="../../specialpurpose/ebay/build/lib" includes="*.jar"/> + <fileset dir="../../specialpurpose/ebay/build/lib" includes="*.jar"/> </path> </project> Modified: ofbiz/trunk/specialpurpose/ebaystore/data/DemoEbayStoreData.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/data/DemoEbayStoreData.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/data/DemoEbayStoreData.xml (original) +++ ofbiz/trunk/specialpurpose/ebaystore/data/DemoEbayStoreData.xml Wed Mar 17 17:28:01 2010 @@ -51,10 +51,10 @@ <DataResource dataResourceId="EBAY_WIN_BUYER_NOTI" dataResourceTypeId="ELECTRONIC_TEXT" dataTemplateTypeId="FTL"/> <ElectronicText dataResourceId="EBAY_WIN_BUYER_NOTI"> <textData><![CDATA[ - <span style="color: rgb(255, 51, 0);"> - Demo : Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold. - </span>]]> - </textData> + <span style="color: rgb(255, 51, 0);"> + Demo : Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold. + </span>]]> + </textData> </ElectronicText> <Content contentId="EBAY_WIN_BUYER_NOTI" contentTypeId="DOCUMENT" dataResourceId="EBAY_WIN_BUYER_NOTI" ownerContentId="EBAY_WIN_BUYER_NOTI" statusId="CTNT_IN_PROGRESS"/> <ContentRole contentId="EBAY_WIN_BUYER_NOTI" partyId="DemoEbayAccount" roleTypeId="OWNER" fromDate="2010-01-01 00:00:00.000"/> @@ -62,10 +62,10 @@ <DataResource dataResourceId="EBAY_PAY_RECIEVED" dataResourceTypeId="ELECTRONIC_TEXT" dataTemplateTypeId="FTL"/> <ElectronicText dataResourceId="EBAY_PAY_RECIEVED"> <textData><![CDATA[ - <span style="color: rgb(255, 51, 0);"> - Demo : Automatically send Payment Received email when payment has been received. - </span>]]> - </textData> + <span style="color: rgb(255, 51, 0);"> + Demo : Automatically send Payment Received email when payment has been received. + </span>]]> + </textData> </ElectronicText> <Content contentId="EBAY_PAY_RECIEVED" contentTypeId="DOCUMENT" dataResourceId="EBAY_PAY_RECIEVED" ownerContentId="EBAY_PAY_RECIEVED" statusId="CTNT_IN_PROGRESS"/> <ContentRole contentId="EBAY_PAY_RECIEVED" partyId="DemoEbayAccount" roleTypeId="OWNER" fromDate="2010-01-01 00:00:00.000"/> @@ -73,10 +73,10 @@ <DataResource dataResourceId="EBAY_FEEBACK_REMIN" dataResourceTypeId="ELECTRONIC_TEXT" dataTemplateTypeId="FTL"/> <ElectronicText dataResourceId="EBAY_FEEBACK_REMIN"> <textData><![CDATA[ - <span style="color: rgb(255, 51, 0);"> - Demo : Automatically send a Feedback Reminder email if feedback has not been received. Please choose how many days after shipping you want this email sent. - </span>]]> - </textData> + <span style="color: rgb(255, 51, 0);"> + Demo : Automatically send a Feedback Reminder email if feedback has not been received. Please choose how many days after shipping you want this email sent. + </span>]]> + </textData> </ElectronicText> <Content contentId="EBAY_FEEBACK_REMIN" contentTypeId="DOCUMENT" dataResourceId="EBAY_FEEBACK_REMIN" ownerContentId="EBAY_FEEBACK_REMIN" statusId="CTNT_IN_PROGRESS"/> <ContentRole contentId="EBAY_FEEBACK_REMIN" partyId="DemoEbayAccount" roleTypeId="OWNER" fromDate="2010-01-01 00:00:00.000"/> Modified: ofbiz/trunk/specialpurpose/ebaystore/data/EbayStoreTypeData.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/data/EbayStoreTypeData.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/data/EbayStoreTypeData.xml (original) +++ ofbiz/trunk/specialpurpose/ebaystore/data/EbayStoreTypeData.xml Wed Mar 17 17:28:01 2010 @@ -27,7 +27,7 @@ under the License. <EnumerationType description="Ebay setting auto preferences" enumTypeId="EBAY_AUTO_PREF" hasTable="N" parentTypeId=""/> - <!-- Automation Preference --> + <!-- Automation Preference --> <Enumeration enumId="EBAY_AUTO_DISPUTE1" description="Automatic Dispute not complete" enumTypeId="EBAY_AUTO_PREF"/> <Enumeration enumId="EBAY_AUTO_DISPUTE2" description="Automatic Dispute not pay" enumTypeId="EBAY_AUTO_PREF"/> <Enumeration enumId="EBAY_AUTO_RELISTING" description="Automatic Relisting" enumTypeId="EBAY_AUTO_PREF"/> @@ -38,13 +38,13 @@ under the License. <Enumeration enumId="EBAY_AUTO_ITEM_DISP" description="Automatic send item dispatched email" enumTypeId="EBAY_AUTO_PREF"/> <Enumeration enumId="EBAY_AUTO_BLK_ITEM" description="Automatic block item that out of stock" enumTypeId="EBAY_AUTO_PREF"/> - <!-- Automation email --> - <Enumeration enumId="EBAY_WIN_BUYER_NOTI" description="Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold." enumTypeId="PRDS_EMAIL"/> - <Enumeration enumId="EBAY_PAY_RECIEVED" description="Automatically send Payment Received email when payment has been received." enumTypeId="PRDS_EMAIL"/> - <Enumeration enumId="EBAY_FEEBACK_REMIN" description="Automatically send a Feedback Reminder email if feedback has not been received. Please choose how many days after shipping you want this email sent." enumTypeId="PRDS_EMAIL"/> + <!-- Automation email --> + <Enumeration enumId="EBAY_WIN_BUYER_NOTI" description="Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold." enumTypeId="PRDS_EMAIL"/> + <Enumeration enumId="EBAY_PAY_RECIEVED" description="Automatically send Payment Received email when payment has been received." enumTypeId="PRDS_EMAIL"/> + <Enumeration enumId="EBAY_FEEBACK_REMIN" description="Automatically send a Feedback Reminder email if feedback has not been received. Please choose how many days after shipping you want this email sent." enumTypeId="PRDS_EMAIL"/> <Enumeration enumId="EBAY_ITEM_DISPATCH" description="Automatic send item dispatched notification email when user mark sold listing as dispatched" enumTypeId="PRDS_EMAIL"/> <!-- Content main for specify Enumeration --> - <Content contentId="EBAY_WIN_BUYER_NOTI" contentTypeId="TEMPLATE" description="Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold."/> + <Content contentId="EBAY_WIN_BUYER_NOTI" contentTypeId="TEMPLATE" description="Automatically send a Winning Buyer Notification email to your winning buyer(s) after item has sold."/> <Content contentId="EBAY_PAY_RECIEVED" contentTypeId="TEMPLATE" description="Automatically send Payment Received email when payment has been received."/> <Content contentId="EBAY_FEEBACK_REMIN" contentTypeId="TEMPLATE" description="Automatically send a Feedback Reminder email if feedback has not been received. Please choose how many days after shipping you want this email sent"/> <Content contentId="EBAY_ITEM_DISPATCH" contentTypeId="TEMPLATE" description="Automatic send item dispatched notification email when user mark sold listing as dispatched"/> Modified: ofbiz/trunk/specialpurpose/ebaystore/data/helpdata/HELP_EBAY_LeaveFeedback.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/data/helpdata/HELP_EBAY_LeaveFeedback.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/data/helpdata/HELP_EBAY_LeaveFeedback.xml (original) +++ ofbiz/trunk/specialpurpose/ebaystore/data/helpdata/HELP_EBAY_LeaveFeedback.xml Wed Mar 17 17:28:01 2010 @@ -18,22 +18,22 @@ xsi:schemaLocation="http://docbook.org/ns/docbook ../../../content/dtd/docbook.xsd" xmlns="http://docbook.org/ns/docbook"> <title>EBay Leave Feedback help screen.</title> - <section> - <section> - <para> - This screen have 3 tab button All, bought, sold. "All" = bought and sold, "bought" = this account is buyer, "sold" = this account is seller. - All item in the list can leave message to buyer and seller multi action that mean each item is seperated. If item is bought it have 3 options to select - and then when select "Positive", "Neutral" and "Negative" a rating section appear,add rating to seller, and comment, if select "I'll leave Feedback later" a rating section disappear. - If item is sold it have 2 options to select and then when select "Positive" a comment box appear to add comment text to buyer, if select "I'll leave Feedback later" this comment box will disappear. - </para> - </section> - <section> - <title> - Note : - </title> - <para> - If you don't add comment in text box, leave feedback don't send. - </para> - </section> - </section> + <section> + <section> + <para> + This screen have 3 tab button All, bought, sold. "All" = bought and sold, "bought" = this account is buyer, "sold" = this account is seller. + All item in the list can leave message to buyer and seller multi action that mean each item is seperated. If item is bought it have 3 options to select + and then when select "Positive", "Neutral" and "Negative" a rating section appear,add rating to seller, and comment, if select "I'll leave Feedback later" a rating section disappear. + If item is sold it have 2 options to select and then when select "Positive" a comment box appear to add comment text to buyer, if select "I'll leave Feedback later" this comment box will disappear. + </para> + </section> + <section> + <title> + Note : + </title> + <para> + If you don't add comment in text box, leave feedback don't send. + </para> + </section> + </section> </section> \ No newline at end of file Modified: ofbiz/trunk/specialpurpose/ebaystore/src/org/ofbiz/ebaystore/EbayStore.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/src/org/ofbiz/ebaystore/EbayStore.java?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/src/org/ofbiz/ebaystore/EbayStore.java (original) +++ ofbiz/trunk/specialpurpose/ebaystore/src/org/ofbiz/ebaystore/EbayStore.java Wed Mar 17 17:28:01 2010 @@ -1449,7 +1449,7 @@ public class EbayStore { entry.put("buyer", buyer); String buyerEmail = null; if (sellingManagerSoldOrder.getBuyerID() != null) { - buyerEmail = sellingManagerSoldOrder.getBuyerEmail(); + buyerEmail = sellingManagerSoldOrder.getBuyerEmail(); } entry.put("buyerEmail", buyerEmail); GetItemCall api = new GetItemCall(apiContext); @@ -1504,7 +1504,7 @@ public class EbayStore { shippedStatus = sellingManagerSoldOrder.getOrderStatus().getShippedStatus().value(); } if (sellingManagerSoldOrder.getOrderStatus().getShippedTime() != null) { - shippedTime = sellingManagerSoldOrder.getOrderStatus().getShippedTime().getTime(); + shippedTime = sellingManagerSoldOrder.getOrderStatus().getShippedTime().getTime(); } } entry.put("paidTime", paidTime); Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/WEB-INF/actions/email/GetProductStoreEmailTemplate.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/WEB-INF/actions/email/GetProductStoreEmailTemplate.groovy?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/WEB-INF/actions/email/GetProductStoreEmailTemplate.groovy (original) +++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/WEB-INF/actions/email/GetProductStoreEmailTemplate.groovy Wed Mar 17 17:28:01 2010 @@ -22,13 +22,13 @@ import org.ofbiz.base.util.*; contentId = null; contentRoles = delegator.findByAnd("ContentRole", UtilMisc.toMap("partyId", partyId, "roleTypeId", "OWNER")); if (contentRoles.size() != 0) { - contentRoles.each { contentRole-> - contents = delegator.findByAnd("Content", UtilMisc.toMap("contentId", contentRole.getString("contentId"), "ownerContentId", emailType)); - if (contents.size() != 0) { - if (emailType.equals(contents.get(0).getString("ownerContentId"))) { - contentId = contents.get(0).getString("contentId"); - } - } - } + contentRoles.each { contentRole-> + contents = delegator.findByAnd("Content", UtilMisc.toMap("contentId", contentRole.getString("contentId"), "ownerContentId", emailType)); + if (contents.size() != 0) { + if (emailType.equals(contents.get(0).getString("ownerContentId"))) { + contentId = contents.get(0).getString("contentId"); + } + } + } } context.contentId = contentId; \ No newline at end of file Modified: ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountForms.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountForms.xml (original) +++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountForms.xml Wed Mar 17 17:28:01 2010 @@ -20,7 +20,7 @@ under the License. <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd"> - <form name="NewEbayAccount" type="single" target="createEbayAccount"> + <form name="NewEbayAccount" type="single" target="createEbayAccount"> <auto-fields-service service-name="createEbayAccount"/> <field name="statusId"><hidden value="PARTY_ENABLED"/></field> <field name="gender"> Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js (original) +++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js Wed Mar 17 17:28:01 2010 @@ -275,7 +275,7 @@ function getShipOptions() { var shipOptions = null; var optionList = []; if ($F('shipMethod') == "" || $F('shipMethod') == null) { - new Ajax.Request('getShipOptions', { + new Ajax.Request('getShipOptions', { asynchronous: false, onSuccess: function(transport) { var data = transport.responseText.evalJSON(true); @@ -586,7 +586,7 @@ function updateShippingSummary() { } function updateBillingSummary() { - var fullName = $F('firstNameOnCard') + " " +$F('lastNameOnCard'); + var fullName = $F('firstNameOnCard') + " " +$F('lastNameOnCard'); $('completedBillToAttn').update("Attn: " + fullName); var extension = ""; if ($F('billToExtension')) { Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/profile.js URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/profile.js?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/profile.js (original) +++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/profile.js Wed Mar 17 17:28:01 2010 @@ -128,8 +128,8 @@ function validatePhoneNumber(errorDivId, } function submitValidNewUser() { - validatePhoneNumber('shipToPhoneRequired', 'shipToContactNumber', 'shipToCountryCode', 'shipToAreaCode'); - validatePhoneNumber('billToPhoneRequired', 'billToContactNumber', 'billToCountryCode', 'billToAreaCode'); + validatePhoneNumber('shipToPhoneRequired', 'shipToContactNumber', 'shipToCountryCode', 'shipToAreaCode'); + validatePhoneNumber('billToPhoneRequired', 'billToContactNumber', 'billToCountryCode', 'billToAreaCode'); if (validateNewUser.validate()) { $('newUserForm').submit(); } @@ -172,7 +172,7 @@ function useShippingAddressAsBillingTogg copyShipToBillAddress(); hideErrorMessage(); } else { - validBillingAddress(); + validBillingAddress(); stopObservingShipToBillAddress(); $('billToAddress1').disabled = false ; $('billToAddress2').disabled = false ; Modified: ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/global.css URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/global.css?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/global.css (original) +++ ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/global.css Wed Mar 17 17:28:01 2010 @@ -79,11 +79,11 @@ body > #wrap {height: auto; min-height: body { font: 11px/ 165% "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif; - color: #666666; - margin: 0; - padding: 0; - background: url(/ofbiz/images/bg.png) top left repeat-x #b5b5b5; - text-align: center; + color: #666666; + margin: 0; + padding: 0; + background: url(/ofbiz/images/bg.png) top left repeat-x #b5b5b5; + text-align: center; } .clearfix:after { @@ -118,60 +118,60 @@ html[xmlns] .clearfix { Typography ********************************/ a,a:active,a:link { - text-decoration: none; - color: #0066CC; + text-decoration: none; + color: #0066CC; } a:visited { - text-decoration: none; + text-decoration: none; } a:hover { - color: #030d1c; + color: #030d1c; } h1,h2,h3 { - font-family: "Trebuchet MS", Tahoma, Arial, Sans-serif; - color: #555; + font-family: "Trebuchet MS", Tahoma, Arial, Sans-serif; + color: #555; } h1 { - font-family: "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif; - font-size: 350%; - font-weight: normal; - letter-spacing: -2px; - padding: 15px 10px 5px 10px; - margin: 0; + font-family: "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif; + font-size: 350%; + font-weight: normal; + letter-spacing: -2px; + padding: 15px 10px 5px 10px; + margin: 0; } h2 { - font-size: 200%; - color: #895F30; - padding: 20px 10px 5px 10px; - margin: 0; + font-size: 200%; + color: #895F30; + padding: 20px 10px 5px 10px; + margin: 0; } h3 { - font-size: 170%; - font-weight: normal; - padding: 20px 10px 5px 10px; - margin: 0; + font-size: 170%; + font-weight: normal; + padding: 20px 10px 5px 10px; + margin: 0; } h4 { - font-size: 100%; - font-weight: bolder; - color: #000000; - padding: 20px 10px 5px 10px; - margin: 0; + font-size: 100%; + font-weight: bolder; + color: #000000; + padding: 20px 10px 5px 10px; + margin: 0; } strong { font-size: 100%; - font-weight: bolder; - color: #000000; - padding: 20px 10px 5px 10px; - margin: 0; + font-weight: bolder; + color: #000000; + padding: 20px 10px 5px 10px; + margin: 0; } p{ @@ -179,31 +179,31 @@ p{ } p,dl { - padding: 10px; - margin: 0; + padding: 10px; + margin: 0; } ul{ - margin: 10px 10px; - padding: 0 0 0 10px; + margin: 10px 10px; + padding: 0 0 0 10px; } ul { - list-style: none; + list-style: none; } ol { - margin: 10px 30px; - padding: 0; + margin: 10px 30px; + padding: 0; } dt { - font-weight: bold; - color: #b13f1a; + font-weight: bold; + color: #b13f1a; } dd { - padding-left: 25px; + padding-left: 25px; } /******************************** @@ -265,28 +265,28 @@ blockquote { Tables ********************************/ table { - border-collapse: collapse; - margin: 15px 10px; + border-collapse: collapse; + margin: 15px 10px; } th { - background: #d14b1f url(/ofbiz/images/header-bg.jpg) repeat-x 0 -100px; - height: 38px; - padding-left: 12px; - padding-right: 12px; - color: #fff; - text-align: left; - border-left: 1px solid #d14b1f; - border-bottom: solid 2px #fff; + background: #d14b1f url(/ofbiz/images/header-bg.jpg) repeat-x 0 -100px; + height: 38px; + padding-left: 12px; + padding-right: 12px; + color: #fff; + text-align: left; + border-left: 1px solid #d14b1f; + border-bottom: solid 2px #fff; } tr { - height: 34px; + height: 34px; } td { - padding-left: 11px; - padding-right: 11px; + padding-left: 11px; + padding-right: 11px; } /******************************** @@ -356,20 +356,20 @@ input.button { #wrap{ background: #fff url(/ofbiz/images/wrapper.jpg) top center no-repeat; width: 945px; - margin: 0 auto; + margin: 0 auto; text-align:left; } #content-wrap { width:945px; - margin:0 auto; + margin:0 auto; padding-bottom: 42px; } #content { width:500px; - float:left; - padding:30px 0 25px 0; + float:left; + padding:30px 0 25px 0; } /******************************** @@ -378,11 +378,11 @@ input.button { #footer { background: url(/ofbiz/images/footer.jpg) bottom center no-repeat; position: relative; - margin: -42px auto 0px auto; - height: 42px; - clear:both; - font-size:11px; - font-family:Verdana, Arial, sans-serif; + margin: -42px auto 0px auto; + height: 42px; + clear:both; + font-size:11px; + font-family:Verdana, Arial, sans-serif; width:945px; } @@ -543,20 +543,20 @@ input.button { } #main h2 { - padding-bottom: 3px; - margin-top: 15px; - font: normal 2.5em "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif; - color: #333; - letter-spacing: -2px; - text-transform: none; - border-bottom: 1px solid #ebebeb; + padding-bottom: 3px; + margin-top: 15px; + font: normal 2.5em "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif; + color: #333; + letter-spacing: -2px; + text-transform: none; + border-bottom: 1px solid #ebebeb; } #main h2 a { - color: #333; - text-decoration: none; - background: none; - border: none; + color: #333; + text-decoration: none; + background: none; + border: none; } #main ul li { @@ -590,51 +590,51 @@ input.button { } #main #col1 h2, #main #col2 h2 { - border-bottom: 1px solid #ebebeb; - color:#304C70; - padding-bottom: 3px; - letter-spacing: -3px; - text-transform: none; - font-size:30px; + border-bottom: 1px solid #ebebeb; + color:#304C70; + padding-bottom: 3px; + letter-spacing: -3px; + text-transform: none; + font-size:30px; } .feature { - margin:0px; - padding:0px; - height:435px; + margin:0px; + padding:0px; + height:435px; } .screen { - margin:10px 0 5px 0; - padding:0px; - background:#fff; - border:1px solid #eee; - width:255px; - height:200px; - overflow:hidden; + margin:10px 0 5px 0; + padding:0px; + background:#fff; + border:1px solid #eee; + width:255px; + height:200px; + overflow:hidden; } #main .hero { - margin:10px 0 5px 0; - padding:0px; - background:#fff; - border:1px solid #eee; - width:555px; + margin:10px 0 5px 0; + padding:0px; + background:#fff; + border:1px solid #eee; + width:555px; } #main .highlights { - float:right; - width:240px; - background:#dfe9ef; - border:1px solid #eee; - margin:0px 10px 0px 5px; - display:inline; + float:right; + width:240px; + background:#dfe9ef; + border:1px solid #eee; + margin:0px 10px 0px 5px; + display:inline; } #main .form { - width:240px; - margin:0px 10px 0px 5px; - display:inline; + width:240px; + margin:0px 10px 0px 5px; + display:inline; } #main .highlights ul li { @@ -642,7 +642,7 @@ input.button { } #main .highlights h4 { - padding:5px 5px 0 5px; + padding:5px 5px 0 5px; } #sidebar { @@ -792,160 +792,160 @@ p.thumbs { ********************************/ /*HOME*/ body#home #wrap { - position: relative; - background: #fff url(/ofbiz/images/home-wrapper.jpg) top center no-repeat; - width: 945px; - margin: 0 auto; - text-align: left; + position: relative; + background: #fff url(/ofbiz/images/home-wrapper.jpg) top center no-repeat; + width: 945px; + margin: 0 auto; + text-align: left; } body#home #header { - position: relative; - width: 945px; - height: 403px; - padding: 0; - margin: 0 auto; - background: transparent; + position: relative; + width: 945px; + height: 403px; + padding: 0; + margin: 0 auto; + background: transparent; } body#home #header #slides { - position: absolute; - top: 128px; - left: 10px; - background: url(/ofbiz/images/slideshow-bg.jpg) top center no-repeat; - width: 923px; - height: 260px; + position: absolute; + top: 128px; + left: 10px; + background: url(/ofbiz/images/slideshow-bg.jpg) top center no-repeat; + width: 923px; + height: 260px; } body#home #header #slides .slideshow { - width:923px; - height:260px; - margin:0px; - padding:0px; + width:923px; + height:260px; + margin:0px; + padding:0px; } body#home #header #slides .callout { - position: absolute; - top: 35px; - left: 30px; - font-size: 30px; - line-height: 30px; - color: #2b1f48; + position: absolute; + top: 35px; + left: 30px; + font-size: 30px; + line-height: 30px; + color: #2b1f48; } body#home #header #slides .description { - position: absolute; - top: 175px; - left: 30px; - font-size: 14px; - line-height: 15px; - color: #e0e0e0; - width: 350px; + position: absolute; + top: 175px; + left: 30px; + font-size: 14px; + line-height: 15px; + color: #e0e0e0; + width: 350px; } body#home #header #slides .controls { - width: 100px; - position: absolute; - top: 15px; - left: 750px; - height:30px; + width: 100px; + position: absolute; + top: 15px; + left: 750px; + height:30px; } body#home #header #slides .controls a { - border: none; - position:absolute; - height:30px; - line-height:24px; - padding:5px; - text-indent:-9999px; - outline:none; + border: none; + position:absolute; + height:30px; + line-height:24px; + padding:5px; + text-indent:-9999px; + outline:none; } body#home #header #slides .controls a.previous { - background: url(/ofbiz/images/backward.gif) top center no-repeat; - left:0px; - height:30px; - width:16px; + background: url(/ofbiz/images/backward.gif) top center no-repeat; + left:0px; + height:30px; + width:16px; } body#home #header #slides .controls a.next { - background: url(/ofbiz/images/forward.gif) top center no-repeat; - left:60px; - height:30px; - width:16px; + background: url(/ofbiz/images/forward.gif) top center no-repeat; + left:60px; + height:30px; + width:16px; } body#home #header #slides .controls a.stop { - background: url(/ofbiz/images/pause.gif) top center no-repeat; - left:30px; - height:30px; - width:16px; + background: url(/ofbiz/images/pause.gif) top center no-repeat; + left:30px; + height:30px; + width:16px; } body#home #header #slides .controls a.start { - background: url(/ofbiz/images/start.gif) top center no-repeat; - left:30px; - height:30px; - width:16px; + background: url(/ofbiz/images/start.gif) top center no-repeat; + left:30px; + height:30px; + width:16px; } body#home #header #slides .controls a img { - background: none; - border: none; - cursor: pointer; + background: none; + border: none; + cursor: pointer; } body#home #header #slides .mantle{ - position:absolute; - top:58px; - left:385px; + position:absolute; + top:58px; + left:385px; } body#home #col1 { - float: left; - width: 260px; - padding: 0; - margin: 5px 0 0 0px; - display: inline; + float: left; + width: 260px; + padding: 0; + margin: 5px 0 0 0px; + display: inline; } body#home #col2 { - float: left; - width: 260px; - padding: 0; - margin: 5px 0 0 20px; - display: inline; + float: left; + width: 260px; + padding: 0; + margin: 5px 0 0 20px; + display: inline; } .downloadNow { - margin:30px 0 10px 0; + margin:30px 0 10px 0; } .downloadLinks span.docs { - float:left; - margin:0px 0px 0 0; - display:inline; + float:left; + margin:0px 0px 0 0; + display:inline; } .downloadLinks span.previousVersions { - float:right; - margin:0px 20px 0 0; - display:inline; + float:right; + margin:0px 20px 0 0; + display:inline; } /*SUBPAGE - NO SIDEBAR*/ body#full #wrap { - position: relative; - background: #ffffff url(/ofbiz/images/full-wrapper.jpg) top center no-repeat; - width: 945px; - margin: 0 auto; - text-align: left; + position: relative; + background: #ffffff url(/ofbiz/images/full-wrapper.jpg) top center no-repeat; + width: 945px; + margin: 0 auto; + text-align: left; } body#semi #wrap { - position: relative; - background: #ffffff url(/ofbiz/images/wrapper.jpg) top center no-repeat; - width: 945px; - margin: 0 auto; - text-align: left; + position: relative; + background: #ffffff url(/ofbiz/images/wrapper.jpg) top center no-repeat; + width: 945px; + margin: 0 auto; + text-align: left; } Modified: ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/rsscss.css URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/rsscss.css?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/rsscss.css (original) +++ ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/images/rsscss.css Wed Mar 17 17:28:01 2010 @@ -19,10 +19,10 @@ /* border table for feed news */ .fd_bordertable { - background: #FFFFFF; - border-style: solid; border-width: 1px; border-color: #CCCCCC; - padding: 0; - width: 100%; + background: #FFFFFF; + border-style: solid; border-width: 1px; border-color: #CCCCCC; + padding: 0; + width: 100%; } /* maintable table for feed news */ @@ -30,25 +30,25 @@ /* header cell with header text and xml button */ .fd_header { - padding: 5px; - padding-left: 4px; - background: #000099; - color: white; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 8pt; - font-weight: bold; - text-align: left; - vertical-align: top; - width: 100%; + padding: 5px; + padding-left: 4px; + background: #000099; + color: white; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 8pt; + font-weight: bold; + text-align: left; + vertical-align: top; + width: 100%; } /* item description area */ .fd_itemcell { - padding: 10px; - line-height: 16px; - background: #FAFAFA; color: black; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 12px + padding: 10px; + line-height: 16px; + background: #FAFAFA; color: black; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px } /* item link properties, such as text-decoration and etc */ Modified: ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/script/slides.js URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/script/slides.js?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/script/slides.js (original) +++ ofbiz/trunk/specialpurpose/ofbizwebsite/webapp/ofbiz/script/slides.js Wed Mar 17 17:28:01 2010 @@ -19,110 +19,110 @@ var Slides = Class.create({ - initialize: function(element, options) { - this.options = { - Duration: 1, - Delay: 10.0, - Random: true, - Slideshow:true, - Controls:true - } - Object.extend(this.options, options || {}); - - this.element = $(element); - this.slides = this.element.childElements(); - this.num_slides = this.slides.length; - this.current_slide = (this.options.Random) ? (Math.floor(Math.random()*this.num_slides)) : 0; - this.end_slide = this.num_slides - 1; - - this.slides.invoke('hide'); - this.slides[this.current_slide].show(); - - if (this.options.Slideshow) { - this.startSlideshow(); - } - if (this.options.Controls) { - this.addControls(); - } - }, - - addControls: function() { - this.btn_previous = $('previous'); - this.btn_next = $('next'); - this.btn_start = $('start'); - this.btn_stop = $('stop'); - - this.btn_previous.observe('click', this.moveToPrevious.bindAsEventListener(this)); - this.btn_next.observe('click', this.moveToNext.bindAsEventListener(this)); - this.btn_start.observe('click', this.startSlideshow.bindAsEventListener(this)); - this.btn_stop.observe('click', this.stopSlideshow.bindAsEventListener(this)); - }, - - startSlideshow: function(event) { - if (event) { Event.stop(event); } - if (!this.running) { - this.fadeStartBtn(); - this.executer = new PeriodicalExecuter(function(){ - this.updateSlide(this.current_slide+1); - }.bind(this),this.options.Delay); - this.running=true; - } - - }, - - fadeStartBtn: function() { - var startBtn = $('start'); - var stopBtn = $('stop'); - Effect.Fade(startBtn, { duration: 0.3 }), - Effect.Appear(stopBtn, { duration: 0.3 }) - }, - - stopSlideshow: function(event) { - if (event) { Event.stop(event); } - if (this.executer) { - this.fadeStopBtn(); - this.executer.stop(); - this.running=false; - } - }, - - fadeStopBtn: function() { - var startBtn = $('start'); - var stopBtn = $('stop'); - Effect.Fade(stopBtn, { duration: 0.3 }), - Effect.Appear(startBtn, { duration: 0.3 }) - }, - - moveToPrevious: function (event) { - if (event) { Event.stop(event); } - //this.stopSlideshow(); - this.updateSlide(this.current_slide-1); - }, - - moveToNext: function (event) { - if (event) { Event.stop(event); } - //this.stopSlideshow(); - this.updateSlide(this.current_slide+1); - }, - - updateSlide: function(next_slide) { - if (next_slide > this.end_slide) { - next_slide = 0; - } - else if ( next_slide == -1 ) { - next_slide = this.end_slide; - } - - this.fadeInOut(next_slide, this.current_slide); - }, - - fadeInOut: function (next, current) { - new Effect.Parallel([ - new Effect.Fade(this.slides[current], { sync: true }), - new Effect.Appear(this.slides[next], { sync: true }) - ], { duration: this.options.Duration }); - - this.current_slide = next; - } + initialize: function(element, options) { + this.options = { + Duration: 1, + Delay: 10.0, + Random: true, + Slideshow:true, + Controls:true + } + Object.extend(this.options, options || {}); + + this.element = $(element); + this.slides = this.element.childElements(); + this.num_slides = this.slides.length; + this.current_slide = (this.options.Random) ? (Math.floor(Math.random()*this.num_slides)) : 0; + this.end_slide = this.num_slides - 1; + + this.slides.invoke('hide'); + this.slides[this.current_slide].show(); + + if (this.options.Slideshow) { + this.startSlideshow(); + } + if (this.options.Controls) { + this.addControls(); + } + }, + + addControls: function() { + this.btn_previous = $('previous'); + this.btn_next = $('next'); + this.btn_start = $('start'); + this.btn_stop = $('stop'); + + this.btn_previous.observe('click', this.moveToPrevious.bindAsEventListener(this)); + this.btn_next.observe('click', this.moveToNext.bindAsEventListener(this)); + this.btn_start.observe('click', this.startSlideshow.bindAsEventListener(this)); + this.btn_stop.observe('click', this.stopSlideshow.bindAsEventListener(this)); + }, + + startSlideshow: function(event) { + if (event) { Event.stop(event); } + if (!this.running) { + this.fadeStartBtn(); + this.executer = new PeriodicalExecuter(function(){ + this.updateSlide(this.current_slide+1); + }.bind(this),this.options.Delay); + this.running=true; + } + + }, + + fadeStartBtn: function() { + var startBtn = $('start'); + var stopBtn = $('stop'); + Effect.Fade(startBtn, { duration: 0.3 }), + Effect.Appear(stopBtn, { duration: 0.3 }) + }, + + stopSlideshow: function(event) { + if (event) { Event.stop(event); } + if (this.executer) { + this.fadeStopBtn(); + this.executer.stop(); + this.running=false; + } + }, + + fadeStopBtn: function() { + var startBtn = $('start'); + var stopBtn = $('stop'); + Effect.Fade(stopBtn, { duration: 0.3 }), + Effect.Appear(startBtn, { duration: 0.3 }) + }, + + moveToPrevious: function (event) { + if (event) { Event.stop(event); } + //this.stopSlideshow(); + this.updateSlide(this.current_slide-1); + }, + + moveToNext: function (event) { + if (event) { Event.stop(event); } + //this.stopSlideshow(); + this.updateSlide(this.current_slide+1); + }, + + updateSlide: function(next_slide) { + if (next_slide > this.end_slide) { + next_slide = 0; + } + else if ( next_slide == -1 ) { + next_slide = this.end_slide; + } + + this.fadeInOut(next_slide, this.current_slide); + }, + + fadeInOut: function (next, current) { + new Effect.Parallel([ + new Effect.Fade(this.slides[current], { sync: true }), + new Effect.Appear(this.slides[next], { sync: true }) + ], { duration: this.options.Duration }); + + this.current_slide = next; + } }); \ No newline at end of file Modified: ofbiz/trunk/specialpurpose/projectmgr/entitydef/entitymodel.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/entitydef/entitymodel.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/entitydef/entitymodel.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/entitydef/entitymodel.xml Wed Mar 17 17:28:01 2010 @@ -31,7 +31,7 @@ under the License. <extend-entity entity-name="WorkEffort"> <field name="sequenceNum" type="numeric"> - <description>To order the workefforts under a workeffort parent</description> + <description>To order the workefforts under a workeffort parent</description> </field> </extend-entity> Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml Wed Mar 17 17:28:01 2010 @@ -314,13 +314,13 @@ </field> <field entry-name="sequenceNum" name="taskSeqNum" parameter-name="sequenceNum"><text size="3"/></field> <field entry-name="workEffortName" name="taskName" parameter-name="workEffortName" title="${uiLabelMap.CommonName}"> - <text/> + <text/> </field> <field name="workEffortTypeId" title="${uiLabelMap.CommonType}"> <display-entity entity-name="WorkEffortType" key-field-name="workEffortTypeId" description="${description}" also-hidden="false"/> </field> <field name="currentStatusId" title="${uiLabelMap.CommonStatus}"> - <display-entity entity-name="StatusItem" key-field-name="statusId" description="${description}" also-hidden="false"/> + <display-entity entity-name="StatusItem" key-field-name="statusId" description="${description}" also-hidden="false"/> </field> <field name="plannedHours" parameter-name="estimatedDuration" title="${uiLabelMap.ProjectMgrPlannedHours}"><text size="3"/></field> <field name="actualHours" title="${uiLabelMap.ProjectMgrActualHours}"><display/></field> @@ -340,7 +340,7 @@ <field name="estimatedStartDate" title="${uiLabelMap.WorkEffortEstimatedStartDate}"><date-time type="date"/></field> <field name="estimatedCompletionDate" title="${uiLabelMap.WorkEffortEstimatedCompletionDate}"><date-time type="date"/></field> <field name="edit" title=" "> - <hyperlink target="EditTask?workEffortId=${workEffortId}" description="${uiLabelMap.CommonEdit}"></hyperlink> + <hyperlink target="EditTask?workEffortId=${workEffortId}" description="${uiLabelMap.CommonEdit}"></hyperlink> </field> <field name="submitButton" title="${uiLabelMap.CommonUpdate}"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/legacy.css URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/legacy.css?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/legacy.css (original) +++ ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/legacy.css Wed Mar 17 17:28:01 2010 @@ -18,469 +18,469 @@ */ .tooltip { /* tooltip style */ - background-color: #ffffbb; - border: 0.1em solid #999999; - color: #000000; - font-style: italic; - margin: 0.4em; - padding: 0.1em; + background-color: #ffffbb; + border: 0.1em solid #999999; + color: #000000; + font-style: italic; + margin: 0.4em; + padding: 0.1em; } .page-container { - background-color: #B8DFFC; + background-color: #B8DFFC; } /*********************************************** Boxes ***********************************************/ .boxhead { - color: #FFFFFF; - font-size: 1.1em; - font-weight: bold; + color: #FFFFFF; + font-size: 1.1em; + font-weight: bold; } .boxlink { - float: right; + float: right; } div.boxtop { - background-color: #333; - border-color: #999999; - border-style: solid; - margin: 0 auto 0 auto; - padding: 0.1em 0.4em 0.1em 0.4em; - text-align: center; + background-color: #333; + border-color: #999999; + border-style: solid; + margin: 0 auto 0 auto; + padding: 0.1em 0.4em 0.1em 0.4em; + text-align: center; } div.boxhead-left { - border: none; - color: #FFFFFF; - float: left; - font-size: 1.1em; - font-weight: bold; - width: auto; + border: none; + color: #FFFFFF; + float: left; + font-size: 1.1em; + font-weight: bold; + width: auto; } div.boxhead-fill { - border: none; - color: #FFFFFF; - font-size: 1.1em; - font-weight: bold; - text-align: center; - width: 0; + border: none; + color: #FFFFFF; + font-size: 1.1em; + font-weight: bold; + text-align: center; + width: 0; } div.boxhead-right { - border: none; - color: #FFFFFF; - float: right; - font-size: 1.1em; - font-weight: bold; - width: auto; + border: none; + color: #FFFFFF; + float: right; + font-size: 1.1em; + font-weight: bold; + width: auto; } .boxoutside { - background-color: #FFFFFF; - border: 0.1em solid #999999; + background-color: #FFFFFF; + border: 0.1em solid #999999; } .boxtop { - background-color: #333; - border: 0 solid #999999; - padding: 0.1em 0.4em 0.1em 0.4em; + background-color: #333; + border: 0 solid #999999; + padding: 0.1em 0.4em 0.1em 0.4em; } .boxbottom { - background-color: #FFFFFF; - border: 0 solid #999999; - padding: 0.4em; + background-color: #FFFFFF; + border: 0 solid #999999; + padding: 0.4em; } /*********************************************** Submenu ***********************************************/ .submenutextinfo { - border-right: 0.1em solid #5886C6; - color: #ffffff; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.5em; - padding-right: 0.5em; + border-right: 0.1em solid #5886C6; + color: #ffffff; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.5em; + padding-right: 0.5em; } .submenutext,a.submenutext,a.submenutext:visited { - color: #333; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.2em; - padding-right: 0.5em; + color: #333; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.2em; + padding-right: 0.5em; } a.submenutext:hover { - color: #1c334d; + color: #1c334d; } .submenutextdisabled, a.submenutextdisabled { - color: #ccc; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.2em; - padding-right: 0.5em; + color: #ccc; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.2em; + padding-right: 0.5em; } a.submenutextdisabled:hover { - color: #ccc; + color: #ccc; } .submenutextinforight { - color: #ffffff; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.2em; + color: #ffffff; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.2em; } .submenutextright, a.submenutextright { - color: #333; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.2em; + color: #333; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.2em; } a.submenutextright:hover { - color: #1c334d; + color: #1c334d; } .submenutextrightdisabled, a.submenutextrightdisabled { - color: #ccc; - font-size: 0.9em; - font-weight: bold; - padding-left: 0.2em; + color: #ccc; + font-size: 0.9em; + font-weight: bold; + padding-left: 0.2em; } a.submenutextrightdisabled:hover { - color: #ccc; + color: #ccc; } a img.imageborder { - border: 2px solid #ddd; + border: 2px solid #ddd; } /*********************************************** Trees ***********************************************/ .treeWrapper { - background-color: #ffffff; - border-top: 0.1em solid #eee; - border-left: 0.1em solid #eee; - color: #444; - font-size: 1.6em; - font-weight: normal; - margin-left: 1.2em; - margin-top: 0.2em; - text-align: left; - text-decoration: none; + background-color: #ffffff; + border-top: 0.1em solid #eee; + border-left: 0.1em solid #eee; + color: #444; + font-size: 1.6em; + font-weight: normal; + margin-left: 1.2em; + margin-top: 0.2em; + text-align: left; + text-decoration: none; } .treewrapper { - margin-left: 1em; + margin-left: 1em; } .treeitem { - border: #888888 solid 0.1em; - color: #333; - font-size: 1.4em; - font-weight: bold; + border: #888888 solid 0.1em; + color: #333; + font-size: 1.4em; + font-weight: bold; } .basic-tree ul { - padding-left: 1em; + padding-left: 1em; } .basic-tree li { - padding-left: 1em; - white-space: nowrap; + padding-left: 1em; + white-space: nowrap; } .basic-tree li .expanded { - background: url(/images/collapse.gif) no-repeat left center; - padding-right: 1em; + background: url(/images/collapse.gif) no-repeat left center; + padding-right: 1em; } .basic-tree li .collapsed { - background: url(/images/expand.gif) no-repeat left center; - padding-right: 1em; + background: url(/images/expand.gif) no-repeat left center; + padding-right: 1em; } .basic-tree li .leafnode { - background: url(/images/expand-collapse-placeholder.gif) no-repeat left center; - padding-right: 1em; + background: url(/images/expand-collapse-placeholder.gif) no-repeat left center; + padding-right: 1em; } .basic-tree li .treeitem { - border-style: none; - color: #333; - font-size: 1em; + border-style: none; + color: #333; + font-size: 1em; } .basic-tree li a:hover { - color: #333; + color: #333; } /*********************************************** Navigation Bars ***********************************************/ .basic-nav { - padding-left: 1em; + padding-left: 1em; } .basic-nav ul a { - color: #333; - font-size: 1.1em; + color: #333; + font-size: 1.1em; } .basic-nav ul .selected, .basic-nav ul .selected a { - color: #1c334d; + color: #1c334d; } .basic-nav ul a:hover { - color: #1c334d; + color: #1c334d; } .basic-nav ul .disabled, .basic-nav ul .disabled a { - color: #ccc; + color: #ccc; } .tool-bar { - background-color: #D4D0C8; - border: 0.1em solid #333; - padding: 0.2em; + background-color: #D4D0C8; + border: 0.1em solid #333; + padding: 0.2em; } .tool-bar ul li { - background-color: #D4D0C8; - padding: 0.1em; + background-color: #D4D0C8; + padding: 0.1em; } .nav-pager { - padding:0.08em 0 0.5em 0; - clear:both; - display:block; - position:relative; - margin:0px 0 10px 0; + padding:0.08em 0 0.5em 0; + clear:both; + display:block; + position:relative; + margin:0px 0 10px 0; } .nav-pager ul { - display: inline; /* IE Fix */ + display: inline; /* IE Fix */ } .nav-pager ul li { - background-color: #ffffff; - float: left; - font-weight: bold; - line-height: 1.8em; - margin: 0.2em; + background-color: #ffffff; + float: left; + font-weight: bold; + line-height: 1.8em; + margin: 0.2em; } .nav-pager ul li a { - display: block; - color:#444444; - font-weight: bold; + display: block; + color:#444444; + font-weight: bold; } .nav-pager ul .nav-first, .nav-pager ul .nav-previous, .nav-pager ul .nav-next, .nav-pager ul .nav-last { - background-color:#fff; - border:2px solid #ddd; - color:#444; - padding: 0 0.5em 0 0.5em; + background-color:#fff; + border:2px solid #ddd; + color:#444; + padding: 0 0.5em 0 0.5em; } .nav-pager ul .nav-first-disabled, .nav-pager ul .nav-previous-disabled, .nav-pager ul .nav-next-disabled, .nav-pager ul .nav-last-disabled { - background-color:#fff; - border:2px solid #ddd; - color:#ccc; - padding: 0 0.5em 0 0.5em; + background-color:#fff; + border:2px solid #ddd; + color:#ccc; + padding: 0 0.5em 0 0.5em; } .nav-pager select { - margin: 0; + margin: 0; } /*********************************************** Legacy Table Styles ***********************************************/ .formTableBordered { - border: 2px solid #eee; - width: 100%; + border: 2px solid #eee; + width: 100%; } .basic-table { - margin-bottom: 1em; - width: 100%; + margin-bottom: 1em; + width: 100%; } form .basic-table, .screenlet-body .basic-table { - margin-bottom: 0; + margin-bottom: 0; } .basic-table tr th,.basic-table .header-row { - font-weight: bold; - text-align: left; + font-weight: bold; + text-align: left; } .basic-table .header-row td { - border-bottom: 1px solid #999; + border-bottom: 1px solid #999; } .basic-table .header-row td a { - color: #000000; + color: #000000; } .basic-table .alternate-row { - background-color: #f5f6eb; + background-color: #f5f6eb; } .basic-table .selected { - background: #FFFCCF; + background: #FFFCCF; } .basic-table .alternate-rowSelected { - background: #FFF55F; + background: #FFF55F; } .basic-table .Validate { - background: #A0D5F7; + background: #A0D5F7; } .basic-table .alternate-rowValidate { - background: #72A8F2; + background: #72A8F2; } .basic-table .Warn { - background: #f55C5C; + background: #f55C5C; } .basic-table .alternate-rowWarn { - background: #FC7455; + background: #FC7455; } .basic-table tr .button-col { - vertical-align: top; + vertical-align: top; } .basic-table tr .button-col a { - background:url(../images/btn-bg.gif) center left repeat-x; - border: 2px solid #ddd; - color: #333; - float: left; - font-weight:bold; - margin: 0 0.1em 0 0.1em; - padding: 0.1em 0.4em 0.1em 0.4em; - text-transform:uppercase; - white-space: nowrap; + background:url(../images/btn-bg.gif) center left repeat-x; + border: 2px solid #ddd; + color: #333; + float: left; + font-weight:bold; + margin: 0 0.1em 0 0.1em; + padding: 0.1em 0.4em 0.1em 0.4em; + text-transform:uppercase; + white-space: nowrap; } .basic-table tr .smallSubmit,.basic-table tr .smallSubmit:visited { - background:url(../images/btn-bg.gif) center left repeat-x; - border:2px solid #ddd; - color:#444; - font-weight:bold; - line-height:1.8em; - margin:5px 5px 2px; - padding:2px 4px; - text-transform:uppercase; + background:url(../images/btn-bg.gif) center left repeat-x; + border:2px solid #ddd; + color:#444; + font-weight:bold; + line-height:1.8em; + margin:5px 5px 2px; + padding:2px 4px; + text-transform:uppercase; } .basic-table tr .button-col a:hover, .basic-table tr .button-col a:active { - color: #1c334d; - margin: 0 0.1em 0 0.1em; - padding: 0.1em 0.4em 0.1em 0.4em; + color: #1c334d; + margin: 0 0.1em 0 0.1em; + padding: 0.1em 0.4em 0.1em 0.4em; } .basic-table .collapsed { - visibility: collapse; + visibility: collapse; } .basic-table .header-row-2 th, .basic-table .header-row-2 td { - background:#D14B1F url(../images/tableheader-bg.jpg) repeat-x scroll 0 -100px; - border-bottom:2px solid #FFFFFF; - border-left:1px solid #D14B1F; - color: #fff; - font-weight: bold; - text-align: left; + background:#D14B1F url(../images/tableheader-bg.jpg) repeat-x scroll 0 -100px; + border-bottom:2px solid #FFFFFF; + border-left:1px solid #D14B1F; + color: #fff; + font-weight: bold; + text-align: left; } .basic-table .header-row-2 th a, .basic-table .header-row-2 td a { - color:#fff; + color:#fff; } .basic-table .header-row-2 th .sort-order-asc, .basic-table .header-row-2 td .sort-order-asc { - background: url(/images/arrow-gr-up.png) no-repeat right; - padding-right: 20px; + background: url(/images/arrow-gr-up.png) no-repeat right; + padding-right: 20px; } .basic-table .header-row-2 th .sort-order-desc, .basic-table .header-row-2 td .sort-order-desc { - background: url(/images/arrow-gr-dw.png) no-repeat right; - padding-right: 20px; + background: url(/images/arrow-gr-dw.png) no-repeat right; + padding-right: 20px; } .basic-table .header-row-2 th .sort-order, .basic-table .header-row-2 td .sort-order { - background: url(/images/arrow-gr.png) no-repeat right; - padding-right: 20px; + background: url(/images/arrow-gr.png) no-repeat right; + padding-right: 20px; } .dark-grid { - border-right: 0.1em solid #000000; - border-top: 0.1em solid #000000; + border-right: 0.1em solid #000000; + border-top: 0.1em solid #000000; } .dark-grid td, .dark-grid .header-row-2 th, .dark-grid .header-row-2 td { - border-bottom: 0.1em solid #000000; - border-left: 0.1em solid #000000; + border-bottom: 0.1em solid #000000; + border-left: 0.1em solid #000000; } .light-grid { - border-right: 0.1em solid #cccccc; - border-top: 0.1em solid #cccccc; + border-right: 0.1em solid #cccccc; + border-top: 0.1em solid #cccccc; } .light-grid td, .light-grid .header-row td { - border-bottom: 0.1em solid #cccccc; - border-left: 0.1em solid #cccccc; + border-bottom: 0.1em solid #cccccc; + border-left: 0.1em solid #cccccc; } .form-widget table tr .label, .form-widget-table tr .label { - /* Added for backward compatibility */ - width: 20%; + /* Added for backward compatibility */ + width: 20%; } .form-widget table,.form-widget-table { - width: auto; + width: auto; } .form-widget-table { - margin-bottom: 1em; + margin-bottom: 1em; } /*********************************************** @@ -520,184 +520,184 @@ height:16px; } .calendar { - border-right: 0.1em solid #cccccc; + border-right: 0.1em solid #cccccc; } .calendar tr td { - border-bottom: 0.1em solid #cccccc; - border-left: 0.1em solid #cccccc; - vertical-align: top; - padding: 0.5em; + border-bottom: 0.1em solid #cccccc; + border-left: 0.1em solid #cccccc; + vertical-align: top; + padding: 0.5em; } .calendar .header-row td { - background-color: #69a9d9; - border-bottom: 0.1em solid #cccccc; - border-left: 0.1em solid #cccccc; - color: #ffffff; - height: auto; - text-align: center; + background-color: #69a9d9; + border-bottom: 0.1em solid #cccccc; + border-left: 0.1em solid #cccccc; + color: #ffffff; + height: auto; + text-align: center; } .calendar tr td .add-new { - float: right; + float: right; } .calendar tr td .h1 { - color: #333; - float: left; + color: #333; + float: left; } .calendar .current-period { - background-color: #ffffcc; + background-color: #ffffcc; } .calendar .active-period { - background-color: #eeeeee; + background-color: #eeeeee; } .calendar_date_select { - color: #fff; - border: #bbb 2px solid; - display: block; - width: 300px; - z-index: 1000; + color: #fff; + border: #bbb 2px solid; + display: block; + width: 300px; + z-index: 1000; } .calendar_date_select thead th { - font-weight: bold; - background-color: #666; - border-top: 1px solid #777; - border-bottom: 2px solid #777; - color: white !important; + font-weight: bold; + background-color: #666; + border-top: 1px solid #777; + border-bottom: 2px solid #777; + color: white !important; } .calendar_date_select .cds_buttons { - text-align: center; - padding: 5px 0px; - background-color: #666; + text-align: center; + padding: 5px 0px; + background-color: #666; } .calendar_date_select .cds_footer { - background-color: #fff; - padding: 3px; - font-size: 12px; - text-align: center; - color:#333; + background-color: #fff; + padding: 3px; + font-size: 12px; + text-align: center; + color:#333; } .calendar_date_select .cds_footer span { - display:none + display:none } .calendar_date_select table { - margin: 0px; - padding: 0px; + margin: 0px; + padding: 0px; } .calendar_date_select .cds_header { - background-color: #fff; - border-bottom: 2px solid #777; - text-align: center; + background-color: #fff; + border-bottom: 2px solid #777; + text-align: center; } .calendar_date_select .cds_header span { - font-size: 15px; - color: #000; - font-weight: bold; + font-size: 15px; + color: #000; + font-weight: bold; } .calendar_date_select select { - font-size: 11px; + font-size: 11px; } .calendar_date_select .cds_header a:hover { - color: #1c334d; + color: #1c334d; } .calendar_date_select .cds_header a { - width: 22px; - height: 20px; - text-decoration: none; - font-size: 14px; - color: #000 !important; + width: 22px; + height: 20px; + text-decoration: none; + font-size: 14px; + color: #000 !important; } .calendar_date_select .cds_header a.prev { - float: left; + float: left; } .calendar_date_select .cds_header a.next { - float: right; + float: right; } .calendar_date_select .cds_header a.close { - float: right; - display: none; + float: right; + display: none; } .calendar_date_select .cds_header select.month { - width: 90px; + width: 90px; } .calendar_date_select .cds_header select.year { - width: 61px; + width: 61px; } .calendar_date_select .cds_buttons a { - color: #ccc; - font-size: 11px; + color: #ccc; + font-size: 11px; } .calendar_date_select td { - font-size: 12px; - width: 24px; - height: 21px; - text-align: center; - vertical-align: middle; - background-color: #f2f2f2; + font-size: 12px; + width: 24px; + height: 21px; + text-align: center; + vertical-align: middle; + background-color: #f2f2f2; } .calendar_date_select td.weekend { - background-color: #f6f6f6; + background-color: #f6f6f6; } .calendar_date_select td div { - color: #333; + color: #333; } .calendar_date_select td div.other { - color: #888; + color: #888; } .calendar_date_select td.selected div { - color: #000; + color: #000; } .calendar_date_select tbody td { - border-bottom: 1px solid #555; + border-bottom: 1px solid #555; } .calendar_date_select td.selected { - background-color: #fff; + background-color: #fff; } .calendar_date_select td.today { - border: 1px dashed #222; + border: 1px dashed #222; } .calendar_date_select td.disabled div { - color: #454545; + color: #454545; } /* this is a fun ie6 hack to get drop downs to stay behind the popup window. This should always be just underneath .calendar_date_select */ iframe.ie6_blocker { - position: absolute; - z-index: 999; + position: absolute; + z-index: 999; } .fieldWithErrors .calendar_date_select { - border: 2px solid #FF0000; + border: 2px solid #FF0000; } /*********************************************** @@ -713,41 +713,41 @@ Legacy Forms <label>, etc... ***********************************************/ .label { - font-weight: bold; - text-align: right; - white-space: nowrap; - width: 1%; - margin:0 4px 0 0px; - vertical-align:middle; + font-weight: bold; + text-align: right; + white-space: nowrap; + width: 1%; + margin:0 4px 0 0px; + vertical-align:middle; } .basic-form { - clear:both; - display:block; - margin:5px 0 5px 0; - width:100%; + clear:both; + display:block; + margin:5px 0 5px 0; + width:100%; } .required,input.required { - background-color: #eeeeee; + background-color: #eeeeee; } .fieldgroup-title-bar { - font-size: 1em; - font-weight: bold; - padding: 0.1em 0.5em 0.2em 0.5em; + font-size: 1em; + font-weight: bold; + padding: 0.1em 0.5em 0.2em 0.5em; } .fieldgroup-title-bar ul .collapsed { - background: url(/images/expand.gif) no-repeat left center; - min-height: 1.1em; - min-width: 1.1em; + background: url(/images/expand.gif) no-repeat left center; + min-height: 1.1em; + min-width: 1.1em; } .fieldgroup-title-bar ul .expanded { - background: url(/images/collapse.gif) no-repeat left center; - min-height: 1.1em; - min-width: 1.1em; + background: url(/images/collapse.gif) no-repeat left center; + min-height: 1.1em; + min-width: 1.1em; } .fieldgroup-title-bar a { @@ -760,83 +760,83 @@ padding-left: 10px; Portals ***********************************************/ .portlet-config { - background-color: #D4D0C8; - border: 2px solid #D4D0C8; - margin-bottom: 5px; + background-color: #D4D0C8; + border: 2px solid #D4D0C8; + margin-bottom: 5px; } .portlet-config-title-bar .title { - color: #555555; - font-size: 1.2em; - float: left; + color: #555555; + font-size: 1.2em; + float: left; } .portlet-config-title-bar ul { - display: inline; /* IE Fix */ + display: inline; /* IE Fix */ } .portlet-config-title-bar ul li { - float: right; - font-size: 1em; - font-weight: bold; - padding: 0.1em 0.5em 0.2em 0.5em; + float: right; + font-size: 1em; + font-weight: bold; + padding: 0.1em 0.5em 0.2em 0.5em; } .portlet-config-title-bar ul li.move-up { - background: url(/images/arrow-single-up-green.png) no-repeat center center; + background: url(/images/arrow-single-up-green.png) no-repeat center center; } .portlet-config-title-bar ul li.move-down { - background: url(/images/arrow-single-down-green.png) no-repeat center center; + background: url(/images/arrow-single-down-green.png) no-repeat center center; } .portlet-config-title-bar ul li.move-left { - background: url(/images/arrow-single-left-green.png) no-repeat center center; + background: url(/images/arrow-single-left-green.png) no-repeat center center; } .portlet-config-title-bar ul li.move-right { - background: url(/images/arrow-single-right-green.png) no-repeat center center; + background: url(/images/arrow-single-right-green.png) no-repeat center center; } .portlet-config-title-bar ul li.move-top { - background: url(/images/arrow-end-up-green.png) no-repeat center center; + background: url(/images/arrow-end-up-green.png) no-repeat center center; } .portlet-config-title-bar ul li.move-bottom { - background: url(/images/arrow-end-down-green.png) no-repeat center center; + background: url(/images/arrow-end-down-green.png) no-repeat center center; } .portlet-config-title-bar ul li.remove { - background: url(/images/mini-trash.png) no-repeat center center; + background: url(/images/mini-trash.png) no-repeat center center; } .portlet-config-title-bar ul li.edit { - background: url(/images/mini-edit.png) no-repeat center center; + background: url(/images/mini-edit.png) no-repeat center center; } #manage-portal-toolbar { - background-color: #D4D0C8; - margin-bottom: 0.5em; + background-color: #D4D0C8; + margin-bottom: 0.5em; } #manage-portal-toolbar ul li { - float: left; - padding: 0.1em 0.5em 0.2em 0.5em; + float: left; + padding: 0.1em 0.5em 0.2em 0.5em; } #manage-portal-toolbar #config-on-off, #manage-portal-toolbar #manage-portal-page, #manage-portal-toolbar #add-column { - float: right; + float: right; } #manage-portal-toolbar #portal-page-name { - font-size: 1.5em; - font-weight: bold; + font-size: 1.5em; + font-weight: bold; } .manage-portal-column-toolbar #add-portlet, .manage-portal-column-toolbar #delete-column, .manage-portal-column-toolbar #column-width { - float: right; + float: right; } \ No newline at end of file Modified: ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/login.css URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/login.css?rev=924378&r1=924377&r2=924378&view=diff ============================================================================== --- ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/login.css (original) +++ ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/login.css Wed Mar 17 17:28:01 2010 @@ -72,27 +72,27 @@ table { General Styles ***********************************************/ body { - background: url(../images/page.png) top left repeat-x #f3f4f4; - color: #000; - font: .75em/1.5em Verdana, Arial, Helvetica, sans-serif; + background: url(../images/page.png) top left repeat-x #f3f4f4; + color: #000; + font: .75em/1.5em Verdana, Arial, Helvetica, sans-serif; } html>body {font-size: 12px;} img {display: inline-block; vertical-align: bottom;} a { - background:#E7EFF5; - text-decoration: none; - color:#699BC9; - height:18px; - display:block; - line-height:10px; - padding:5px 0 0px 0; - font-size:11px; + background:#E7EFF5; + text-decoration: none; + color:#699BC9; + height:18px; + display:block; + line-height:10px; + padding:5px 0 0px 0; + font-size:11px; } a:hover { - color: #486a8a; - text-decoration: none; + color: #486a8a; + text-decoration: none; } @@ -137,43 +137,43 @@ form.horizontal .field {padding-left: 15 form.horizontal .field label {display: inline; float: left; width: 140px; margin-left: -150px;} input[type="text"],input[type="password"] { - border: #ddd solid 2px; - font-size: 1.1em; - padding:2px 4px; - width:250px; + border: #ddd solid 2px; + font-size: 1.1em; + padding:2px 4px; + width:250px; } input[type="password"] { border: #ddd solid 2px; - font-size: 1.1em; - padding:2px 4px; - width:250px; - + font-size: 1.1em; + padding:2px 4px; + width:250px; + } input[type="submit"],input[type="button"],input[type="reset"] { - background-color: #ffffff; - border: #ddd solid 2px; + background-color: #ffffff; + border: #ddd solid 2px; color: #444; - font-weight:bold; - line-height:1.8em; - margin:5px 5px 2px 5px; - padding:2px 4px; - text-transform:uppercase; + font-weight:bold; + line-height:1.8em; + margin:5px 5px 2px 5px; + padding:2px 4px; + text-transform:uppercase; } input[type="submit"]:hover { - color: #444; - cursor: pointer; - text-decoration: none; + color: #444; + cursor: pointer; + text-decoration: none; } .label { - font-weight:bold; - margin:0 0 0 0; - text-align:right; - white-space:nowrap; - width:40%; + font-weight:bold; + margin:0 0 0 0; + text-align:right; + white-space:nowrap; + width:40%; } @@ -188,12 +188,12 @@ html, body, #wrap {height: 100%;} body > #wrap {height: auto; min-height: 100%;} body { - text-align:center; + text-align:center; } #wrap { - margin: 0; + margin: 0; } #header { @@ -201,34 +201,34 @@ body { } #app-navigation{ - display:none; + display:none; } #column-container { - width:700px; - margin:0 auto; - padding:70px 0 0 0; - background:url(../images/login-logo.gif) center 5px no-repeat; + width:700px; + margin:0 auto; + padding:70px 0 0 0; + background:url(../images/login-logo.gif) center 5px no-repeat; } #content-main-section { - background:#fff; - border:5px solid #f1f1f1; - padding:0px; + background:#fff; + border:5px solid #f1f1f1; + padding:0px; } .screenlet-title-bar { - background:#094460; - color:#fff; - padding:10px 0 10px 0; - text-transform:uppercase; + background:#094460; + color:#fff; + padding:10px 0 10px 0; + text-transform:uppercase; } .screenlet-body { - text-align:center; - padding:2px; + text-align:center; + padding:2px; } #footer { @@ -240,10 +240,10 @@ Clear Fix ***********************************************/ .clearfix:after { content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; + display: block; + height: 0; + clear: both; + visibility: hidden; } .clearfix {display: inline-block;} @@ -253,9 +253,9 @@ html[xmlns] .clearfix { display: block; /*NOTE .clear deprecated, clear floats automatically using .clearfix instead of using extra div */ .clear { - clear: both; - height: 0; - visibility: hidden; + clear: both; + height: 0; + visibility: hidden; } /*********************************************** @@ -346,20 +346,20 @@ span #modal-close-btn{ } .DEBUG { - color: #808080; + color: #808080; } .WARN { - color: #0000ff; - font-weight: bold; + color: #0000ff; + font-weight: bold; } .INFO { - color: #008000; + color: #008000; } .ERROR { - border: 0.2em solid #ff0000; - color: #ff0000; - font-weight: bold; + border: 0.2em solid #ff0000; + color: #ff0000; + font-weight: bold; } |
Free forum by Nabble | Edit this page |