Version Notes
Slight Changes Made:
--Easy Ajax Modal Dialog box redesigned to be the same across all Magento Sites.
--Major CSS editing done on plugin, ajax-cart.css
Download this release
Release Info
Developer | joel tan |
Extension | Musho_Flipdefine |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- app/code/community/Musho/Flipdefine/controllers/IndexController.php +1 -1
- app/design/frontend/base/default/layout/easy_ajax.xml +14 -1
- app/design/frontend/base/default/template/flipdefine/afficher.phtml +28 -28
- package.xml +6 -10
- skin/frontend/base/default/css/ajax_cart.css +175 -22
- skin/frontend/base/default/images/add_to_shopping_bag.gif +0 -0
app/code/community/Musho/Flipdefine/controllers/IndexController.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php
|
2 |
$this->_forward('noRoute');
|
|
|
3 |
$this->_forward('noRoute');
|
|
|
1 |
$this->_forward('noRoute');
|
2 |
+
<?php
|
3 |
$this->_forward('noRoute');
|
app/design/frontend/base/default/layout/easy_ajax.xml
CHANGED
@@ -19,7 +19,20 @@
|
|
19 |
<layout version="0.1.0">
|
20 |
<default>
|
21 |
<reference name="head">
|
22 |
-
<action method="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</reference>
|
|
|
24 |
</default>
|
25 |
</layout>
|
19 |
<layout version="0.1.0">
|
20 |
<default>
|
21 |
<reference name="head">
|
22 |
+
<action method="addCss">
|
23 |
+
<style>css/jquery.jqzoom.css</style>
|
24 |
+
</action>
|
25 |
+
<action method="addJs">
|
26 |
+
<name>easy_ajax.js</name>
|
27 |
+
</action>
|
28 |
+
<action method="addJs">
|
29 |
+
<script>js/jquery-2.0.3.js</script>
|
30 |
+
</action>
|
31 |
+
<action method="addJs">
|
32 |
+
<script>js/jquery.jqzoom-core.js</script>
|
33 |
+
</action>
|
34 |
+
|
35 |
</reference>
|
36 |
+
|
37 |
</default>
|
38 |
</layout>
|
app/design/frontend/base/default/template/flipdefine/afficher.phtml
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
<?php
|
2 |
$_product = $this->getProduct();
|
3 |
if(!$_product->getId()){
|
@@ -7,11 +9,16 @@
|
|
7 |
$_helper = $this->helper('catalog/output');
|
8 |
|
9 |
?>
|
|
|
|
|
|
|
|
|
10 |
|
11 |
<form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
|
12 |
|
13 |
-
<div class="psz-imagesWrapper singleImage"
|
14 |
-
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
|
|
15 |
<div class="product-image product-image-zoom">
|
16 |
<?php
|
17 |
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
|
@@ -24,10 +31,7 @@
|
|
24 |
|
25 |
|
26 |
<div class="psz-productInfo" style="display:inline-block;">
|
27 |
-
<?php // Get the product name here?>
|
28 |
-
|
29 |
-
<h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
|
30 |
-
|
31 |
|
32 |
<fieldset class="no-display">
|
33 |
<input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
|
@@ -35,42 +39,37 @@
|
|
35 |
</fieldset>
|
36 |
|
37 |
<?php //Product Add to Cart button here?>
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
39 |
<?php if($_product->isSaleable()): ?>
|
40 |
<div class="add-to-cart">
|
41 |
<?php $buttonTitle = $this->__('Add to Cart'); ?>
|
42 |
-
|
43 |
-
<
|
44 |
-
|
45 |
-
|
46 |
|
47 |
</div>
|
48 |
<?php endif; ?>
|
49 |
|
50 |
<?php //Product Description here?>
|
51 |
<div>
|
52 |
-
<?php if ($_product->getPrice()):?>
|
53 |
-
<h4><?php echo $this->__('Price') ?></h4>
|
54 |
-
<div class="Text-2"><?php echo $_helper->productAttribute($_product, nl2br($_product->getPrice()), 'price') ?></div>
|
55 |
-
<?php endif;?>
|
56 |
-
|
57 |
-
<?php if ($_product->getSpecialPrice()):?>
|
58 |
-
<h4><?php echo $this->__('Special Price') ?></h4>
|
59 |
-
<div class="Text-2"><?php echo $_helper->productAttribute($_product, nl2br($_product->getPrice()), 'special_price') ?></div>
|
60 |
-
<?php endif;?>
|
61 |
-
|
62 |
<?php if ($_product->getShortDescription()):?>
|
63 |
<h4><?php echo $this->__('Quick Overview') ?></h4>
|
64 |
-
<div class="
|
65 |
<?php endif;?>
|
66 |
|
67 |
<?php if ($_product->getDescription()):?>
|
68 |
<h4><?php echo $this->__('Detail Description') ?></h4>
|
69 |
-
<div class="
|
70 |
<?php endif;?>
|
71 |
|
72 |
<?php if ($_product->getProductUrl()):?>
|
73 |
-
<span
|
74 |
<?php endif;?>
|
75 |
|
76 |
|
@@ -86,10 +85,9 @@
|
|
86 |
</form>
|
87 |
<div style="clear:both"></div>
|
88 |
|
89 |
-
|
90 |
|
91 |
-
|
92 |
-
</div>
|
93 |
|
94 |
|
95 |
<div id="ajax-cart-modal" class="ajax-cart-modal" style="display: none;">
|
@@ -120,7 +118,10 @@
|
|
120 |
<div class="loader"></div>
|
121 |
</div>
|
122 |
|
|
|
123 |
|
|
|
|
|
124 |
|
125 |
<script type="text/javascript">
|
126 |
//<![CDATA[
|
@@ -173,5 +174,4 @@
|
|
173 |
}.bind(productAddToCartForm);
|
174 |
//]]>
|
175 |
</script>
|
176 |
-
|
177 |
|
1 |
+
<div id="plugin">
|
2 |
+
|
3 |
<?php
|
4 |
$_product = $this->getProduct();
|
5 |
if(!$_product->getId()){
|
9 |
$_helper = $this->helper('catalog/output');
|
10 |
|
11 |
?>
|
12 |
+
<div id="pluginHeader">
|
13 |
+
<h1 class="productName"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
|
14 |
+
<h1 class="storeName"><?php echo Mage::app()->getStore()->getName(); ?> </h1>
|
15 |
+
</div>
|
16 |
|
17 |
<form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
|
18 |
|
19 |
+
<div class="psz-imagesWrapper singleImage">
|
20 |
+
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
21 |
+
|
22 |
<div class="product-image product-image-zoom">
|
23 |
<?php
|
24 |
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
|
31 |
|
32 |
|
33 |
<div class="psz-productInfo" style="display:inline-block;">
|
34 |
+
<?php // Get the product name here?>
|
|
|
|
|
|
|
35 |
|
36 |
<fieldset class="no-display">
|
37 |
<input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
|
39 |
</fieldset>
|
40 |
|
41 |
<?php //Product Add to Cart button here?>
|
42 |
+
<?php if ($_product->getPrice()):?>
|
43 |
+
<div class="pluginPrice">
|
44 |
+
<?php echo Mage::helper('core')->currency($_product->getPrice()); ?>
|
45 |
+
</div>
|
46 |
+
<?php endif;?>
|
47 |
+
|
48 |
<?php if($_product->isSaleable()): ?>
|
49 |
<div class="add-to-cart">
|
50 |
<?php $buttonTitle = $this->__('Add to Cart'); ?>
|
51 |
+
|
52 |
+
<button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="productAddToCartForm.submit(this)">
|
53 |
+
<?php echo $buttonTitle ?>
|
54 |
+
</button>
|
55 |
|
56 |
</div>
|
57 |
<?php endif; ?>
|
58 |
|
59 |
<?php //Product Description here?>
|
60 |
<div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
<?php if ($_product->getShortDescription()):?>
|
62 |
<h4><?php echo $this->__('Quick Overview') ?></h4>
|
63 |
+
<div class="pluginInfo"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
|
64 |
<?php endif;?>
|
65 |
|
66 |
<?php if ($_product->getDescription()):?>
|
67 |
<h4><?php echo $this->__('Detail Description') ?></h4>
|
68 |
+
<div class="pluginInfo"><?php echo $_helper->productAttribute($_product, nl2br($_product->getDescription()), 'description') ?></div>
|
69 |
<?php endif;?>
|
70 |
|
71 |
<?php if ($_product->getProductUrl()):?>
|
72 |
+
<span><a class="pluginInfo" target="_blank" href="<?php echo $_helper->productAttribute($_product, nl2br($_product->getProductUrl()), 'product_url')?>">View Full Product Details</a></span>
|
73 |
<?php endif;?>
|
74 |
|
75 |
|
85 |
</form>
|
86 |
<div style="clear:both"></div>
|
87 |
|
88 |
+
<!--div class="block-cart" style="clear:both">
|
89 |
|
90 |
+
</div-->
|
|
|
91 |
|
92 |
|
93 |
<div id="ajax-cart-modal" class="ajax-cart-modal" style="display: none;">
|
118 |
<div class="loader"></div>
|
119 |
</div>
|
120 |
|
121 |
+
<div id="recommend">
|
122 |
|
123 |
+
</div>
|
124 |
+
</div>
|
125 |
|
126 |
<script type="text/javascript">
|
127 |
//<![CDATA[
|
174 |
}.bind(productAddToCartForm);
|
175 |
//]]>
|
176 |
</script>
|
|
|
177 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Musho_Flipdefine</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://phaze.com.sg/license_flipdefine">AFPL</license>
|
7 |
<channel>community</channel>
|
@@ -10,16 +10,12 @@
|
|
10 |
<description>This extension enables clients integrate Flipdefine flipbook with Magento Webbsites. This extension retrieves product information from Magento site and makes the information available for Hotspots creation on Flipdefine dashboard. Using this extension makes clients link product to digital catalog on Flipdefine.</description>
|
11 |
<notes>Slight Changes Made:
|
12 |

