Version Notes
- TopLink Icons
- UPS
Download this release
Release Info
| Developer | tony vu |
| Extension | responsive |
| Version | 0.1.3 |
| Comparing to | |
| See all releases | |
Code changes from version 0.1.2 to 0.1.3
- app/code/local/Tvcom/Checkout/Block/Links.php +23 -0
- app/code/local/Tvcom/Checkout/etc/config.xml +17 -0
- app/code/local/Tvcom/Page/Block/Html/Welcome.php +27 -0
- app/code/local/Tvcom/Page/etc/config.xml +2 -1
- app/code/local/Tvcom/Wishlist/Block/Links.php +19 -0
- app/code/local/Tvcom/Wishlist/etc/config.xml +17 -0
- app/design/frontend/default/responsive/layout/carousel.xml +0 -12
- app/design/frontend/default/responsive/layout/customer.xml +293 -0
- app/design/frontend/default/responsive/template/carousel/slider.phtml +0 -73
- app/design/frontend/default/responsive/template/catalog/product/compare/sidebar.phtml +2 -2
- app/design/frontend/default/responsive/template/catalog/product/list.phtml +4 -4
- app/design/frontend/default/responsive/template/catalog/product/list/toolbar.phtml +5 -5
- app/design/frontend/default/responsive/template/catalog/product/list/upsell.phtml +1 -0
- app/design/frontend/default/responsive/template/catalog/product/view/addto.phtml +41 -0
- app/design/frontend/default/responsive/template/page/html/header.phtml +9 -3
- app/design/frontend/default/responsive/template/page/html/topmenu.phtml +1 -1
- app/design/frontend/default/responsive/template/page/switch/languages.phtml +44 -0
- app/design/frontend/default/responsive/template/page/template/links.phtml +4 -2
- app/design/frontend/default/responsive/template/review/helper/summary.phtml +42 -0
- app/etc/modules/Tvcom_Checkout.xml +9 -0
- app/etc/modules/Tvcom_Wishlist.xml +9 -0
- package.xml +6 -7
- skin/frontend/default/responsive/css/carousel/slider.css +0 -36
- skin/frontend/default/responsive/css/responsive.css +11 -3
- skin/frontend/default/responsive/css/styles.css +23 -18
app/code/local/Tvcom/Checkout/Block/Links.php
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* @author Tony Vu <vuductrung2003@gmail.com>
|
| 4 |
+
*/
|
| 5 |
+
class Tvcom_Checkout_Block_Links extends Mage_Checkout_Block_Links{
|
| 6 |
+
public function addCartLink(){
|
| 7 |
+
$parentBlock = $this->getParentBlock();
|
| 8 |
+
if ($parentBlock && Mage::helper('core')->isModuleOutputEnabled('Mage_Checkout')) {
|
| 9 |
+
$count = $this->getSummaryQty() ? $this->getSummaryQty()
|
| 10 |
+
: $this->helper('checkout/cart')->getSummaryCount();
|
| 11 |
+
|
| 12 |
+
$text = $this->__('My Cart');
|
| 13 |
+
$parentBlock->removeLinkByUrl($this->getUrl('checkout/cart'));
|
| 14 |
+
if($count == 0){
|
| 15 |
+
$parentBlock->addLink('<span class="cart-text"> ' . $text . '</span>', 'checkout/cart', $text, true, array(), 50, null, 'class="top-link-cart"');
|
| 16 |
+
}
|
| 17 |
+
else{
|
| 18 |
+
$parentBlock->addLink('<span class="cart-text"> ' . $text . '</span> <span class="item-count">' . $count . '</span>', 'checkout/cart', $text, true, array(), 50, null, 'class="top-link-cart"');
|
| 19 |
+
}
|
| 20 |
+
}
|
| 21 |
+
return $this;
|
| 22 |
+
}
|
| 23 |
+
}
|
app/code/local/Tvcom/Checkout/etc/config.xml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tvcom_Checkout>
|
| 5 |
+
<version>0.0.1</version>
|
| 6 |
+
</Tvcom_Checkout>
|
| 7 |
+
</modules>
|
| 8 |
+
<global>
|
| 9 |
+
<blocks>
|
| 10 |
+
<checkout>
|
| 11 |
+
<rewrite>
|
| 12 |
+
<links>Tvcom_Checkout_Block_Links</links>
|
| 13 |
+
</rewrite>
|
| 14 |
+
</checkout>
|
| 15 |
+
</blocks>
|
| 16 |
+
</global>
|
| 17 |
+
</config>
|
app/code/local/Tvcom/Page/Block/Html/Welcome.php
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
/**
|
| 4 |
+
*
|
| 5 |
+
* @author Tony Vu <vuductrung2003.com>
|
| 6 |
+
*/
|
| 7 |
+
class Tvcom_Page_Block_Html_Welcome extends Mage_Page_Block_Html_Welcome
|
| 8 |
+
{
|
| 9 |
+
/**
|
| 10 |
+
* Get block messsage
|
| 11 |
+
*
|
| 12 |
+
* @return string
|
| 13 |
+
*/
|
| 14 |
+
protected function _toHtml()
|
| 15 |
+
{
|
| 16 |
+
if (empty($this->_data['welcome'])) {
|
| 17 |
+
if (Mage::isInstalled() && Mage::getSingleton('customer/session')->isLoggedIn()) {
|
| 18 |
+
$this->_data['welcome'] = $this->__('Hi, %s!', $this->escapeHtml(Mage::getSingleton('customer/session')->getCustomer()->getName()));
|
| 19 |
+
} else {
|
| 20 |
+
$this->_data['welcome'] = Mage::getStoreConfig('design/header/welcome');
|
| 21 |
+
}
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
return $this->_data['welcome'];
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
}
|
app/code/local/Tvcom/Page/etc/config.xml
CHANGED
|
@@ -9,7 +9,8 @@
|
|
| 9 |
<blocks>
|
| 10 |
<page>
|
| 11 |
<rewrite>
|
| 12 |
-
<html_topmenu>Tvcom_Page_Block_Html_Topmenu</html_topmenu>
|
|
|
|
| 13 |
</rewrite>
|
| 14 |
</page>
|
| 15 |
</blocks>
|
| 9 |
<blocks>
|
| 10 |
<page>
|
| 11 |
<rewrite>
|
| 12 |
+
<html_topmenu>Tvcom_Page_Block_Html_Topmenu</html_topmenu>
|
| 13 |
+
<html_welcome>Tvcom_Page_Block_Html_Welcome</html_welcome>
|
| 14 |
</rewrite>
|
| 15 |
</page>
|
| 16 |
</blocks>
|
app/code/local/Tvcom/Wishlist/Block/Links.php
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/*
|
| 4 |
+
* Author: Tony Vu
|
| 5 |
+
* Description: use bootstrap Badges in the toplinks
|
| 6 |
+
*/
|
| 7 |
+
class Tvcom_Wishlist_Block_Links extends Mage_Wishlist_Block_Links{
|
| 8 |
+
|
| 9 |
+
protected function _toHtml(){
|
| 10 |
+
if ($this->helper('wishlist')->isAllow() && ($this->_getItemCount() != 0)) {
|
| 11 |
+
$text = $this->_createLabel($this->_getItemCount());
|
| 12 |
+
$this->_label = '<i class="wishlist-icon fa fa-gift"></i> <span class="wishlist-text">My Wishlist</span> <span class="item-count">' . $this->_getItemCount() . '</span>';
|
| 13 |
+
$this->_title = "My Wishlist";
|
| 14 |
+
$this->_url = $this->getUrl('wishlist');
|
| 15 |
+
return Mage_Page_Block_Template_Links_Block::_toHtml();
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
}
|
| 19 |
+
?>
|
app/code/local/Tvcom/Wishlist/etc/config.xml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tvcom_Wishlist>
|
| 5 |
+
<version>0.0.1</version>
|
| 6 |
+
</Tvcom_Wishlist>
|
| 7 |
+
</modules>
|
| 8 |
+
<global>
|
| 9 |
+
<blocks>
|
| 10 |
+
<wishlist>
|
| 11 |
+
<rewrite>
|
| 12 |
+
<links>Tvcom_Wishlist_Block_Links</links>
|
| 13 |
+
</rewrite>
|
| 14 |
+
</wishlist>
|
| 15 |
+
</blocks>
|
| 16 |
+
</global>
|
| 17 |
+
</config>
|
app/design/frontend/default/responsive/layout/carousel.xml
DELETED
|
@@ -1,12 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
|
| 3 |
-
<layout>
|
| 4 |
-
<cms_index_index>
|
| 5 |
-
<reference name="head">
|
| 6 |
-
<action method="addCss"><stylesheet>css/carousel/slider.css</stylesheet></action>
|
| 7 |
-
</reference>
|
| 8 |
-
<reference name="content">
|
| 9 |
-
<block type="core/template" name="carousel" before="" template="carousel/slider.phtml" />
|
| 10 |
-
</reference>
|
| 11 |
-
</cms_index_index>
|
| 12 |
-
</layout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/responsive/layout/customer.xml
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<!--
|
| 3 |
+
/**
|
| 4 |
+
* Magento
|
| 5 |
+
*
|
| 6 |
+
* NOTICE OF LICENSE
|
| 7 |
+
*
|
| 8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 10 |
+
* It is also available through the world-wide-web at this URL:
|
| 11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
| 12 |
+
* If you did not receive a copy of the license and are unable to
|
| 13 |
+
* obtain it through the world-wide-web, please send an email
|
| 14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
| 15 |
+
*
|
| 16 |
+
* DISCLAIMER
|
| 17 |
+
*
|
| 18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 19 |
+
* versions in the future. If you wish to customize Magento for your
|
| 20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 21 |
+
*
|
| 22 |
+
* @category design
|
| 23 |
+
* @package base_default
|
| 24 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
| 25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
+
*/
|
| 27 |
+
|
| 28 |
+
Supported layout update handles (action):
|
| 29 |
+
- customer_account_index
|
| 30 |
+
- customer_address_index
|
| 31 |
+
- customer_address_view
|
| 32 |
+
- customer_account_login
|
| 33 |
+
- customer_account_logoutsuccess
|
| 34 |
+
- customer_account_create
|
| 35 |
+
- customer_account_forgotpassword
|
| 36 |
+
- customer_account_confirmation
|
| 37 |
+
- customer_account_edit
|
| 38 |
+
|
| 39 |
+
Supported layout update handles (special):
|
| 40 |
+
- default
|
| 41 |
+
|
| 42 |
+
-->
|
| 43 |
+
<layout version="0.1.0">
|
| 44 |
+
|
| 45 |
+
<!--
|
| 46 |
+
Default layout, loads most of the pages
|
| 47 |
+
-->
|
| 48 |
+
|
| 49 |
+
<default>
|
| 50 |
+
<!-- Mage_Customer -->
|
| 51 |
+
<reference name="top.links">
|
| 52 |
+
<action method="addLink" translate="label title" module="customer"><label><![CDATA[<i class="myaccount-icon fa fa-home"></i> <span class="myaccount-text">My Account</span>]]></label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>10</position></action>
|
| 53 |
+
</reference>
|
| 54 |
+
</default>
|
| 55 |
+
|
| 56 |
+
<!--
|
| 57 |
+
Load this update on every page when customer is logged in
|
| 58 |
+
-->
|
| 59 |
+
|
| 60 |
+
<customer_logged_in>
|
| 61 |
+
<reference name="top.links">
|
| 62 |
+
<action method="addLink" translate="label title" module="customer"><label><![CDATA[<i class="logout-icon fa fa-sign-out"></i> <span class="logout-text">Log Out</span>]]></label><url helper="customer/getLogoutUrl"/><title>Log Out</title><prepare/><urlParams/><position>100</position></action>
|
| 63 |
+
</reference>
|
| 64 |
+
</customer_logged_in>
|
| 65 |
+
|
| 66 |
+
<!--
|
| 67 |
+
Load this update on every page when customer is logged out
|
| 68 |
+
-->
|
| 69 |
+
|
| 70 |
+
<customer_logged_out>
|
| 71 |
+
<!---<reference name="right">
|
| 72 |
+
<block type="customer/form_login" name="customer_form_mini_login" before="-" template="customer/form/mini.login.phtml"/>
|
| 73 |
+
</reference>-->
|
| 74 |
+
<reference name="top.links">
|
| 75 |
+
<action method="addLink" translate="label title" module="customer"><label><![CDATA[<i class="login-icon fa fa-sign-in"></i> <span class="login-text">Log In</span>]]></label><url helper="customer/getLoginUrl"/><title>Log In</title><prepare/><urlParams/><position>100</position></action>
|
| 76 |
+
</reference>
|
| 77 |
+
<remove name="reorder"></remove>
|
| 78 |
+
</customer_logged_out>
|
| 79 |
+
|
| 80 |
+
<!--
|
| 81 |
+
Layout for customer login page
|
| 82 |
+
-->
|
| 83 |
+
|
| 84 |
+
<customer_account_login translate="label">
|
| 85 |
+
<label>Customer Account Login Form</label>
|
| 86 |
+
<!-- Mage_Customer -->
|
| 87 |
+
<remove name="right"/>
|
| 88 |
+
<remove name="left"/>
|
| 89 |
+
|
| 90 |
+
<reference name="root">
|
| 91 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
| 92 |
+
</reference>
|
| 93 |
+
<reference name="content">
|
| 94 |
+
<block type="customer/form_login" name="customer_form_login" template="customer/form/login.phtml" />
|
| 95 |
+
</reference>
|
| 96 |
+
</customer_account_login>
|
| 97 |
+
|
| 98 |
+
<!--
|
| 99 |
+
Layout for customer log out page
|
| 100 |
+
-->
|
| 101 |
+
|
| 102 |
+
<customer_account_logoutsuccess translate="label">
|
| 103 |
+
<label>Customer Account Logout Success</label>
|
| 104 |
+
<!-- Mage_Customer -->
|
| 105 |
+
<remove name="right"/>
|
| 106 |
+
<remove name="left"/>
|
| 107 |
+
|
| 108 |
+
<reference name="root">
|
| 109 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
| 110 |
+
</reference>
|
| 111 |
+
<reference name="content">
|
| 112 |
+
<block type="core/template" name="customer_logout" template="customer/logout.phtml"/>
|
| 113 |
+
</reference>
|
| 114 |
+
</customer_account_logoutsuccess>
|
| 115 |
+
|
| 116 |
+
<!--
|
| 117 |
+
New customer registration
|
| 118 |
+
-->
|
| 119 |
+
|
| 120 |
+
<customer_account_create translate="label">
|
| 121 |
+
<label>Customer Account Registration Form</label>
|
| 122 |
+
<!-- Mage_Customer -->
|
| 123 |
+
<remove name="right"/>
|
| 124 |
+
<remove name="left"/>
|
| 125 |
+
|
| 126 |
+
<reference name="root">
|
| 127 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
| 128 |
+
</reference>
|
| 129 |
+
<reference name="content">
|
| 130 |
+
<block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
|
| 131 |
+
<block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before" translate="label">
|
| 132 |
+
<label>Form Fields Before</label>
|
| 133 |
+
</block>
|
| 134 |
+
</block>
|
| 135 |
+
</reference>
|
| 136 |
+
</customer_account_create>
|
| 137 |
+
|
| 138 |
+
<customer_account_forgotpassword translate="label">
|
| 139 |
+
<label>Customer Forgot Password Form</label>
|
| 140 |
+
<remove name="right"/>
|
| 141 |
+
<remove name="left"/>
|
| 142 |
+
|
| 143 |
+
<reference name="head">
|
| 144 |
+
<action method="setTitle" translate="title" module="customer"><title>Forgot Your Password</title></action>
|
| 145 |
+
</reference>
|
| 146 |
+
<reference name="root">
|
| 147 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
| 148 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Password forgotten</title></action>
|
| 149 |
+
</reference>
|
| 150 |
+
<reference name="content">
|
| 151 |
+
<!--<block type="core/template" name="forgotPassword" template="customer/form/forgotpassword.phtml"/>-->
|
| 152 |
+
<block type="customer/account_forgotpassword" name="forgotPassword" template="customer/form/forgotpassword.phtml" />
|
| 153 |
+
</reference>
|
| 154 |
+
</customer_account_forgotpassword>
|
| 155 |
+
|
| 156 |
+
<customer_account_resetpassword translate="label">
|
| 157 |
+
<label>Reset a Password</label>
|
| 158 |
+
<remove name="right"/>
|
| 159 |
+
<remove name="left"/>
|
| 160 |
+
|
| 161 |
+
<reference name="head">
|
| 162 |
+
<action method="setTitle" translate="title" module="customer">
|
| 163 |
+
<title>Reset a Password</title>
|
| 164 |
+
</action>
|
| 165 |
+
</reference>
|
| 166 |
+
<reference name="root">
|
| 167 |
+
<action method="setTemplate">
|
| 168 |
+
<template>page/1column.phtml</template>
|
| 169 |
+
</action>
|
| 170 |
+
<action method="setHeaderTitle" translate="title" module="customer">
|
| 171 |
+
<title>Reset a Password</title>
|
| 172 |
+
</action>
|
| 173 |
+
</reference>
|
| 174 |
+
<reference name="content">
|
| 175 |
+
<block type="customer/account_resetpassword" name="resetPassword" template="customer/form/resetforgottenpassword.phtml"/>
|
| 176 |
+
</reference>
|
| 177 |
+
</customer_account_resetpassword>
|
| 178 |
+
|
| 179 |
+
<customer_account_confirmation>
|
| 180 |
+
<remove name="right"/>
|
| 181 |
+
<remove name="left"/>
|
| 182 |
+
|
| 183 |
+
<reference name="root">
|
| 184 |
+
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
| 185 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Send confirmation link</title></action>
|
| 186 |
+
</reference>
|
| 187 |
+
<reference name="content">
|
| 188 |
+
<block type="core/template" name="accountConfirmation" template="customer/form/confirmation.phtml"/>
|
| 189 |
+
</reference>
|
| 190 |
+
</customer_account_confirmation>
|
| 191 |
+
|
| 192 |
+
<customer_account_edit translate="label">
|
| 193 |
+
<label>Customer Account Edit Form</label>
|
| 194 |
+
<update handle="customer_account"/>
|
| 195 |
+
<reference name="root">
|
| 196 |
+
<action method="setHeaderTitle" translate="title" module="customer"><title>Edit Account Info</title></action>
|
| 197 |
+
</reference>
|
| 198 |
+
<reference name="my.account.wrapper">
|
| 199 |
+
<block type="customer/form_edit" name="customer_edit" template="customer/form/edit.phtml"/>
|
| 200 |
+
</reference>
|
| 201 |
+
|
| 202 |
+
<reference name="left">
|
| 203 |
+
<action method="unsetChild"><name>left.permanent.callout</name></action>
|
| 204 |
+
</reference>
|
| 205 |
+
</customer_account_edit>
|
| 206 |
+
|
| 207 |
+
<!--
|
| 208 |
+
Customer account pages, rendered for all tabs in dashboard
|
| 209 |
+
-->
|
| 210 |
+
|
| 211 |
+
<customer_account translate="label">
|
| 212 |
+
<label>Customer My Account (All Pages)</label>
|
| 213 |
+
<!--remove name="catalog.compare.sidebar"/>
|
| 214 |
+
<remove name="sale.reorder.sidebar"/-->
|
| 215 |
+
<!-- Mage_Customer -->
|
| 216 |
+
<reference name="root">
|
| 217 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
| 218 |
+
</reference>
|
| 219 |
+
|
| 220 |
+
<reference name="content">
|
| 221 |
+
<block type="page/html_wrapper" name="my.account.wrapper" translate="label">
|
| 222 |
+
<label>My Account Wrapper</label>
|
| 223 |
+
<action method="setElementClass"><value>my-account</value></action>
|
| 224 |
+
</block>
|
| 225 |
+
</reference>
|
| 226 |
+
|
| 227 |
+
<reference name="left">
|
| 228 |
+
<block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
|
| 229 |
+
<action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>
|
| 230 |
+
<action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action>
|
| 231 |
+
<action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>
|
| 232 |
+
</block>
|
| 233 |
+
<block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml">
|
| 234 |
+
<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
| 235 |
+
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
| 236 |
+
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
|
| 237 |
+
</block>
|
| 238 |
+
<block type="catalog/product_compare_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
|
| 239 |
+
<remove name="tags_popular"/>
|
| 240 |
+
|
| 241 |
+
</reference>
|
| 242 |
+
</customer_account>
|
| 243 |
+
|
| 244 |
+
<!--
|
| 245 |
+
Customer account home dashboard layout
|
| 246 |
+
-->
|
| 247 |
+
|
| 248 |
+
<customer_account_index translate="label">
|
| 249 |
+
<label>Customer My Account Dashboard</label>
|
| 250 |
+
<update handle="customer_account"/>
|
| 251 |
+
<!-- Mage_Customer -->
|
| 252 |
+
<reference name="root">
|
| 253 |
+
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
|
| 254 |
+
</reference>
|
| 255 |
+
<reference name="my.account.wrapper">
|
| 256 |
+
<block type="customer/account_dashboard" name="customer_account_dashboard" template="customer/account/dashboard.phtml">
|
| 257 |
+
<block type="customer/account_dashboard_hello" name="customer_account_dashboard_hello" as="hello" template="customer/account/dashboard/hello.phtml"/>
|
| 258 |
+
<block type="core/template" name="customer_account_dashboard_top" as="top" />
|
| 259 |
+
<block type="customer/account_dashboard_info" name="customer_account_dashboard_info" as="info" template="customer/account/dashboard/info.phtml"/>
|
| 260 |
+
<block type="customer/account_dashboard_newsletter" name="customer_account_dashboard_newsletter" as="newsletter" template="customer/account/dashboard/newsletter.phtml"/>
|
| 261 |
+
<block type="customer/account_dashboard_address" name="customer_account_dashboard_address" as="address" template="customer/account/dashboard/address.phtml"/>
|
| 262 |
+
</block>
|
| 263 |
+
</reference>
|
| 264 |
+
|
| 265 |
+
</customer_account_index>
|
| 266 |
+
|
| 267 |
+
<!--
|
| 268 |
+
Customer account address book
|
| 269 |
+
-->
|
| 270 |
+
|
| 271 |
+
<customer_address_index translate="label">
|
| 272 |
+
<label>Customer My Account Address Book</label>
|
| 273 |
+
<!-- Mage_Customer -->
|
| 274 |
+
<update handle="customer_account"/>
|
| 275 |
+
<reference name="my.account.wrapper">
|
| 276 |
+
<block type="customer/address_book" name="address_book" template="customer/address/book.phtml"/>
|
| 277 |
+
</reference>
|
| 278 |
+
</customer_address_index>
|
| 279 |
+
|
| 280 |
+
<!--
|
| 281 |
+
Customer account address edit page
|
| 282 |
+
-->
|
| 283 |
+
|
| 284 |
+
<customer_address_form translate="label">
|
| 285 |
+
<label>Customer My Account Address Edit Form</label>
|
| 286 |
+
<!-- Mage_Customer -->
|
| 287 |
+
<update handle="customer_account"/>
|
| 288 |
+
<reference name="my.account.wrapper">
|
| 289 |
+
<block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
|
| 290 |
+
</reference>
|
| 291 |
+
</customer_address_form>
|
| 292 |
+
|
| 293 |
+
</layout>
|
app/design/frontend/default/responsive/template/carousel/slider.phtml
DELETED
|
@@ -1,73 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/**
|
| 3 |
-
* Bootstrap Carousel
|
| 4 |
-
* Tony Vu
|
| 5 |
-
* 29.01.2014
|
| 6 |
-
*/
|
| 7 |
-
?>
|
| 8 |
-
|
| 9 |
-
<?php
|
| 10 |
-
$i = 0;
|
| 11 |
-
$j = 0;
|
| 12 |
-
|
| 13 |
-
/*Magento Config*/
|
| 14 |
-
$is_carousel = Mage::getStoreConfig('carousel/setting/yes_no');
|
| 15 |
-
if($is_carousel == 0 || $is_carousel == 0){
|
| 16 |
-
return;
|
| 17 |
-
}
|
| 18 |
-
|
| 19 |
-
// auto loop carousel
|
| 20 |
-
$is_loop = Mage::getStoreConfig('carousel/setting/wrap');
|
| 21 |
-
|
| 22 |
-
// path folder contains images
|
| 23 |
-
$path_folder = "media/" . Mage::getStoreConfig('carousel/setting/path') . "/*.*" ;
|
| 24 |
-
$TotalImages = count(glob($path_folder));
|
| 25 |
-
|
| 26 |
-
// transition option
|
| 27 |
-
$transition = Mage::getStoreConfig('carousel/setting/transition');
|
| 28 |
-
if($transition == null){
|
| 29 |
-
$transition = 'slide';
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
-
// transition time
|
| 33 |
-
$interval = Mage::getStoreConfig('carousel/setting/interval');
|
| 34 |
-
if($interval == null || $interval == 0){
|
| 35 |
-
$interval = 5000;
|
| 36 |
-
}
|
| 37 |
-
?>
|
| 38 |
-
<div id="tvcarousel" data-interval="<?php echo $interval ?>" data-wrap="<?php echo $is_loop ?>" class="carousel <?php echo $transition ?>" data-ride="carousel" style="margin-bottom: 20px;">
|
| 39 |
-
<!-- Indicators -->
|
| 40 |
-
<ol class="carousel-indicators">
|
| 41 |
-
<?php
|
| 42 |
-
while ($i < $TotalImages) {
|
| 43 |
-
if($i == 0){
|
| 44 |
-
echo '<li data-target="#tvcarousel" data-slide-to="' . $i . '" class="active"></li>';
|
| 45 |
-
}else{
|
| 46 |
-
echo '<li data-target="#tvcarousel" data-slide-to="' . $i . '"></li>';
|
| 47 |
-
}
|
| 48 |
-
$i++;
|
| 49 |
-
}
|
| 50 |
-
?>
|
| 51 |
-
</ol>
|
| 52 |
-
|
| 53 |
-
<!-- Wrapper for slides -->
|
| 54 |
-
<div class="carousel-inner">
|
| 55 |
-
<?php
|
| 56 |
-
foreach (glob($path_folder) as $filename) {
|
| 57 |
-
if($j == 0){
|
| 58 |
-
echo '<div class="item active"><img src="' . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB) . $filename . '" /><div class="carousel-caption"></div></div>' ;
|
| 59 |
-
}else{
|
| 60 |
-
echo '<div class="item"><img src="' . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB) . $filename . '" /><div class="carousel-caption"></div></div>' ;
|
| 61 |
-
}
|
| 62 |
-
$j++;
|
| 63 |
-
}
|
| 64 |
-
?>
|
| 65 |
-
</div>
|
| 66 |
-
<!-- Controls -->
|
| 67 |
-
<a class="left carousel-control" href="#tvcarousel" data-slide="prev">
|
| 68 |
-
<span class="glyphicon glyphicon-chevron-left"></span>
|
| 69 |
-
</a>
|
| 70 |
-
<a class="right carousel-control" href="#tvcarousel" data-slide="next">
|
| 71 |
-
<span class="glyphicon glyphicon-chevron-right"></span>
|
| 72 |
-
</a>
|
| 73 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/responsive/template/catalog/product/compare/sidebar.phtml
CHANGED
|
@@ -43,7 +43,7 @@ $_items = $_helper->getItemCount() > 0 ? $_helper->getItemCollection() : null;
|
|
| 43 |
<?php foreach($_items as $_index => $_item): ?>
|
| 44 |
<li class="item">
|
| 45 |
<input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" />
|
| 46 |
-
<a href="<?php echo $_helper->getRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the compare products?') ?>');"
|
| 47 |
<p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p>
|
| 48 |
</li>
|
| 49 |
<?php endforeach; ?>
|
|
@@ -51,7 +51,7 @@ $_items = $_helper->getItemCount() > 0 ? $_helper->getItemCollection() : null;
|
|
| 51 |
<script type="text/javascript">decorateList('compare-items')</script>
|
| 52 |
<div class="actions">
|
| 53 |
<a href="<?php echo $_helper->getClearListUrl() ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove all products from your comparison?') ?>');"><?php echo $this->__('Clear All') ?></a>
|
| 54 |
-
<button type="button" title="<?php echo $this->__('Compare') ?>" class="button btn btn-default btn-
|
| 55 |
</div>
|
| 56 |
<?php else: ?>
|
| 57 |
<p class="empty"><?php echo $this->__('You have no items to compare.') ?></p>
|
| 43 |
<?php foreach($_items as $_index => $_item): ?>
|
| 44 |
<li class="item">
|
| 45 |
<input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" />
|
| 46 |
+
<a href="<?php echo $_helper->getRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the compare products?') ?>');"><i class="fa fa-times"></i></a>
|
| 47 |
<p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p>
|
| 48 |
</li>
|
| 49 |
<?php endforeach; ?>
|
| 51 |
<script type="text/javascript">decorateList('compare-items')</script>
|
| 52 |
<div class="actions">
|
| 53 |
<a href="<?php echo $_helper->getClearListUrl() ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove all products from your comparison?') ?>');"><?php echo $this->__('Clear All') ?></a>
|
| 54 |
+
<button type="button" title="<?php echo $this->__('Compare') ?>" class="button btn btn-default btn-sm" onclick="popWin('<?php echo $_helper->getListUrl() ?>','compare','top:0,left:0,width=820,height=600,resizable=yes,scrollbars=yes')"><?php echo $this->__('Compare') ?></button>
|
| 55 |
</div>
|
| 56 |
<?php else: ?>
|
| 57 |
<p class="empty"><?php echo $this->__('You have no items to compare.') ?></p>
|
app/design/frontend/default/responsive/template/catalog/product/list.phtml
CHANGED
|
@@ -68,10 +68,10 @@
|
|
| 68 |
</div>
|
| 69 |
<ul class="add-to-links">
|
| 70 |
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 71 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"
|
| 72 |
<?php endif; ?>
|
| 73 |
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 74 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"
|
| 75 |
<?php endif; ?>
|
| 76 |
</ul>
|
| 77 |
</div>
|
|
@@ -106,10 +106,10 @@
|
|
| 106 |
<?php endif; ?>
|
| 107 |
<ul class="add-to-links">
|
| 108 |
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 109 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"
|
| 110 |
<?php endif; ?>
|
| 111 |
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 112 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"
|
| 113 |
<?php endif; ?>
|
| 114 |
</ul>
|
| 115 |
</div>
|
| 68 |
</div>
|
| 69 |
<ul class="add-to-links">
|
| 70 |
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 71 |
+
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist" alt="add to wishlist" title="add to wishlist"><i class="fa fa-gift fa-lg"></i></a></li>
|
| 72 |
<?php endif; ?>
|
| 73 |
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 74 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare" alt="add to compare" title="add to compare"><i class="fa fa-files-o"></i></a></li>
|
| 75 |
<?php endif; ?>
|
| 76 |
</ul>
|
| 77 |
</div>
|
| 106 |
<?php endif; ?>
|
| 107 |
<ul class="add-to-links">
|
| 108 |
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 109 |
+
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist" alt="add to wishlist" title="add to wishlist"><i class="fa fa-gift fa-lg"></i></a></li>
|
| 110 |
<?php endif; ?>
|
| 111 |
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 112 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare" alt="add to compare" title="add to compare"><i class="fa fa-files-o"></i></a></li>
|
| 113 |
<?php endif; ?>
|
| 114 |
</ul>
|
| 115 |
</div>
|
app/design/frontend/default/responsive/template/catalog/product/list/toolbar.phtml
CHANGED
|
@@ -47,7 +47,7 @@
|
|
| 47 |
</div>
|
| 48 |
|
| 49 |
<div class="limiter col-sm-4 col-xs-6">
|
| 50 |
-
|
| 51 |
<select onchange="setLocation(this.value)">
|
| 52 |
<?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
|
| 53 |
<option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
|
|
@@ -64,7 +64,7 @@
|
|
| 64 |
<div class="view-mode col-xs-6">
|
| 65 |
<?php $_modes = $this->getModes(); ?>
|
| 66 |
<?php if($_modes && count($_modes)>1): ?>
|
| 67 |
-
|
| 68 |
<?php foreach ($this->getModes() as $_code=>$_label): ?>
|
| 69 |
<?php if($this->isModeActive($_code)): ?>
|
| 70 |
<strong title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></strong>
|
|
@@ -77,7 +77,7 @@
|
|
| 77 |
<?php endif; ?>
|
| 78 |
|
| 79 |
<div class="sort-by col-xs-6">
|
| 80 |
-
|
| 81 |
<select onchange="setLocation(this.value)">
|
| 82 |
<?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
|
| 83 |
<option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
|
|
@@ -86,9 +86,9 @@
|
|
| 86 |
<?php endforeach; ?>
|
| 87 |
</select>
|
| 88 |
<?php if($this->getCurrentDirection() == 'desc'): ?>
|
| 89 |
-
<a href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><
|
| 90 |
<?php else: ?>
|
| 91 |
-
<a href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><
|
| 92 |
<?php endif; ?>
|
| 93 |
</div>
|
| 94 |
</div>
|
| 47 |
</div>
|
| 48 |
|
| 49 |
<div class="limiter col-sm-4 col-xs-6">
|
| 50 |
+
<?php echo $this->__('Show') ?>
|
| 51 |
<select onchange="setLocation(this.value)">
|
| 52 |
<?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
|
| 53 |
<option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
|
| 64 |
<div class="view-mode col-xs-6">
|
| 65 |
<?php $_modes = $this->getModes(); ?>
|
| 66 |
<?php if($_modes && count($_modes)>1): ?>
|
| 67 |
+
<?php echo $this->__('View as') ?>:
|
| 68 |
<?php foreach ($this->getModes() as $_code=>$_label): ?>
|
| 69 |
<?php if($this->isModeActive($_code)): ?>
|
| 70 |
<strong title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></strong>
|
| 77 |
<?php endif; ?>
|
| 78 |
|
| 79 |
<div class="sort-by col-xs-6">
|
| 80 |
+
<?php echo $this->__('Sort By') ?>
|
| 81 |
<select onchange="setLocation(this.value)">
|
| 82 |
<?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
|
| 83 |
<option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
|
| 86 |
<?php endforeach; ?>
|
| 87 |
</select>
|
| 88 |
<?php if($this->getCurrentDirection() == 'desc'): ?>
|
| 89 |
+
<a href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><i class="fa fa-long-arrow-down"></i></a>
|
| 90 |
<?php else: ?>
|
| 91 |
+
<a href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><i class="fa fa-long-arrow-up"></i></a>
|
| 92 |
<?php endif; ?>
|
| 93 |
</div>
|
| 94 |
</div>
|
app/design/frontend/default/responsive/template/catalog/product/list/upsell.phtml
CHANGED
|
@@ -53,6 +53,7 @@
|
|
| 53 |
</div>
|
| 54 |
<!-- Prev/next controls -->
|
| 55 |
<a class="jcarousel-prev">‹ Prev</a>
|
|
|
|
| 56 |
<a class="jcarousel-next">Next ›</a>
|
| 57 |
|
| 58 |
<script type="text/javascript">decorateTable('upsell-product-table')</script>
|
| 53 |
</div>
|
| 54 |
<!-- Prev/next controls -->
|
| 55 |
<a class="jcarousel-prev">‹ Prev</a>
|
| 56 |
+
| <span style="font-weight: bold">Slider</span> |
|
| 57 |
<a class="jcarousel-next">Next ›</a>
|
| 58 |
|
| 59 |
<script type="text/javascript">decorateTable('upsell-product-table')</script>
|
app/design/frontend/default/responsive/template/catalog/product/view/addto.phtml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Magento
|
| 4 |
+
*
|
| 5 |
+
* NOTICE OF LICENSE
|
| 6 |
+
*
|
| 7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 9 |
+
* It is also available through the world-wide-web at this URL:
|
| 10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
| 11 |
+
* If you did not receive a copy of the license and are unable to
|
| 12 |
+
* obtain it through the world-wide-web, please send an email
|
| 13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
| 14 |
+
*
|
| 15 |
+
* DISCLAIMER
|
| 16 |
+
*
|
| 17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 18 |
+
* versions in the future. If you wish to customize Magento for your
|
| 19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 20 |
+
*
|
| 21 |
+
* @category design
|
| 22 |
+
* @package base_default
|
| 23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
+
*/
|
| 26 |
+
?>
|
| 27 |
+
|
| 28 |
+
<?php $_product = $this->getProduct(); ?>
|
| 29 |
+
<?php $_wishlistSubmitUrl = $this->helper('wishlist')->getAddUrl($_product); ?>
|
| 30 |
+
|
| 31 |
+
<ul class="add-to-links">
|
| 32 |
+
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 33 |
+
<li><a href="<?php echo $_wishlistSubmitUrl ?>" onclick="productAddToCartForm.submitLight(this, this.href); return false;" class="link-wishlist" alt="add to wishlist" title="add to wishlist"><i class="fa fa-gift fa-lg"></i></a></li>
|
| 34 |
+
<?php endif; ?>
|
| 35 |
+
<?php
|
| 36 |
+
$_compareUrl = $this->helper('catalog/product_compare')->getAddUrl($_product);
|
| 37 |
+
?>
|
| 38 |
+
<?php if($_compareUrl) : ?>
|
| 39 |
+
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare" alt="add to compare" title="add to compare"><i class="fa fa-files-o"></i></a></li>
|
| 40 |
+
<?php endif; ?>
|
| 41 |
+
</ul>
|
app/design/frontend/default/responsive/template/page/html/header.phtml
CHANGED
|
@@ -35,9 +35,15 @@
|
|
| 35 |
</div>
|
| 36 |
|
| 37 |
<div class="quick-access col-sm-7">
|
| 38 |
-
<
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
</div>
|
| 42 |
<?php echo $this->getChildHtml('topContainer'); ?>
|
| 43 |
</div>
|
| 35 |
</div>
|
| 36 |
|
| 37 |
<div class="quick-access col-sm-7">
|
| 38 |
+
<div class="row">
|
| 39 |
+
<div class="welcome-box col-sm-12 col-xs-4">
|
| 40 |
+
<p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getAdditionalHtml() ?></p>
|
| 41 |
+
</div>
|
| 42 |
+
<div class="toplink-div col-sm-12 col-xs-8">
|
| 43 |
+
<?php echo $this->getChildHtml('topLinks') ?>
|
| 44 |
+
<?php echo $this->getChildHtml('store_language') ?>
|
| 45 |
+
</div>
|
| 46 |
+
</div>
|
| 47 |
</div>
|
| 48 |
<?php echo $this->getChildHtml('topContainer'); ?>
|
| 49 |
</div>
|
app/design/frontend/default/responsive/template/page/html/topmenu.phtml
CHANGED
|
@@ -52,7 +52,7 @@
|
|
| 52 |
<?php if(Mage::getStoreConfig('setting/header/logo') != ''): ?>
|
| 53 |
<a class="navbar-brand" href="<?php echo $this->getBaseUrl(); ?>"><img height="50px" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'logo/' . Mage::getStoreConfig('setting/header/logo') ?>" alt="<?php echo Mage::getStoreConfig('setting/header/logoalt') ?>"></a>
|
| 54 |
<?php else: ?>
|
| 55 |
-
<a class="navbar-brand" href="<?php echo $this->getBaseUrl(); ?>">
|
| 56 |
<?php endif; ?>
|
| 57 |
</div>
|
| 58 |
<div class="nav-container collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
| 52 |
<?php if(Mage::getStoreConfig('setting/header/logo') != ''): ?>
|
| 53 |
<a class="navbar-brand" href="<?php echo $this->getBaseUrl(); ?>"><img height="50px" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'logo/' . Mage::getStoreConfig('setting/header/logo') ?>" alt="<?php echo Mage::getStoreConfig('setting/header/logoalt') ?>"></a>
|
| 54 |
<?php else: ?>
|
| 55 |
+
<a class="navbar-brand" href="<?php echo $this->getBaseUrl(); ?>">Companylogo</a>
|
| 56 |
<?php endif; ?>
|
| 57 |
</div>
|
| 58 |
<div class="nav-container collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
app/design/frontend/default/responsive/template/page/switch/languages.phtml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Magento
|
| 4 |
+
*
|
| 5 |
+
* NOTICE OF LICENSE
|
| 6 |
+
*
|
| 7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 9 |
+
* It is also available through the world-wide-web at this URL:
|
| 10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
| 11 |
+
* If you did not receive a copy of the license and are unable to
|
| 12 |
+
* obtain it through the world-wide-web, please send an email
|
| 13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
| 14 |
+
*
|
| 15 |
+
* DISCLAIMER
|
| 16 |
+
*
|
| 17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 18 |
+
* versions in the future. If you wish to customize Magento for your
|
| 19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 20 |
+
*
|
| 21 |
+
* @category design
|
| 22 |
+
* @package base_default
|
| 23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
+
*/
|
| 26 |
+
?>
|
| 27 |
+
<?php
|
| 28 |
+
/**
|
| 29 |
+
* Language switcher template
|
| 30 |
+
*
|
| 31 |
+
* @see Mage_Page_Block_Switch
|
| 32 |
+
*/
|
| 33 |
+
?>
|
| 34 |
+
<?php if(count($this->getStores())>1): ?>
|
| 35 |
+
<div class="form-language">
|
| 36 |
+
<?php echo $this->__('Store view') ?>
|
| 37 |
+
<select id="select-language" title="<?php echo $this->__('Your Language') ?>" onchange="window.location.href=this.value">
|
| 38 |
+
<?php foreach ($this->getStores() as $_lang): ?>
|
| 39 |
+
<?php $_selected = ($_lang->getId() == $this->getCurrentStoreId()) ? ' selected="selected"' : '' ?>
|
| 40 |
+
<option value="<?php echo $_lang->getCurrentUrl() ?>"<?php echo $_selected ?>><?php echo $this->escapeHtml($_lang->getName()) ?></option>
|
| 41 |
+
<?php endforeach; ?>
|
| 42 |
+
</select>
|
| 43 |
+
</div>
|
| 44 |
+
<?php endif; ?>
|
app/design/frontend/default/responsive/template/page/template/links.phtml
CHANGED
|
@@ -38,8 +38,10 @@
|
|
| 38 |
<?php else: ?>
|
| 39 |
<!-- check if item is My Cart -->
|
| 40 |
<?php if (strstr($_link->getLabel(), 'My Cart') != '') :?>
|
| 41 |
-
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?><i class="fa fa-sort-asc showminicart"></i></a><?php echo $_link->getAfterText() ?></li>
|
| 42 |
-
|
|
|
|
|
|
|
| 43 |
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li>
|
| 44 |
<?php endif ;?>
|
| 45 |
<?php endif;?>
|
| 38 |
<?php else: ?>
|
| 39 |
<!-- check if item is My Cart -->
|
| 40 |
<?php if (strstr($_link->getLabel(), 'My Cart') != '') :?>
|
| 41 |
+
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo '<i class="cart-icon fa fa-shopping-cart"></i>' . $_link->getLabel() ?><i class="fa fa-sort-asc showminicart"></i></a><?php echo $_link->getAfterText() ?></li>
|
| 42 |
+
<?php elseif (strstr($_link->getLabel(), 'Checkout') != '') :?>
|
| 43 |
+
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo '<i class="checkout-icon fa fa-check-square"></i> <span class="checkout-text">' . $_link->getLabel() . '</span>' ?></a><?php echo $_link->getAfterText() ?></li>
|
| 44 |
+
<?php else: ?>
|
| 45 |
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li>
|
| 46 |
<?php endif ;?>
|
| 47 |
<?php endif;?>
|
app/design/frontend/default/responsive/template/review/helper/summary.phtml
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Magento
|
| 4 |
+
*
|
| 5 |
+
* NOTICE OF LICENSE
|
| 6 |
+
*
|
| 7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 9 |
+
* It is also available through the world-wide-web at this URL:
|
| 10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
| 11 |
+
* If you did not receive a copy of the license and are unable to
|
| 12 |
+
* obtain it through the world-wide-web, please send an email
|
| 13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
| 14 |
+
*
|
| 15 |
+
* DISCLAIMER
|
| 16 |
+
*
|
| 17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 18 |
+
* versions in the future. If you wish to customize Magento for your
|
| 19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 20 |
+
*
|
| 21 |
+
* @category design
|
| 22 |
+
* @package base_default
|
| 23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
+
*/
|
| 26 |
+
?>
|
| 27 |
+
<?php if ($this->getReviewsCount()): ?>
|
| 28 |
+
<div class="ratings">
|
| 29 |
+
<?php if ($this->getRatingSummary()):?>
|
| 30 |
+
<div class="rating-box">
|
| 31 |
+
<div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
|
| 32 |
+
</div>
|
| 33 |
+
<?php endif;?>
|
| 34 |
+
<p class="rating-links">
|
| 35 |
+
<a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
|
| 36 |
+
<span class="separator">|</span>
|
| 37 |
+
<a href="<?php echo $this->getReviewsUrl() ?>#review-form" alt="add your review" title="add your review"><i class="fa fa-pencil-square-o"></i></a>
|
| 38 |
+
</p>
|
| 39 |
+
</div>
|
| 40 |
+
<?php elseif ($this->getDisplayIfEmpty()): ?>
|
| 41 |
+
<p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
|
| 42 |
+
<?php endif; ?>
|
app/etc/modules/Tvcom_Checkout.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tvcom_Checkout>
|
| 5 |
+
<active>true</active>
|
| 6 |
+
<codePool>local</codePool>
|
| 7 |
+
</Tvcom_Checkout>
|
| 8 |
+
</modules>
|
| 9 |
+
</config>
|
app/etc/modules/Tvcom_Wishlist.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tvcom_Wishlist>
|
| 5 |
+
<active>true</active>
|
| 6 |
+
<codePool>local</codePool>
|
| 7 |
+
</Tvcom_Wishlist>
|
| 8 |
+
</modules>
|
| 9 |
+
</config>
|
package.xml
CHANGED
|
@@ -1,20 +1,19 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>responsive</name>
|
| 4 |
-
<version>0.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Responsive theme for Magento Community</summary>
|
| 10 |
<description>Responsive theme for Magento Community</description>
|
| 11 |
-
<notes
|
| 12 |
-
|
| 13 |
-
fix the bug cant load styles.css on live server</notes>
|
| 14 |
<authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
|
| 15 |
-
<date>2014-02-
|
| 16 |
-
<time>
|
| 17 |
-
<contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="2791cf29aa19226e538a8ad38984c3dc"/></dir></dir><dir name="etc"><file name="config.xml" hash="
|
| 18 |
<compatible/>
|
| 19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 20 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>responsive</name>
|
| 4 |
+
<version>0.1.3</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Responsive theme for Magento Community</summary>
|
| 10 |
<description>Responsive theme for Magento Community</description>
|
| 11 |
+
<notes>- TopLink Icons
|
| 12 |
+
- UPS</notes>
|
|
|
|
| 13 |
<authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
|
| 14 |
+
<date>2014-02-13</date>
|
| 15 |
+
<time>09:34:38</time>
|
| 16 |
+
<contents><target name="magelocal"><dir name="Tvcom"><dir name="Checkout"><dir name="Block"><file name="Links.php" hash="834fd8bccc5addc9e064cb41999b1953"/></dir><dir name="etc"><file name="config.xml" hash="0f64ed1b38d6c042c971232bb9a4dc32"/></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="2791cf29aa19226e538a8ad38984c3dc"/><file name="Welcome.php" hash="b1cd77ea53caa2e3473a1dcaceded2ec"/></dir></dir><dir name="etc"><file name="config.xml" hash="0564cbbf86e324a4d877856167874e03"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/><dir name="Option"><file name="Footerlayout.php" hash="090b0ae1f016d981cf94865ec9be41b0"/><file name="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="db7138914a67c69ed0f00942bbaf104e"/><file name="system.xml" hash="307e96767d7d17f863ff70a373761927"/></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Links.php" hash="cce4090698606febae140553a9669c17"/></dir><dir name="etc"><file name="config.xml" hash="34a7946e942d408b5b0eef07d9511264"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tvcom_Page.xml" hash="6eb34161b3a13e001b1af7dea977f484"/><file name="Tvcom_Themecustom.xml" hash="742cda5cce51b8cb0cfebfe3075a06d9"/><file name="Tvcom_Checkout.xml" hash="ba2345c0bb1a258ef97e46c6ba64f961"/><file name="Tvcom_Wishlist.xml" hash="c77ddf27ba8becaa3054118f32dc4dd7"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="template"><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="dddbd500bce95df7e9422f9d2386ff47"/><file name="radio.phtml" hash="1028b2df56b8b34f9df9e1bfa01ac3bc"/></dir></dir></dir></dir></dir></dir></dir><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="214203502bb82c114adbf9922611ec12"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="6add573c5b0da1b80d0051c7d9c23cbb"/></dir><dir name="list"><file name="toolbar.phtml" hash="31dc277cefb618ca4b3887f94166b731"/><file name="upsell.phtml" hash="5230d7294058085d07c4423cae0b9108"/></dir><file name="list.phtml" hash="763c1f35bec678a2ebaccb54eff7f2da"/><dir name="view"><file name="addto.phtml" hash="d84144cbb6b1d14c2039c3388ab8d7b8"/><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/><file name="media.phtml" hash="1be8f4ea6e54f9a97e220f28931c4f50"/></dir><file name="view.phtml" hash="22bdbd648cebdc15fc130fecd02270f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="c69a3ed9870612b53560daae21f461b4"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="1700a70387393e29eddd97c6e96c6b10"/><dir name="item"><file name="default.phtml" hash="982a6b6f9889db37d04c8c77330e8cf4"/></dir><file name="shipping.phtml" hash="c985cdf397a55cc3bffa62d7f381a4a8"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="b4d576b3dc1bd2e0623f97d405f75dba"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/><dir name="review"><file name="button.phtml" hash="08ced3ff77fe2a821291adfbfb550aed"/><file name="info.phtml" hash="77a6d7af2da26472343105ecf8673699"/></dir><file name="shipping.phtml" hash="b250285eefc4925f9bdb4b9d5f6c27f1"/></dir><file name="success.phtml" hash="10ac42a5bfc041f65228ea192081b6ab"/></dir><dir name="contacts"><file name="form.phtml" hash="232fc97e58720dd8d871b6047df5b01e"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="d39ddf7d3dea541b3c08bd1717356a9f"/><file name="info.phtml" hash="9a0afc6868754390a9eb66f470ddafc3"/></dir></dir><dir name="address"><file name="book.phtml" hash="cb8beb5f539e7b942ee1820a2f800251"/><file name="edit.phtml" hash="2ab899d81183651eb86d1616c7e47dec"/></dir><dir name="form"><file name="edit.phtml" hash="dab5bb72d61cdcac15b9354ad54cefd7"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/><file name="newsletter.phtml" hash="6b49b91d1cb6a2182362b137bb00103a"/><file name="resetforgottenpassword.phtml" hash="930929e1d9d4a456a249ff3142386e14"/></dir><dir name="widget"><file name="name.phtml" hash="3aa7a542339bf2d64eddcb382ff85f45"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="80bcb1324ea096ae2f4b323e6a82ff05"/></dir><dir name="page"><file name="1column.phtml" hash="8f2578c19ae57f70ee3141d31f9f1a22"/><file name="2columns-left.phtml" hash="6ead24530145d1f7f9750b25dcf83d88"/><file name="2columns-right.phtml" hash="69012716b9e773a5357cc4be01159a4e"/><file name="3columns.phtml" hash="1fbf4e3a5c3bc3c6414bf28c9c57bc13"/><dir name="html"><file name="breadcrumbs.phtml" hash="69950f7471614541895d588ebb5ebd4c"/><file name="footer.phtml" hash="631c4e619218ae3f88a5f0d439e5f3ed"/><file name="head.phtml" hash="885015263f8013182ac011a38bb395f9"/><file name="header.phtml" hash="355da154ea936f8bc429b85d50169e96"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="4c6cdaae50ee7e0cb9664de6741c6713"/></dir><dir name="switch"><file name="languages.phtml" hash="e5fe88f43510dae0c3b6d041613b508f"/></dir><dir name="template"><file name="links.phtml" hash="2cc46e2d1b8df0e08c528c07436e209f"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f26b21cac8c142ba35ded5b08cdd6f05"/><file name="login.phtml" hash="7122df5630b7437e4da4e2c8713a8efd"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="094bd6f48256243281e4152b487a8510"/><file name="register.phtml" hash="4fb1808b870414a32b71b65b83dc5605"/></dir></dir></dir><dir name="poll"><file name="active.phtml" hash="cbaa4cf06b173ab28a5879e76016ca5e"/></dir><dir name="review"><file name="form.phtml" hash="184175fb22afaacfcd588aabf6380c74"/><dir name="helper"><file name="summary.phtml" hash="ea30e9f48a4fa4643c47e52a2e63881a"/></dir></dir><dir name="sales"><dir name="guest"><file name="form.phtml" hash="3a8f1de79b1e226d8a48d9ea1006625e"/></dir><dir name="order"><file name="history.phtml" hash="9fd12e237a9d991e69c0c7a6a8e5dd84"/><file name="info.phtml" hash="8dfda74e14c78f05edae029b174aa7b6"/><file name="recent.phtml" hash="43f16dbcfad82ee7ae055a897a277824"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="3183a9cf029313d803990083201f8636"/></dir></dir><dir name="tag"><file name="list.phtml" hash="9bfb661f1323fff54a0b9b507d18f85a"/></dir><dir name="tvtheme"><file name="cssconfig.phtml" hash="1dad0a360a2f4a5f58d400bed624a3c0"/><file name="networkshare.phtml" hash="b9a7dbfbbf197508d8642332c9936e73"/></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="cbcdee03ca80bf30c9c281f27c18a705"/><file name="tocart.phtml" hash="c4abc4a86cf3e939b6a6625985b37b32"/><file name="update.phtml" hash="ac22c73383aeebb8ab9621d009b354a1"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="68cb9103433c18123348e5584438fe03"/><file name="image.phtml" hash="6c01f5e8e925ac7224c1ecb9f7ddcb3b"/><file name="info.phtml" hash="014767f1334d5d9d73f2afaab104374e"/><file name="remove.phtml" hash="09cbe88cb373ccb9a61a5c76781abfbf"/></dir><file name="list.phtml" hash="55cdcb13a576b84498af79347dffc796"/></dir><file name="sidebar.phtml" hash="962f4fb81d680bbd6b236b200c7d317b"/></dir></dir><dir name="layout"><file name="catalog.xml" hash="589d4a550cc2e9a127574963f211ea1f"/><file name="catalogsearch.xml" hash="bd12d18c200b51e4f7fb4966fc467f38"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="cms.xml" hash="f05747c9355b79a501a67b4ccae31c0d"/><file name="customer.xml" hash="324d65d83265f8cba0714fa6f3517f9d"/><file name="newsletter.xml" hash="4c650fa3ee0f1f1610504de5fd1ad3b4"/><file name="page.xml" hash="bc05632d4a51065043d4ad700b0e9774"/><file name="paypal.xml" hash="6a17412a18ec4b860090f8fe31676b58"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="responsive"><dir name="layout"><file name="colorpicker.xml" hash="a7e0375e1a9c6715ef7955157202a6d3"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="css"><file name="responsive.css" hash="d5abd1850409a65c98cc23491a88391c"/><file name="styles.css" hash="612426d38b8ecc4a1ba3fa8edc5b0d67"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="free_shipping_callout.jpg" hash="476fc754dbcdd6a4259a885c5fcf307e"/><file name="home_main_callout.jpg" hash="0bb666dad9749423d4e8da6cd46467ac"/><file name="ph_callout_left_top.gif" hash="0f459871d68b62dd3252de29188199cf"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="prototype"><file name="prototype_bootstrap.js" hash="3fcb2fb515a2b67ee70fe53afbd2775f"/></dir></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 19 |
</package>
|
skin/frontend/default/responsive/css/carousel/slider.css
DELETED
|
@@ -1,36 +0,0 @@
|
|
| 1 |
-
/*
|
| 2 |
-
Document : slider
|
| 3 |
-
Created on : 30/01/2014, 12:02:16 PM
|
| 4 |
-
Author : tony vu
|
| 5 |
-
Description:
|
| 6 |
-
Purpose of the stylesheet follows.
|
| 7 |
-
*/
|
| 8 |
-
|
| 9 |
-
.carousel-fade .carousel-inner .item {
|
| 10 |
-
opacity: 0;
|
| 11 |
-
-webkit-transition-property: opacity;
|
| 12 |
-
-moz-transition-property: opacity;
|
| 13 |
-
-o-transition-property: opacity;
|
| 14 |
-
transition-property: opacity;
|
| 15 |
-
}
|
| 16 |
-
.carousel-fade .carousel-inner .active {
|
| 17 |
-
opacity: 1;
|
| 18 |
-
}
|
| 19 |
-
.carousel-fade .carousel-inner .active.left,
|
| 20 |
-
.carousel-fade .carousel-inner .active.right {
|
| 21 |
-
left: 0;
|
| 22 |
-
opacity: 0;
|
| 23 |
-
z-index: 1;
|
| 24 |
-
}
|
| 25 |
-
.carousel-fade .carousel-inner .next.left,
|
| 26 |
-
.carousel-fade .carousel-inner .prev.right {
|
| 27 |
-
opacity: 1;
|
| 28 |
-
}
|
| 29 |
-
.carousel-fade .carousel-control {
|
| 30 |
-
z-index: 2;
|
| 31 |
-
}
|
| 32 |
-
|
| 33 |
-
/* horizontal block on homepage */
|
| 34 |
-
.horizontalblk h3{text-transform: uppercase; color: #E26703}
|
| 35 |
-
.horizontalblk a{text-decoration: none;}
|
| 36 |
-
.horizontalblk a:hover{color:#444}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
skin/frontend/default/responsive/css/responsive.css
CHANGED
|
@@ -46,8 +46,11 @@
|
|
| 46 |
|
| 47 |
/* quick access nav */
|
| 48 |
.quick-access{text-align: left; padding-top: 15px; clear: both}
|
| 49 |
-
.header .links{
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
| 51 |
/* custoner login */
|
| 52 |
.registered-customer .required{text-align: left; margin-top: 10px}
|
| 53 |
|
|
@@ -83,13 +86,15 @@
|
|
| 83 |
|
| 84 |
/* footer */
|
| 85 |
.footer .footer-right{text-align: left}
|
|
|
|
|
|
|
| 86 |
}
|
| 87 |
|
| 88 |
/* Landscape phones and down */
|
| 89 |
@media (max-width: 480px) {
|
| 90 |
|
| 91 |
/* catalog category */
|
| 92 |
-
.block-subscribe, .block-compare, .block-poll, .block-viewed, .block-tags, .paypal-logo{display: none}
|
| 93 |
.col-main .category-image{display: none}
|
| 94 |
|
| 95 |
/* catalog product view */
|
|
@@ -105,4 +110,7 @@
|
|
| 105 |
.cart .title-buttons .checkout-types{float:left; margin-top: 10px;}
|
| 106 |
.order-review .buttons-set button.button{float: left; margin-left: 0}
|
| 107 |
|
|
|
|
|
|
|
|
|
|
| 108 |
}
|
| 46 |
|
| 47 |
/* quick access nav */
|
| 48 |
.quick-access{text-align: left; padding-top: 15px; clear: both}
|
| 49 |
+
.header .links{margin: 0px 0 6px}
|
| 50 |
+
.header .links .myaccount-text, .header .links .logout-text, .header .links .login-text, .header .links .cart-text, .header .links .checkout-text, .header .links .wishlist-text{display: none}
|
| 51 |
+
.header .links .myaccount-icon, .header .links .logout-icon, .header .links .login-icon, .header .links .cart-icon, .header .links .checkout-icon, .header .links .wishlist-icon{font-size: 1.5em}
|
| 52 |
+
.header .welcome-box{float: right; text-align: right}
|
| 53 |
+
.header .toplink-div{float: left; margin-bottom: 10px;}
|
| 54 |
/* custoner login */
|
| 55 |
.registered-customer .required{text-align: left; margin-top: 10px}
|
| 56 |
|
| 86 |
|
| 87 |
/* footer */
|
| 88 |
.footer .footer-right{text-align: left}
|
| 89 |
+
|
| 90 |
+
#popupcart{left: 15px;}
|
| 91 |
}
|
| 92 |
|
| 93 |
/* Landscape phones and down */
|
| 94 |
@media (max-width: 480px) {
|
| 95 |
|
| 96 |
/* catalog category */
|
| 97 |
+
.block-subscribe, .block-compare, .block-poll, .block-viewed, .block-tags, .paypal-logo, .block-wishlist{display: none}
|
| 98 |
.col-main .category-image{display: none}
|
| 99 |
|
| 100 |
/* catalog product view */
|
| 110 |
.cart .title-buttons .checkout-types{float:left; margin-top: 10px;}
|
| 111 |
.order-review .buttons-set button.button{float: left; margin-left: 0}
|
| 112 |
|
| 113 |
+
/* product review */
|
| 114 |
+
#product-review-table th{padding: 3px}
|
| 115 |
+
#product-review-table input[type="radio"]{margin:0; }
|
| 116 |
}
|
skin/frontend/default/responsive/css/styles.css
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
|
| 3 |
img { border:0; vertical-align:top; }
|
| 4 |
|
| 5 |
-
a { color:#1e7ec8; text-decoration:
|
| 6 |
-
a:hover { text-decoration:none; }
|
| 7 |
:focus { outline:0; }
|
| 8 |
|
| 9 |
/* Headings */
|
|
@@ -320,7 +320,7 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
|
|
| 320 |
.sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
|
| 321 |
|
| 322 |
/* Pager */
|
| 323 |
-
.pager-responsive { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x
|
| 324 |
.pager-responsive .amount {/* float:left; margin:0; */ text-align: left}
|
| 325 |
.pager-responsive .limiter {/* float:right; */ text-align: right}
|
| 326 |
.pager-responsive .limiter label { vertical-align:middle; }
|
|
@@ -489,7 +489,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 489 |
.header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
|
| 490 |
/*.header h1.logo { margin:0; }*/
|
| 491 |
.header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
|
| 492 |
-
.header .welcome-msg { margin-bottom:0; /*text-align:right; */ color:#
|
| 493 |
.header .welcome-msg a { color:#ebbc58; }
|
| 494 |
.header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
|
| 495 |
.header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
|
|
@@ -505,12 +505,13 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 505 |
.header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
|
| 506 |
.header #search_mini_form .caret{margin-left:7px}
|
| 507 |
.header #search_mini_form ul li a{text-decoration:none; text-align:left}
|
| 508 |
-
|
| 509 |
-
.header .form-language label { font-weight:bold; padding-right:5px
|
| 510 |
.header .form-language select { padding:0; }
|
| 511 |
-
.header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
|
| 512 |
.header .links { /*float:right; */margin:6px 0 6px; }
|
| 513 |
.header .links li { font-size:11px;/* float:left; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
|
|
|
|
| 514 |
.header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
|
| 515 |
.header-container .top-container a { font-size:11px; color:#ebbc58; }
|
| 516 |
|
|
@@ -528,7 +529,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 528 |
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
| 529 |
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
| 530 |
#nav li ul span {white-space:normal; }
|
| 531 |
-
#nav ul li.parent a {
|
| 532 |
#nav ul li.parent li a { background-image:none; }
|
| 533 |
*/
|
| 534 |
/* 0 Level */
|
|
@@ -648,7 +649,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 648 |
.block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
|
| 649 |
.block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
|
| 650 |
.block-layered-nav dt {/* background:url(../images/bkg_block-layered-dt.gif) 9px 11px no-repeat;*/ padding:7px 10px 0 7px; font-weight:bold; text-transform:uppercase; }
|
| 651 |
-
.block-layered-nav dd { padding:0
|
| 652 |
.block-layered-nav dd.last { background:none; }
|
| 653 |
.block-layered-nav .currently li { background:#fff/* url(../images/bkg_block-layered-li.gif) 0 100% repeat-x */; padding:4px 5px 2px 5px; position:relative; z-index:1; line-height:1.5; }
|
| 654 |
.block-layered-nav .currently .label { font-weight:bold; padding-left:15px; /* background:url(../images/bkg_block-layered-label.gif) 0 4px no-repeat;*/ text-transform:uppercase; display:inline-block; vertical-align:top; }
|
|
@@ -672,7 +673,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 672 |
.block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
|
| 673 |
|
| 674 |
/* Block: Wishlist */
|
| 675 |
-
.block-wishlist .block-title strong { background-image:url(../images/i_block-wishlist.gif); }
|
| 676 |
.block-wishlist .actions { text-align:right; }
|
| 677 |
.block-wishlist .actions a { float:none; }
|
| 678 |
|
|
@@ -729,7 +730,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 729 |
|
| 730 |
/* Block: Tags */
|
| 731 |
.block-tags .block-title strong {/* background-image:url(../images/i_block-tags.gif); */}
|
| 732 |
-
.block-tags .block-content .tags-list { background:none; border:0
|
| 733 |
.block-tags .block-content a { color:#1b2d3b; }
|
| 734 |
.block-tags .actions { text-align:right; }
|
| 735 |
.block-tags .actions a { float:none; }
|
|
@@ -779,13 +780,14 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 779 |
/* View Type: Grid */
|
| 780 |
/*.products-grid { border-bottom:1px solid #d9ddd3; background:url(../images/bkg_grid.gif) 0 0 repeat; position:relative; }*/
|
| 781 |
.products-grid.last { border-bottom:0; }
|
| 782 |
-
.products-grid li.item {/* float:left; width:138px; */padding:12px 10px
|
| 783 |
.products-grid .product-image { /*display:block; width:135px; height:135px; margin:0 0 10px; */}
|
| 784 |
.products-grid .product-name { /*min-height:2.7em; font-size:13px; */ margin:0 0 5px; font-weight:bold; color:#203548; }
|
| 785 |
.products-grid .product-name a { color:#203548; }
|
| 786 |
.products-grid .price-box { margin:5px 0; }
|
| 787 |
.products-grid .availability { line-height:21px; }
|
| 788 |
.products-grid .actions { position:absolute; bottom:12px; }
|
|
|
|
| 789 |
.col2-left-layout .products-grid,
|
| 790 |
.col2-right-layout .products-grid {/* width:632px; */margin:0 auto; }
|
| 791 |
.col1-layout .products-grid {/* width:790px; */margin:0 auto; }
|
|
@@ -961,7 +963,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 961 |
.add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
|
| 962 |
.add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
|
| 963 |
.add-to-box .add-to-links li { display:block !important; }
|
| 964 |
-
.add-to-box .add-to-links li .separator { display:none !important; }
|
| 965 |
|
| 966 |
|
| 967 |
.product-view { border:1px solid #c4c6c8; }
|
|
@@ -1008,8 +1010,8 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 1008 |
.product-view .product-shop .price-box { margin:10px 0; }
|
| 1009 |
.product-view .product-shop .add-to-links { margin:0; }
|
| 1010 |
.product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
|
| 1011 |
-
.product-view .product-shop .add-to-links li,
|
| 1012 |
.product-view .product-shop .add-to-links li .separator { display:inline; }
|
|
|
|
| 1013 |
.product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
|
| 1014 |
|
| 1015 |
/* Product Options */
|
|
@@ -1044,6 +1046,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 1044 |
.product-options-bottom .tier-prices .benefit { color:#e26703; }
|
| 1045 |
.product-options-bottom .price-box { float:left; margin:0; padding:0; }
|
| 1046 |
.product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
|
|
|
|
| 1047 |
.col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
|
| 1048 |
.product-options-bottom .price-label { float:left; padding-right:5px; }
|
| 1049 |
.product-options-bottom .price-tax { float:left; }
|
|
@@ -1053,7 +1056,8 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 1053 |
.product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
|
| 1054 |
.product-shop .product-options-bottom .price-tax { float:none; }
|
| 1055 |
.product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
|
| 1056 |
-
.product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right;
|
|
|
|
| 1057 |
|
| 1058 |
/* Grouped Product */
|
| 1059 |
.product-view .grouped-items-table .price-box { margin:0; padding:0; }
|
|
@@ -1076,7 +1080,8 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 1076 |
.product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; } */
|
| 1077 |
.product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
|
| 1078 |
.product-view .box-up-sell .products-grid .upsell-product{width: 185px; margin-right:10px}
|
| 1079 |
-
|
|
|
|
| 1080 |
/* Block: Tags */
|
| 1081 |
.product-view .box-tags { margin:0; }
|
| 1082 |
.product-view .box-tags h3 { font-size:13px; }
|
|
@@ -1123,8 +1128,8 @@ tr.summary-details-excluded { font-style:italic; }
|
|
| 1123 |
|
| 1124 |
/* Content Styles ================================================================= */
|
| 1125 |
.product-name { margin:0; font-size:1em; font-weight:normal; }
|
| 1126 |
-
.product-name a { color:#1e7ec8; }
|
| 1127 |
-
|
| 1128 |
/* Product Tags */
|
| 1129 |
.tags-list { display:block; font-size:13px; border:1px solid #c1c4bc; background:#f8f7f5; padding:10px; }
|
| 1130 |
.tags-list li { display:inline !important; margin:0 4px 0 0; }
|
| 2 |
|
| 3 |
img { border:0; vertical-align:top; }
|
| 4 |
|
| 5 |
+
a { color:#1e7ec8; text-decoration:none; }
|
| 6 |
+
a:hover { color:#434343; text-decoration:none; }
|
| 7 |
:focus { outline:0; }
|
| 8 |
|
| 9 |
/* Headings */
|
| 320 |
.sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
|
| 321 |
|
| 322 |
/* Pager */
|
| 323 |
+
.pager-responsive { font-size:11px; background:#fff /*url(../images/bkg_toolbar.gif) 0 100% repeat-x */; padding:0px 8px; /*border-top:1px solid #e2e2e2; */text-align:center; }
|
| 324 |
.pager-responsive .amount {/* float:left; margin:0; */ text-align: left}
|
| 325 |
.pager-responsive .limiter {/* float:right; */ text-align: right}
|
| 326 |
.pager-responsive .limiter label { vertical-align:middle; }
|
| 489 |
.header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
|
| 490 |
/*.header h1.logo { margin:0; }*/
|
| 491 |
.header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
|
| 492 |
+
.header .welcome-msg { margin-bottom:0; /*text-align:right; */ color:#888; }
|
| 493 |
.header .welcome-msg a { color:#ebbc58; }
|
| 494 |
.header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
|
| 495 |
.header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
|
| 505 |
.header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
|
| 506 |
.header #search_mini_form .caret{margin-left:7px}
|
| 507 |
.header #search_mini_form ul li a{text-decoration:none; text-align:left}
|
| 508 |
+
/*.header .form-language { clear:both; padding:5px 0 0; text-align:right; }
|
| 509 |
+
.header .form-language label { font-weight:bold; padding-right:5px; color:#a7c6dd; vertical-align:middle; }
|
| 510 |
.header .form-language select { padding:0; }
|
| 511 |
+
.header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }*/
|
| 512 |
.header .links { /*float:right; */margin:6px 0 6px; }
|
| 513 |
.header .links li { font-size:11px;/* float:left; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
|
| 514 |
+
.header .links li .item-count{color: #e26703}
|
| 515 |
.header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
|
| 516 |
.header-container .top-container a { font-size:11px; color:#ebbc58; }
|
| 517 |
|
| 529 |
#nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
|
| 530 |
#nav span { display:block; cursor:pointer; white-space:nowrap; }
|
| 531 |
#nav li ul span {white-space:normal; }
|
| 532 |
+
#nav ul li.parent a { background:url(../images/bkg_nav2.gif) 100% 100% no-repeat; }
|
| 533 |
#nav ul li.parent li a { background-image:none; }
|
| 534 |
*/
|
| 535 |
/* 0 Level */
|
| 649 |
.block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
|
| 650 |
.block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
|
| 651 |
.block-layered-nav dt {/* background:url(../images/bkg_block-layered-dt.gif) 9px 11px no-repeat;*/ padding:7px 10px 0 7px; font-weight:bold; text-transform:uppercase; }
|
| 652 |
+
.block-layered-nav dd { padding:0 7px 7px; /*background:url(../images/bkg_block-layered-dd.gif) 0 100% repeat-x; */}
|
| 653 |
.block-layered-nav dd.last { background:none; }
|
| 654 |
.block-layered-nav .currently li { background:#fff/* url(../images/bkg_block-layered-li.gif) 0 100% repeat-x */; padding:4px 5px 2px 5px; position:relative; z-index:1; line-height:1.5; }
|
| 655 |
.block-layered-nav .currently .label { font-weight:bold; padding-left:15px; /* background:url(../images/bkg_block-layered-label.gif) 0 4px no-repeat;*/ text-transform:uppercase; display:inline-block; vertical-align:top; }
|
| 673 |
.block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
|
| 674 |
|
| 675 |
/* Block: Wishlist */
|
| 676 |
+
.block-wishlist .block-title strong {/* background-image:url(../images/i_block-wishlist.gif); */}
|
| 677 |
.block-wishlist .actions { text-align:right; }
|
| 678 |
.block-wishlist .actions a { float:none; }
|
| 679 |
|
| 730 |
|
| 731 |
/* Block: Tags */
|
| 732 |
.block-tags .block-title strong {/* background-image:url(../images/i_block-tags.gif); */}
|
| 733 |
+
.block-tags .block-content .tags-list { background:none; border:0;/* font-size:12px; */}
|
| 734 |
.block-tags .block-content a { color:#1b2d3b; }
|
| 735 |
.block-tags .actions { text-align:right; }
|
| 736 |
.block-tags .actions a { float:none; }
|
| 780 |
/* View Type: Grid */
|
| 781 |
/*.products-grid { border-bottom:1px solid #d9ddd3; background:url(../images/bkg_grid.gif) 0 0 repeat; position:relative; }*/
|
| 782 |
.products-grid.last { border-bottom:0; }
|
| 783 |
+
.products-grid li.item {/* float:left; width:138px; */padding:12px 10px 60px; }
|
| 784 |
.products-grid .product-image { /*display:block; width:135px; height:135px; margin:0 0 10px; */}
|
| 785 |
.products-grid .product-name { /*min-height:2.7em; font-size:13px; */ margin:0 0 5px; font-weight:bold; color:#203548; }
|
| 786 |
.products-grid .product-name a { color:#203548; }
|
| 787 |
.products-grid .price-box { margin:5px 0; }
|
| 788 |
.products-grid .availability { line-height:21px; }
|
| 789 |
.products-grid .actions { position:absolute; bottom:12px; }
|
| 790 |
+
.products-grid .add-to-links li{float: left; margin-right: 5px}
|
| 791 |
.col2-left-layout .products-grid,
|
| 792 |
.col2-right-layout .products-grid {/* width:632px; */margin:0 auto; }
|
| 793 |
.col1-layout .products-grid {/* width:790px; */margin:0 auto; }
|
| 963 |
.add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
|
| 964 |
.add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
|
| 965 |
.add-to-box .add-to-links li { display:block !important; }
|
| 966 |
+
.add-to-box .add-to-links li .separator {/* display:none !important; */}
|
| 967 |
|
| 968 |
|
| 969 |
.product-view { border:1px solid #c4c6c8; }
|
| 1010 |
.product-view .product-shop .price-box { margin:10px 0; }
|
| 1011 |
.product-view .product-shop .add-to-links { margin:0; }
|
| 1012 |
.product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
|
|
|
|
| 1013 |
.product-view .product-shop .add-to-links li .separator { display:inline; }
|
| 1014 |
+
.product-view .product-shop .add-to-links li {float: left}
|
| 1015 |
.product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
|
| 1016 |
|
| 1017 |
/* Product Options */
|
| 1046 |
.product-options-bottom .tier-prices .benefit { color:#e26703; }
|
| 1047 |
.product-options-bottom .price-box { float:left; margin:0; padding:0; }
|
| 1048 |
.product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
|
| 1049 |
+
.product-options-bottom .add-to-links li{float: right; margin-right: 5px;}
|
| 1050 |
.col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
|
| 1051 |
.product-options-bottom .price-label { float:left; padding-right:5px; }
|
| 1052 |
.product-options-bottom .price-tax { float:left; }
|
| 1056 |
.product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
|
| 1057 |
.product-shop .product-options-bottom .price-tax { float:none; }
|
| 1058 |
.product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
|
| 1059 |
+
.product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right;}
|
| 1060 |
+
|
| 1061 |
|
| 1062 |
/* Grouped Product */
|
| 1063 |
.product-view .grouped-items-table .price-box { margin:0; padding:0; }
|
| 1080 |
.product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; } */
|
| 1081 |
.product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
|
| 1082 |
.product-view .box-up-sell .products-grid .upsell-product{width: 185px; margin-right:10px}
|
| 1083 |
+
.box-up-sell .jcarousel-prev, .box-up-sell .jcarousel-next{cursor: pointer; text-decoration: none; color: #203548;}
|
| 1084 |
+
.box-up-sell .jcarousel-prev:hover, .box-up-sell .jcarousel-next:hover{color:#c76200}
|
| 1085 |
/* Block: Tags */
|
| 1086 |
.product-view .box-tags { margin:0; }
|
| 1087 |
.product-view .box-tags h3 { font-size:13px; }
|
| 1128 |
|
| 1129 |
/* Content Styles ================================================================= */
|
| 1130 |
.product-name { margin:0; font-size:1em; font-weight:normal; }
|
| 1131 |
+
.product-name a { color:#1e7ec8; text-decoration: none}
|
| 1132 |
+
.product-name a:hover{color: #434343}
|
| 1133 |
/* Product Tags */
|
| 1134 |
.tags-list { display:block; font-size:13px; border:1px solid #c1c4bc; background:#f8f7f5; padding:10px; }
|
| 1135 |
.tags-list li { display:inline !important; margin:0 4px 0 0; }
|
