svn commit: r921139 - in /ofbiz/trunk: applications/order/webapp/ordermgr/order/orderitems.ftl themes/tomahawk/webapp/tomahawk/css/style.css

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

svn commit: r921139 - in /ofbiz/trunk: applications/order/webapp/ordermgr/order/orderitems.ftl themes/tomahawk/webapp/tomahawk/css/style.css

doogie-3
Author: doogie
Date: Tue Mar  9 21:39:42 2010
New Revision: 921139

URL: http://svn.apache.org/viewvc?rev=921139&view=rev
Log:
Add class around order item description, and increase the font-size in
tomahawk.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl
    ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl?rev=921139&r1=921138&r2=921139&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl Tue Mar  9 21:39:42 2010
@@ -50,7 +50,8 @@ under the License.
                 <#if productId?exists && productId == "shoppingcart.CommentLine">
                   <td colspan="7" valign="top" class="label"> &gt;&gt; ${orderItem.itemDescription}</td>
                 <#else>
-                  <td colspan="7" valign="top">
+                  <td colspan="7">
+                    <div class="order-item-description">
                       <#if productId?exists>
                         ${orderItem.productId?default("N/A")} - ${orderItem.itemDescription?if_exists}
                         <#if (product.salesDiscontinuationDate)?exists && Static["org.ofbiz.base.util.UtilDateTime"].nowTimestamp().after(product.salesDiscontinuationDate)>
@@ -61,6 +62,7 @@ under the License.
                       <#else>
                         ${orderItem.itemDescription?if_exists}
                       </#if>
+                    </div>
                       <div style="float:right;">
                         <a href="/catalog/control/EditProduct?productId=${productId}" class="buttontext" target="_blank">${uiLabelMap.ProductCatalog}</a>
                         <a href="/ecommerce/control/product?product_id=${productId}" class="buttontext" target="_blank">${uiLabelMap.OrderEcommerce}</a>

Modified: ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css?rev=921139&r1=921138&r2=921139&view=diff
==============================================================================
--- ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css (original)
+++ ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css Tue Mar  9 21:39:42 2010
@@ -2462,3 +2462,7 @@ background-color:#D4D0C8;
 .basic-table.order-items tr td {
  vertical-align:top;
 }
+.order-items .order-item-description {
+ display:inline;
+ font-size:145%;
+}