|
13 |
-
|
14 |
-
|
15 |
-
Quick Bug Fixes
|
16 |
-

|
17 |
-
--Update Layout Handle not showing on frontend fixed
|
18 |
-
--Overriding based layout with local.xml file fixed</notes>
|
19 |
<authors><author><name>joel tan</name><user>cheetod</user><email>joel.tcy@gmail.com</email></author><author><name>opeyemi emmanuel</name><user>e_opeyemi</user><email>opeyemi.emmanuel@yahoo.com</email></author></authors>
|
20 |
-
<date>2013-
|
21 |
-
<time>
|
22 |
-
<contents><target name="magecommunity"><dir name="Musho"><dir name="Flipdefine"><dir name="Block"><file name="Monblock.php" hash="3b4e8bd29389a87185bcc6d3fa1d07e0"/><dir name="Product"><file name="Abstract.php" hash="d6a9d5af1e308190b539cfb47ed17461"/><dir name="Compare"><file name="Abstract.php" hash="78269ca45e70312138222e66d47ce0c5"/><file name="List.php" hash="5d8a8f0aa187ed8fc4b78218b56cddf0"/><file name="Sidebar.php" hash="63d0b9ae33733b0e78d4ad9f10e0e4b0"/></dir><file name="Gallery.php" hash="35f102773273ed3ab0480c21ba3c279f"/><dir name="List"><file name="Crosssell.php" hash="3d36ca4bd92a7982df4700f3a27ace8d"/><file name="Promotion.php" hash="d74c6c08036f398145a791fb8ddeeb29"/><file name="Random.php" hash="0b3b943de3e83cad18e980c524e18c1c"/><file name="Related.php" hash="282c5a8b6616798f667519ad92e472d4"/><file name="Toolbar.php" hash="82db01e9475e7bbf5de00b04eb41f420"/><file name="Upsell.php" hash="c9762620b514587cc544568e1c7f360e"/></dir><file name="List.php" hash="8aab8ddfe96454f09ca10ecc717df2e1"/><file name="New.php" hash="cb124677e00266356f06b2eb260aeb44"/><dir name="Price"><file name="Template.php" hash="4f40d083dd3346932770a76dbe58f87b"/></dir><file name="Price.php" hash="9daedd2d6484d260e16b18a491494997"/><file name="Send.php" hash="42adcde368442b6c036595e7233d7aa2"/><dir name="View"><file name="Abstract.php" hash="bc0aae10b8b4a1cc828715d42ae00202"/><file name="Additional.php" hash="140cd06e88da8e281d2807b3cff07d81"/><file name="Attributes.php" hash="2908c3ee3e3553f4c8e2327d7d3276f6"/><file name="Description.php" hash="2295ea1c5a55e905467e5694279e37e6"/><file name="Media.php" hash="ab57a004791e287fa5f005e9ae8f4ab1"/><dir name="Options"><file name="Abstract.php" hash="8cfc7077188d68a5c6ed0e590c1b96c2"/><dir name="Type"><file name="Date.php" hash="d8d6f664fd350af6ef24339555137e89"/><file name="Default.php" hash="662faa975468e743d10ca0874d2806a2"/><file name="File.php" hash="e954fe2d3afca765c289e18fa6fbb399"/><file name="Select.php" hash="0c91bc6f8ff123f68cea46dc03548e0d"/><file name="Text.php" hash="c61f008cf7f940e27ca79284b9da0706"/></dir></dir><file name="Options.php" hash="f795bb89f7cb6b2d1a313fff63d80292"/><file name="Price.php" hash="e9ca3e84e2934faf2481e95118cd335e"/><file name="Tabs.php" hash="58ac53a9261140637b4c28736a32aa80"/><dir name="Type"><file name="Configurable.php" hash="598fa6accdda0f5e9d9ccc4cc702f768"/><file name="Grouped.php" hash="f5c26394a55341522d043c3e1b9217ae"/><file name="Simple.php" hash="c1b0fe08c3f3b8582201d2d829bcf51d"/><file name="Virtual.php" hash="e1f378e2265d6ec2181531449abb9065"/></dir></dir><file name="View.php" hash="98f3fa133094060bd899a0f436e6bf2f"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="7d9cc90487248a2ce8816c733febc2e5"/></dir><file name="Link.php" hash="a465566af5823d8d61973fd1511c429c"/><file name="New.php" hash="876fc482bd5c2dc5862fcd36a44fd35e"/></dir></dir><file name="Products.php" hash="8f5b8d254253ba6e5162d1b1b10102a1"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="6daeacb19aa009a6e246696a23d0be3d"/></dir><file name="IndexController.php" hash="
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Musho_Flipdefine</name>
|
4 |
+
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://phaze.com.sg/license_flipdefine">AFPL</license>
|
7 |
<channel>community</channel>
|
10 |
<description>This extension enables clients integrate Flipdefine flipbook with Magento Webbsites. This extension retrieves product information from Magento site and makes the information available for Hotspots creation on Flipdefine dashboard. Using this extension makes clients link product to digital catalog on Flipdefine.</description>
|
11 |
<notes>Slight Changes Made:
|
12 |

