Ewall_Cartsummary - Version 1.0.1

Version Notes

The Cart Summary module is an extension that provides a great ease-of-use enhancement to customers’ shopping experience—it gives them a convenient option to view the products in the checkout page they’ve selected so far in store.

Download this release

Release Info

Developer Ewallsolutions
Extension Ewall_Cartsummary
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

app/code/local/Ewall/Cartsummary/Block/Summary.php CHANGED
@@ -7,7 +7,6 @@ class Ewall_Cartsummary_Block_Summary extends Mage_Core_Block_Template
7
  $grandTotal=Mage::getSingleton('checkout/cart')->getQuote();
8
  return $grandTotal;
9
  }
10
-
11
  public function getShippingArray(){
12
  if($customer = Mage::getSingleton('customer/session')->isLoggedIn()) {
13
  $val = $this->getQuote();
7
  $grandTotal=Mage::getSingleton('checkout/cart')->getQuote();
8
  return $grandTotal;
9
  }
 
10
  public function getShippingArray(){
11
  if($customer = Mage::getSingleton('customer/session')->isLoggedIn()) {
12
  $val = $this->getQuote();
app/code/local/Ewall/Cartsummary/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class Ewall_Cartsummary_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ }
5
+
app/code/local/Ewall/Cartsummary/controllers/IndexController.php ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Ewall_Cartsummary_IndexController extends Mage_Core_Controller_Front_Action{
3
+ protected function _getSession()
4
+ {
5
+ return Mage::getSingleton('checkout/session');
6
+ }
7
+ public function indexAction() {
8
+ try {
9
+ $cartData = $this->getRequest()->getParam('cart');
10
+ if (is_array($cartData)) {
11
+ $filter = new Zend_Filter_LocalizedToNormalized(
12
+ array('locale' => Mage::app()->getLocale()->getLocaleCode())
13
+ );
14
+ foreach ($cartData as $index => $data) {
15
+ if (isset($data['qty'])) {
16
+ $cartData[$index]['qty'] = $filter->filter(trim($data['qty']));
17
+ }
18
+ }
19
+ $cart = Mage::getSingleton('checkout/cart');
20
+ if (! $cart->getCustomerSession()->getCustomer()->getId() && $cart->getQuote()->getCustomerId()) {
21
+ $cart->getQuote()->setCustomerId(null);
22
+ }
23
+
24
+ $cartData = $cart->suggestItemsQty($cartData);
25
+ $cart->updateItems($cartData)
26
+ ->save();
27
+ }
28
+ $this->_getSession()->setCartWasUpdated(true);
29
+ $message = $this->__('Products were updated on your shopping cart');
30
+ $this->_getSession()->addSuccess($message);
31
+ } catch (Mage_Core_Exception $e) {
32
+ $this->_getSession()->addError(Mage::helper('core')->escapeHtml($e->getMessage()));
33
+ } catch (Exception $e) {
34
+ $this->_getSession()->addException($e, $this->__('Cannot update shopping cart'));
35
+ Mage::logException($e);
36
+ }
37
+ $this->_redirect('checkout/onepage');
38
+ }
39
+ public function deleteAction()
40
+ {
41
+ $id = (int) Mage::app()->getRequest()->getParam('id');
42
+ if ($id) {
43
+ try {
44
+ $cart = Mage::getSingleton('checkout/cart');
45
+ $message = $this->__('Items deleted on your shopping cart');
46
+ $this->_getSession()->addSuccess($message);
47
+ $cart->removeItem($id)->save();
48
+ } catch (Exception $e) {
49
+ $this->_getSession()->addError($this->__('Cannot remove the item'));
50
+ Mage::logException($e);
51
+ }
52
+ }
53
+ $this->_redirect('checkout/onepage');
54
+ }
55
+ }
app/code/local/Ewall/Cartsummary/etc/adminhtml.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <cartsummary translate="title" module="cartsummary">
12
+ <title>Cart Summary</title>
13
+ <sort_order>0</sort_order>
14
+ </cartsummary>
15
+ </children>
16
+ </config>
17
+ </children>
18
+ </system>
19
+ </children>
20
+ </admin>
21
+ </resources>
22
+ </acl>
23
+ </config>
app/code/local/Ewall/Cartsummary/etc/config.xml CHANGED
@@ -1,7 +1,7 @@
1
  <config>
2
  <modules>
3
  <Ewall_Cartsummary>
4
- <version>0.1.0</version>
5
  </Ewall_Cartsummary>
6
  </modules>
7
  <frontend>
@@ -10,7 +10,7 @@
10
  <use>standard</use>
11
  <args>
12
  <module>Ewall_Cartsummary</module>
13
- <frontName>menu</frontName>
14
  </args>
15
  </cartsummary>
16
  </routers>
@@ -24,9 +24,14 @@
24
  </frontend>
25
  <global>
26
  <blocks>
27
- <cartsummary>
28
- <class>Ewall_Cartsummary_Block</class>
29
- </cartsummary>
30
  </blocks>
 
 
 
 
 
31
  </global>
32
  </config>
1
  <config>
2
  <modules>
3
  <Ewall_Cartsummary>
4
+ <version>1.0.1</version>
5
  </Ewall_Cartsummary>
6
  </modules>
7
  <frontend>
10
  <use>standard</use>
11
  <args>
12
  <module>Ewall_Cartsummary</module>
13
+ <frontName>cartsummary</frontName>
14
  </args>
15
  </cartsummary>
16
  </routers>
24
  </frontend>
25
  <global>
26
  <blocks>
27
+ <cartsummary>
28
+ <class>Ewall_Cartsummary_Block</class>
29
+ </cartsummary>
30
  </blocks>
31
+ <helpers>
32
+ <cartsummary>
33
+ <class>Ewall_Cartsummary_Helper</class>
34
+ </cartsummary>
35
+ </helpers>
36
  </global>
37
  </config>
app/code/local/Ewall/Cartsummary/etc/system.xml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <ewall translate="label" module="cartsummary">
5
+ <label>Ewall</label>
6
+ <sort_order>10</sort_order>
7
+ </ewall>
8
+ </tabs>
9
+ <sections>
10
+ <cartsummary translate="label" module="cartsummary">
11
+ <label>Cart Summary</label>
12
+ <tab>ewall</tab>
13
+ <frontend_type>text</frontend_type>
14
+ <sort_order>0</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
+ <groups>
19
+ <configuration translate="label">
20
+ <label>Configuration</label>
21
+ <frontend_type>text</frontend_type>
22
+ <sort_order>0</sort_order>
23
+ <show_in_default>1</show_in_default>
24
+ <show_in_website>1</show_in_website>
25
+ <show_in_store>1</show_in_store>
26
+ <fields>
27
+ <enable translate="label">
28
+ <label>Enable</label>
29
+ <frontend_type>select</frontend_type>
30
+ <source_model>adminhtml/system_config_source_yesno</source_model>
31
+ <sort_order>0</sort_order>
32
+ <show_in_default>1</show_in_default>
33
+ <show_in_website>1</show_in_website>
34
+ <show_in_store>1</show_in_store>
35
+ <comment>Enable this module</comment>
36
+ </enable>
37
+ </fields>
38
+ </configuration>
39
+ </groups>
40
+ </cartsummary>
41
+ </sections>
42
+ </config>
app/design/frontend/default/default/layout/cart_summary.xml CHANGED
@@ -4,7 +4,7 @@
4
  <checkout_onepage_index translate="label">
5
  <label>One Page Checkout</label>
6
  <block type="checkout/html_head" name="head" as="head">
7
- <action method="addCss"><stylesheet>css/summary.css</stylesheet></action>
8
  </block>
9
  <remove name="left"/>
10
 
4
  <checkout_onepage_index translate="label">
5
  <label>One Page Checkout</label>
6
  <block type="checkout/html_head" name="head" as="head">
7
+ <action method="addCss"><stylesheet>css/cart_summary.css</stylesheet></action>
8
  </block>
9
  <remove name="left"/>
10
 
app/design/frontend/default/default/template/checkout/cart_summary.phtml CHANGED
@@ -1,39 +1,66 @@
1
  <?php
 
2
  $val = $this->getShippingArray();
3
  $items = $val->collectTotals();
4
  $currency = $this->getSym();
5
  $shippingMethod = $val->getShippingAddress();
6
  ?>
7
- <div id="cart-summary">
8
- <div class="block-title">
9
- <strong>
10
- <span><?php echo $this->__('Cart Summary') ?></span>
11
- </strong>
12
- </div>
13
- <div class="cart-summary-details ">
14
- <div class="cart-item">
15
- <label for="cartitem"><?php echo $this->__('Cart in Item') ?></label>
16
- <span><?php echo $val->getItemsSummaryQty(); ?></span>
17
  </div>
18
- <div class="sub-total">
19
- <label for="subtotal"><?php echo $this->__('Subtotal') ?></label>
20
- <span><?php echo $this->helper('core')->formatPrice($items->getSubtotal()) ?></span>
21
- </div>
22
- <?php if($shippingMethod->getShippingAmount()):?>
23
- <div class="flate-rate">
24
- <label for="shiping-name"><?php echo $shippingMethod->getShippingDescription() ?></label>
25
- <span><?php echo $this->helper('core')->formatPrice($shippingMethod->getShippingAmount()) ?></span>
 
 
 
 
 
 
 
 
 
 
 
26
  </div>
27
- <?php endif;?>
28
- <?php if($shippingMethod->getTaxAmount()):?>
29
- <div class="tax-ammount">
30
- <label for="tax-name"><?php echo $this->__('Tax'); ?></label>
31
- <span><?php echo $this->helper('core')->formatPrice($shippingMethod->getTaxAmount()) ?></span>
32
  </div>
33
- <?php endif;?>
34
- <div class="grand-total">
35
- <label for="grandTotal"><?php echo $this->__('GrandTotal') ?></label>
36
- <span><?php echo $this->helper('core')->formatPrice($items->getGrandTotal()) ?></span>
37
- </div>
38
- </div>
39
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
+ $cartsumarry_enable = Mage::getStoreConfig('cartsummary/configuration/enable');
3
  $val = $this->getShippingArray();
4
  $items = $val->collectTotals();
5
  $currency = $this->getSym();
6
  $shippingMethod = $val->getShippingAddress();
7
  ?>
8
+ <?php if($cartsumarry_enable==1): ?>
9
+ <form action="<?php echo $this->getUrl('cartsummary/index') ?>" method="post">
10
+ <div id="cart-summary">
11
+ <div class="block-title">
12
+ <strong>
13
+ <span><?php echo $this->__('Cart Summary') ?></span>
14
+ </strong>
 
 
 
15
  </div>
16
+ <div class="cart-summary-details ">
17
+ <div class="cart-item-name">
18
+ <label for="cart_item_name" class="cart_item_info"><?php echo $this->__('Product Name') ?></label>
19
+ <label for="cart_item_Qty" class="cart_item_qty"><?php echo $this->__('Qty') ?></label>
20
+ <label class="cart_item_name"><?php echo $this->__('Price') ?></label>
21
+ <div class="left">
22
+ <?php foreach ($val->getAllVisibleItems() as $item): ?>
23
+ <div class="cartsummary_info">
24
+ <span class="Item_Name"><?php echo $item->getProduct()->getName(); ?></span>
25
+ <span class="Item_Qty">
26
+ <input type="text" name="cart[<?php echo $item->getId(); ?>][qty]" id="qty" maxlength="12" value="<?php echo $item->getQty(); ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
27
+ </span>
28
+ <span class="Item_Price"><?php echo $this->helper('core')->formatPrice($item->getPrice()) ?></span>
29
+ <a href="<?php echo $this->getUrl('cartsummary/index/delete')?><?php echo 'id/'.$item->getId(); ?>" title="<?php echo $this->__('Remove item')?>" class="btn-remove btn-remove2">
30
+ <?php echo $this->__('Remove item')?>
31
+ </a>
32
+ </div>
33
+ <?php endforeach; ?>
34
+ </div>
35
  </div>
36
+ <div class="sub-total" style="clear:both;">
37
+ <label for="subtotal"><?php echo $this->__('Subtotal') ?></label>
38
+ <span><?php echo $this->helper('core')->formatPrice($items->getSubtotal()) ?></span>
 
 
39
  </div>
40
+ <?php if($shippingMethod->getShippingAmount()):?>
41
+ <div class="flate-rate">
42
+ <label for="shiping-name"><?php echo $shippingMethod->getShippingDescription() ?></label>
43
+ <span><?php echo $this->helper('core')->formatPrice($shippingMethod->getShippingAmount()) ?></span>
44
+ </div>
45
+ <?php endif;?>
46
+ <?php if($shippingMethod->getTaxAmount()):?>
47
+ <div class="tax-ammount">
48
+ <label for="tax-name"><?php echo $this->__('Tax'); ?></label>
49
+ <span><?php echo $this->helper('core')->formatPrice($shippingMethod->getTaxAmount()) ?></span>
50
+ </div>
51
+ <?php endif;?>
52
+ <div class="grand-total">
53
+ <label for="grandTotal"><?php echo $this->__('Grand Total') ?></label>
54
+ <span><?php echo $this->helper('core')->formatPrice($items->getGrandTotal()) ?></span>
55
+ </div>
56
+ <div class="cartsummary_addtocart">
57
+ <button type="submit" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($product) ?>')">
58
+ <span>
59
+ <span><?php echo $this->__('Update Cart') ?></span>
60
+ </span>
61
+ </button>
62
+ </div>
63
+ </div>
64
+ </div>
65
+ </form>
66
+ <?php endif;?>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ewall_Cartsummary</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Provide your customers with a quick and convenient way view the cart summary in checkout page.</summary>
10
- <description>Provide your customers with a quick and convenient way view the cart summary in checkout page.</description>
11
- <notes>Provide your customers with a quick and convenient way view the cart summary in checkout page.</notes>
12
  <authors><author><name>Ewallsolutions</name><user>ewallsolutions</user><email>support@ewallsolutions.com</email></author></authors>
13
- <date>2013-02-27</date>
14
- <time>10:53:49</time>
15
- <contents><target name="magelocal"><dir name="Ewall"><dir name="Cartsummary"><dir name="Block"><file name="Summary.php" hash="7b0da489c16617a505641cc34da6f5fa"/></dir><dir name="etc"><file name="config.xml" hash="a3c56d9cb8770100d6d9ce0b280cb157"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ewall_Cartsummary.xml" hash="64585116cfa23e0cdd915a39ff110a56"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="cart_summary.xml" hash="c4383e6cb1ae94fe334d98c79a759583"/></dir><dir name="template"><dir name="checkout"><file name="cart_summary.phtml" hash="5052b7663431a7b2494f28646c6044c2"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="summary.css" hash="9216261ae385b3c0cd0b4c973b84f4aa"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.13</min><max>5.3.15</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ewall_Cartsummary</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Provide your customers with a quick and convenient way to view the cart summary in checkout page.</summary>
10
+ <description>The Cart Summary module is an extension that provides a great ease-of-use enhancement to customers&#x2019; shopping experience&#x2014;it gives them a convenient option to view the products in the checkout page they&#x2019;ve selected so far in store.</description>
11
+ <notes>The Cart Summary module is an extension that provides a great ease-of-use enhancement to customers&#x2019; shopping experience&#x2014;it gives them a convenient option to view the products in the checkout page they&#x2019;ve selected so far in store.</notes>
12
  <authors><author><name>Ewallsolutions</name><user>ewallsolutions</user><email>support@ewallsolutions.com</email></author></authors>
13
+ <date>2014-02-28</date>
14
+ <time>12:07:28</time>
15
+ <contents><target name="magelocal"><dir name="Ewall"><dir name="Cartsummary"><dir name="Block"><file name="Summary.php" hash="7ba262d00e93a12f270b28d79b75128a"/></dir><dir name="Helper"><file name="Data.php" hash="28af6b55d3650cc499d659d5f2f83dc9"/></dir><dir name="controllers"><file name="IndexController.php" hash="bb2144c818bc2ed902f894cf05b10684"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0a2e3e73ff29427d6790274234747e36"/><file name="config.xml" hash="b9ddfb1438c71efb67aeaef24f18f2f2"/><file name="system.xml" hash="7d967c006610d256c1a90e40380db7c1"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ewall_Cartsummary.xml" hash="64585116cfa23e0cdd915a39ff110a56"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="cart_summary.xml" hash="4bb140784e178192046884002330b4a3"/></dir><dir name="template"><dir name="checkout"><file name="cart_summary.phtml" hash="4bf7b93c73f503dd342e9120d800f48b"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="cart_summary.css" hash="59afc12da331777f5605a4c5fba4e5a8"/></dir><dir name="images"><file name="cart_summary_remove.png" hash="dc3524fa3d93bd7af60b5a0a7020c319"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
skin/frontend/default/default/css/cart_summary.css ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #cart-summary .block-title {
2
+ background: none repeat scroll 0 0 #F9F3E3;
3
+ color: #5E8AB4;
4
+ margin: 0;
5
+ border:1px solid #A3AEB3;
6
+ border-bottom:none;
7
+ padding: 2px 8px;
8
+ }
9
+ #cart-summary .block-title strong {
10
+ color: #F18200;
11
+ font-size: 13px;
12
+ text-transform: uppercase;
13
+ }
14
+
15
+ #cart-summary .cart-summary-details {
16
+ background: none repeat scroll 0 0 #FBFAF6;
17
+ border: 1px solid #BBAFA0;
18
+ display: block;
19
+ margin: 0 0 6px;
20
+ min-height: 85px;
21
+ padding: 5px 5px 6px;
22
+ }
23
+ #cart-summary .cart-summary-details .sub-total ,
24
+ #cart-summary .cart-summary-details .flate-rate ,
25
+ #cart-summary .cart-summary-details .tax-ammount ,
26
+ #cart-summary .cart-summary-details .grand-total {
27
+ clear:both;
28
+ }
29
+ #cart-summary .cart-summary-details label {
30
+ float:left;
31
+ }
32
+ #cart-summary .cart-summary-details span {
33
+ float:right;
34
+ }
35
+ #cart-summary .cart-summary-details .grand-total,
36
+ #cart-summary .cart-summary-details .cart-item-name label {
37
+ font-weight:bold;
38
+ }
39
+ #cart-summary .cart-summary-details .cart-item-name label,
40
+ #cart-summary .cart-summary-details .cart-item-name span {
41
+ float:left;
42
+ }
43
+ #cart-summary .cart-summary-details .cart-item-name .cart_item_name {
44
+ float:left;
45
+ }
46
+ #cart-summary .cart-summary-details .cart-item-name .cart_item_info {
47
+ float:left;
48
+ width:58%;
49
+ }
50
+ #cart-summary .cart-summary-details .cart-item-name .cart_item_qty {
51
+ float:left;
52
+ }
53
+ #cart-summary .cart-summary-details .cart-item-name .cart_item_name,
54
+ #cart-summary .cart-summary-details .cart-item-name .Item_Price,
55
+ #cart-summary .cart-summary-details .cart-item-name .Item_Price span {
56
+ float:right;
57
+ }
58
+ #cart-summary .cart-summary-details .cart-item-name .Item_Price {
59
+
60
+ }
61
+ #cart-summary .cart-summary-details .cart-item-name .left {
62
+ margin-bottom: 4px;
63
+ padding-bottom: 0;
64
+ width: 100%;
65
+ }
66
+ .cartsummary_info {
67
+ border-bottom: 1px solid #BBAFA0;
68
+ display: block;
69
+ float: left;
70
+ margin-bottom: 5px;
71
+ margin-top: 5px;
72
+ padding-bottom: 5px;
73
+ width: 100%;
74
+ }
75
+ #cart-summary .cart-summary-details .cart-item-name .Item_Name {
76
+ width:55%;
77
+ }
78
+ #cart-summary .cart-summary-details .cart-item-name .Item_Qty {
79
+ width:16.5%;
80
+ text-align:center;
81
+ }
82
+ #cart-summary .cart-summary-details .cart-item-name .Item_Qty #qty{
83
+ width:2em !important;
84
+ text-align:center;
85
+ }
86
+ #cart-summary .btn-remove2 {
87
+ background: url("../images/cart_summary_remove.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
88
+ display: block;
89
+ float: right;
90
+ font-size: 0;
91
+ height: 16px;
92
+ line-height: 0;
93
+ overflow: hidden;
94
+ text-indent: -999em;
95
+ width: 16px;
96
+ }
97
+ .cartsummary_addtocart {
98
+ padding-top:5px;
99
+ clear:both;
100
+ text-align:right;
101
+ }
skin/frontend/default/default/css/summary.css DELETED
@@ -1,37 +0,0 @@
1
- #cart-summary .block-title {
2
- background: none repeat scroll 0 0 #F9F3E3;
3
- color: #5E8AB4;
4
- margin: 0;
5
- border:1px solid #5E8AB4;
6
- border-bottom:none;
7
- padding: 2px 8px;
8
- }
9
- #cart-summary .block-title strong {
10
- color: #F18200;
11
- font-size: 13px;
12
- text-transform: uppercase;
13
- }
14
-
15
- #cart-summary .cart-summary-details {
16
- background: none repeat scroll 0 0 #FBFAF6;
17
- border: 1px solid #BBAFA0;
18
- display: block;
19
- margin: 0 0 6px;
20
- min-height: 85px;
21
- padding: 5px 13px 13px;
22
- }
23
- #cart-summary .cart-summary-details .sub-total ,
24
- #cart-summary .cart-summary-details .flate-rate ,
25
- #cart-summary .cart-summary-details .tax-ammount ,
26
- #cart-summary .cart-summary-details .grand-total {
27
- clear:both;
28
- }
29
- #cart-summary .cart-summary-details label {
30
- float:left;
31
- }
32
- #cart-summary .cart-summary-details span {
33
- float:right;
34
- }
35
- #cart-summary .cart-summary-details .grand-total {
36
- font-weight:bold;
37
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/default/images/cart_summary_remove.png ADDED
Binary file