|
13 |
+
--Easy Ajax Modal Dialog box redesigned to be the same across all Magento Sites. 
|
14 |
+
--Major CSS editing done on plugin, ajax-cart.css</notes>
|
|
|
|
|
|
|
|
|
15 |
<authors><author><name>joel tan</name><user>cheetod</user><email>joel.tcy@gmail.com</email></author><author><name>opeyemi emmanuel</name><user>e_opeyemi</user><email>opeyemi.emmanuel@yahoo.com</email></author></authors>
|
16 |
+
<date>2013-11-12</date>
|
17 |
+
<time>19:45:41</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="Musho"><dir name="Flipdefine"><dir name="Block"><file name="Monblock.php" hash="3b4e8bd29389a87185bcc6d3fa1d07e0"/><dir name="Product"><file name="Abstract.php" hash="d6a9d5af1e308190b539cfb47ed17461"/><dir name="Compare"><file name="Abstract.php" hash="78269ca45e70312138222e66d47ce0c5"/><file name="List.php" hash="5d8a8f0aa187ed8fc4b78218b56cddf0"/><file name="Sidebar.php" hash="63d0b9ae33733b0e78d4ad9f10e0e4b0"/></dir><file name="Gallery.php" hash="35f102773273ed3ab0480c21ba3c279f"/><dir name="List"><file name="Crosssell.php" hash="3d36ca4bd92a7982df4700f3a27ace8d"/><file name="Promotion.php" hash="d74c6c08036f398145a791fb8ddeeb29"/><file name="Random.php" hash="0b3b943de3e83cad18e980c524e18c1c"/><file name="Related.php" hash="282c5a8b6616798f667519ad92e472d4"/><file name="Toolbar.php" hash="82db01e9475e7bbf5de00b04eb41f420"/><file name="Upsell.php" hash="c9762620b514587cc544568e1c7f360e"/></dir><file name="List.php" hash="8aab8ddfe96454f09ca10ecc717df2e1"/><file name="New.php" hash="cb124677e00266356f06b2eb260aeb44"/><dir name="Price"><file name="Template.php" hash="4f40d083dd3346932770a76dbe58f87b"/></dir><file name="Price.php" hash="9daedd2d6484d260e16b18a491494997"/><file name="Send.php" hash="42adcde368442b6c036595e7233d7aa2"/><dir name="View"><file name="Abstract.php" hash="bc0aae10b8b4a1cc828715d42ae00202"/><file name="Additional.php" hash="140cd06e88da8e281d2807b3cff07d81"/><file name="Attributes.php" hash="2908c3ee3e3553f4c8e2327d7d3276f6"/><file name="Description.php" hash="2295ea1c5a55e905467e5694279e37e6"/><file name="Media.php" hash="ab57a004791e287fa5f005e9ae8f4ab1"/><dir name="Options"><file name="Abstract.php" hash="8cfc7077188d68a5c6ed0e590c1b96c2"/><dir name="Type"><file name="Date.php" hash="d8d6f664fd350af6ef24339555137e89"/><file name="Default.php" hash="662faa975468e743d10ca0874d2806a2"/><file name="File.php" hash="e954fe2d3afca765c289e18fa6fbb399"/><file name="Select.php" hash="0c91bc6f8ff123f68cea46dc03548e0d"/><file name="Text.php" hash="c61f008cf7f940e27ca79284b9da0706"/></dir></dir><file name="Options.php" hash="f795bb89f7cb6b2d1a313fff63d80292"/><file name="Price.php" hash="e9ca3e84e2934faf2481e95118cd335e"/><file name="Tabs.php" hash="58ac53a9261140637b4c28736a32aa80"/><dir name="Type"><file name="Configurable.php" hash="598fa6accdda0f5e9d9ccc4cc702f768"/><file name="Grouped.php" hash="f5c26394a55341522d043c3e1b9217ae"/><file name="Simple.php" hash="c1b0fe08c3f3b8582201d2d829bcf51d"/><file name="Virtual.php" hash="e1f378e2265d6ec2181531449abb9065"/></dir></dir><file name="View.php" hash="98f3fa133094060bd899a0f436e6bf2f"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="7d9cc90487248a2ce8816c733febc2e5"/></dir><file name="Link.php" hash="a465566af5823d8d61973fd1511c429c"/><file name="New.php" hash="876fc482bd5c2dc5862fcd36a44fd35e"/></dir></dir><file name="Products.php" hash="8f5b8d254253ba6e5162d1b1b10102a1"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="6daeacb19aa009a6e246696a23d0be3d"/></dir><file name="IndexController.php" hash="88d9003dc7aae9d6bfdbbdbf4e13ea2d"/><file name="ProductController.php" hash="fc6c42a2c335e9de8b00e87e98423080"/></dir><dir name="etc"><file name="config.xml" hash="cdbb44e18e55f592d63436dccc56ee0d"/></dir></dir></dir></target><target name="magelocal"><dir name="VF"><dir name="EasyAjax"><dir name="Controller"><dir name="Varien"><dir name="Router"><file name="Json.php" hash="9d8710e011b4e569859ec89df06d89e5"/></dir></dir></dir><dir name="Model"><dir name="Core"><dir name="Message"><file name="Collection.php" hash="8b24a61bd6ffcaf1a069029c4fed9558"/></dir><file name="Message.php" hash="392c75721f3d9a2db5fc5ff0ac4aecb7"/></dir><file name="Core.php" hash="08dde3fd1c2cb399396709560ea1fbc8"/><dir name="Message"><file name="Storage.php" hash="e39615d56420240e164825a89915f4ce"/></dir><file name="Observer.php" hash="6484336803cc1b574973d8056905a4e1"/><file name="Response.php" hash="e04faa384459790e0a914353ef58624e"/></dir><dir name="etc"><file name="config.xml" hash="247d56256c309c69ded56cc7fa282419"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Musho_All.xml" hash="22e2d84c8927917d48424ae8bdd19617"/><file name="VF_EasyAjax.xml" hash="2c38d6596c8bfc606d5e2582fa1e7d82"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="flipdefine.xml" hash="1020191f66a40af40abd3ed871381eb9"/><file name="easy_ajax.xml" hash="21468682ee165a43aafc8b8842809b7a"/></dir><dir name="template"><dir name="flipdefine"><file name="afficher.phtml" hash="dc8adb3b5c37a1865e3aa91c067e35c5"/><file name="products.phtml" hash="6d70326215b8b412c83a09fe83a70f6f"/></dir><dir name="page"><file name="mylayout.phtml" hash="11d6841d6dfa2ad0c366fb11c26068af"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><file name="ajax-loader.gif" hash="a2b41a6b7a0ffcd37d092ec7ced7a5b1"/><file name="add_to_shopping_bag.gif" hash="118d7fd95c739fb38c39c6b5f418a042"/></dir><dir name="css"><file name="ajax_cart.css" hash="477429e0e04a3367bba1eb20b156da23"/><file name="local.css" hash="44bbfca123dba565a3426df96e182d63"/></dir><dir name="js"><file name="ajax_cart.js" hash="8d5b1411e8149f73e435341b1aa83783"/><file name="easy_ajax.js" hash="89c639148bdcfc18403e695de347a20d"/><file name="jquery-2.0.3.js" hash="8aad10e0335fd2c86b857f358050ad48"/><file name="noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|
skin/frontend/base/default/css/ajax_cart.css
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
body{
|
25 |
background-color: #ffffff;
|
26 |
font-family: "Trebuchet MS", sans-serif;
|
27 |
-
font:
|
28 |
}
|
29 |
|
30 |
input, button{
|
@@ -198,7 +198,7 @@ ul{
|
|
198 |
.psz-productInfo{
|
199 |
|
200 |
clear: right;
|
201 |
-
width:
|
202 |
}
|
203 |
|
204 |
.psz-productInfo h1{
|
@@ -1897,32 +1897,106 @@ body.fullScreen{
|
|
1897 |
|
1898 |
|
1899 |
.ajax-cart-modal .overlay {
|
1900 |
-
background:black;
|
1901 |
-
display:block;
|
1902 |
-
left:0;
|
1903 |
-
opacity:0.65;
|
1904 |
-
filter: alpha(opacity = 65);
|
1905 |
-
position:fixed;
|
1906 |
-
top:0;
|
1907 |
-
width: 100
|
1908 |
-
height: 100
|
1909 |
-
z-index: 1000;
|
1910 |
}
|
1911 |
.ajax-cart-modal .block {
|
1912 |
-
position: fixed;
|
1913 |
-
width: 370px;
|
1914 |
-
left: 50
|
1915 |
-
margin-left: -150px;
|
1916 |
-
top: 50
|
1917 |
-
margin-top: -100px;
|
1918 |
-
z-index: 1001;
|
1919 |
}
|
1920 |
.ajax-cart-modal .block .close-btn {
|
1921 |
-
float: right;
|
1922 |
-
|
1923 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1924 |
}
|
1925 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1926 |
.ajax-cart-loading-mask .overlay {
|
1927 |
background:white;
|
1928 |
display:block;
|
@@ -1945,4 +2019,83 @@ body.fullScreen{
|
|
1945 |
margin-top: -16px;
|
1946 |
background: url('../images/ajax-loader.gif');
|
1947 |
z-index: 1001;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1948 |
}
|
24 |
body{
|
25 |
background-color: #ffffff;
|
26 |
font-family: "Trebuchet MS", sans-serif;
|
27 |
+
font: 13px Helvetica,sans-serif;
|
28 |
}
|
29 |
|
30 |
input, button{
|
198 |
.psz-productInfo{
|
199 |
|
200 |
clear: right;
|
201 |
+
width: 220px;
|
202 |
}
|
203 |
|
204 |
.psz-productInfo h1{
|
1897 |
|
1898 |
|
1899 |
.ajax-cart-modal .overlay {
|
1900 |
+
background:black!important;
|
1901 |
+
display:block!important;
|
1902 |
+
left:0!important;
|
1903 |
+
opacity:0.65!important;
|
1904 |
+
filter: alpha(opacity = 65)!important;
|
1905 |
+
position:fixed!important;
|
1906 |
+
top:0!important;
|
1907 |
+
width: 100%!important;
|
1908 |
+
height: 100%!important;
|
1909 |
+
z-index: 1000!important;
|
1910 |
}
|
1911 |
.ajax-cart-modal .block {
|
1912 |
+
position: fixed!important;
|
1913 |
+
width: 370px!important;
|
1914 |
+
left: 50%!important;
|
1915 |
+
margin-left: -150px!important;
|
1916 |
+
top: 50%!important;
|
1917 |
+
margin-top: -100px!important;
|
1918 |
+
z-index: 1001!important;
|
1919 |
}
|
1920 |
.ajax-cart-modal .block .close-btn {
|
1921 |
+
float: right!important;
|
1922 |
+
height: 11px!important;
|
1923 |
+
}
|
1924 |
+
|
1925 |
+
#ajax-cart-modal .block{
|
1926 |
+
border: 10px solid #FFFFFF !important;
|
1927 |
+
background:#000!important;
|
1928 |
+
}
|
1929 |
+
#ajax-cart-modal .block-title, #ajax-cart-modal .block-title strong{
|
1930 |
+
background:none !important;
|
1931 |
+
border-bottom:0px !important;
|
1932 |
+
}
|
1933 |
+
#ajax-cart-modal .close-btn{
|
1934 |
+
color:#FFFFFF !important;
|
1935 |
+
float: right!important;
|
1936 |
+
height: 11px!important;
|
1937 |
+
font-family: helvetica!important;
|
1938 |
+
font-size: 12px!important;
|
1939 |
+
}
|
1940 |
+
|
1941 |
+
#ajax-cart-modal .Blinks{
|
1942 |
+
color:#FFFFFF !important;
|
1943 |
+
width: 136px!important;
|
1944 |
+
height: 11px!important;
|
1945 |
+
font-family: helvetica!important;
|
1946 |
+
font-size: 12px!important;
|
1947 |
+
}
|
1948 |
+
|
1949 |
+
#ajax-cart-modal .block-content{
|
1950 |
+
background:none!important;
|
1951 |
+
}
|
1952 |
+
|
1953 |
+
#ajax-cart-modal .block-subtitle{
|
1954 |
+
margin: 0!important;
|
1955 |
+
padding: 5px 9px!important;
|
1956 |
+
font-size: 16px!important;
|
1957 |
+
font-weight: bold!important;
|
1958 |
+
color: #FFFFFF!important;
|
1959 |
+
text-align: center!important;
|
1960 |
+
font-family: helvetica!important;
|
1961 |
+
}
|
1962 |
+
|
1963 |
+
#ajax-cart-modal .actions{
|
1964 |
+
background:none!important;
|
1965 |
+
}
|
1966 |
+
|
1967 |
+
#ajax-cart-modal button.button{
|
1968 |
+
overflow: visible;
|
1969 |
+
width: auto;
|
1970 |
+
border: 0;
|
1971 |
+
padding: 0;
|
1972 |
+
margin: 0;
|
1973 |
+
background: transparent;
|
1974 |
+
cursor: pointer!important;
|
1975 |
}
|
1976 |
|
1977 |
+
#ajax-cart-modal button.button span{
|
1978 |
+
display: block!important;
|
1979 |
+
height: 19px!important;
|
1980 |
+
background: #A29E9A!important;
|
1981 |
+
border-radius:5px!important;
|
1982 |
+
padding: 0 8px!important;
|
1983 |
+
font: bold 12px/19px Arial, Helvetica, sans-serif!important;
|
1984 |
+
text-align: center!important;
|
1985 |
+
white-space: nowrap!important;
|
1986 |
+
color: #fff!important;
|
1987 |
+
}
|
1988 |
+
#ajax-cart-modal .actions .button span span{
|
1989 |
+
height: 17px!important;
|
1990 |
+
border: 0 !important;
|
1991 |
+
color: #FFFFFF!important;
|
1992 |
+
font: 14px Helvetica, sans-serif!important;
|
1993 |
+
text-transform: uppercase!important;
|
1994 |
+
}
|
1995 |
+
|
1996 |
+
|
1997 |
+
#ajax-cart-modal.block.block-title strong{background:none!important;}
|
1998 |
+
|
1999 |
+
|
2000 |
.ajax-cart-loading-mask .overlay {
|
2001 |
background:white;
|
2002 |
display:block;
|
2019 |
margin-top: -16px;
|
2020 |
background: url('../images/ajax-loader.gif');
|
2021 |
z-index: 1001;
|
2022 |
+
}
|
2023 |
+
|
2024 |
+
#pluginHeader{
|
2025 |
+
background: none repeat scroll 0 0 #4D4A4A !important;
|
2026 |
+
position: relative !important;
|
2027 |
+
color: white !important;
|
2028 |
+
white-space: nowrap !important;
|
2029 |
+
border-top: #666 solid 1px !important;
|
2030 |
+
border-right: #333 solid 1px !important;
|
2031 |
+
border-bottom: #2C2C2C solid 2px !important;
|
2032 |
+
border-left: #333 solid 1px !important;
|
2033 |
+
width: 100% !important;
|
2034 |
+
}
|
2035 |
+
|
2036 |
+
#pluginHeader h1.productName{
|
2037 |
+
color:#FFFFFF !important;
|
2038 |
+
padding-left: 5px !important;
|
2039 |
+
display:inline-block !important;
|
2040 |
+
font-family: Helvetica, Arial, sans-serif !important;
|
2041 |
+
font-size: 24px !important;
|
2042 |
+
font-weight: Normal !important;
|
2043 |
+
}
|
2044 |
+
|
2045 |
+
#pluginHeader h1.storeName{
|
2046 |
+
font-size: 13px !important;
|
2047 |
+
color: #FFFFFF !important;
|
2048 |
+
display: inline-block !important;
|
2049 |
+
padding-right: 15px !important;
|
2050 |
+
border: 0 !important;
|
2051 |
+
outline: 0 !important;
|
2052 |
+
font-weight: normal !important;
|
2053 |
+
font-style: normal !important;
|
2054 |
+
font-family: Arial,Verdana, Helvetica, sans-serif !important;
|
2055 |
+
margin-left: 5px;
|
2056 |
+
}
|
2057 |
+
|
2058 |
+
#product_addtocart_form .psz-imagesWrapper{
|
2059 |
+
display:inline-block!important;
|
2060 |
+
vertical-align: top!important;
|
2061 |
+
}
|
2062 |
+
|
2063 |
+
#product_addtocart_form button.button.btn-cart{
|
2064 |
+
background: url(../images/add_to_shopping_bag.gif) no-repeat !important;
|
2065 |
+
width: 200px !important;
|
2066 |
+
height: 40px !important;
|
2067 |
+
text-indent: -9999px !important;
|
2068 |
+
margin-bottom: 10px;
|
2069 |
+
}
|
2070 |
+
#product_addtocart_form .pluginPrice{
|
2071 |
+
margin-top: 12px !important;
|
2072 |
+
margin-bottom: 10px !important;
|
2073 |
+
}
|
2074 |
+
#product_addtocart_form .product-image-zoom img{
|
2075 |
+
margin: 0;!important
|
2076 |
+
}
|
2077 |
+
#product_addtocart_form .price{
|
2078 |
+
font-size: 13px !important;
|
2079 |
+
font-weight: bold !important;
|
2080 |
+
font-style: normal !important;
|
2081 |
+
font-family: Helvetica, Arial,Verdana, sans-serif !important;
|
2082 |
+
}
|
2083 |
+
|
2084 |
+
#product_addtocart_form h4{
|
2085 |
+
color: #4e4a4b !important;
|
2086 |
+
font-size: 13px !important;
|
2087 |
+
padding-top: 0 !important;
|
2088 |
+
font-weight: bold !important;
|
2089 |
+
font-family: Helvetica, Arial,Verdana, sans-serif !important;
|
2090 |
+
}
|
2091 |
+
|
2092 |
+
#product_addtocart_form .pluginInfo{
|
2093 |
+
margin-bottom:10px !important;
|
2094 |
+
font-style: normal !important;
|
2095 |
+
font-family: Arial,Verdana, Helvetica, sans-serif !important;
|
2096 |
+
font-weight: normal !important;
|
2097 |
+
}
|
2098 |
+
|
2099 |
+
#ajax-cart-modal button.button span{
|
2100 |
+
border: 1px solid #C2C2C2 !important;
|
2101 |
}
|
skin/frontend/base/default/images/add_to_shopping_bag.gif
ADDED
Binary file
|