Version Notes
Allow Admin create topics answers. And allow your customers submit and search question.
Download this release
Release Info
Developer | Padoosoft |
Extension | padoo_faq |
Version | 1.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.4 to 1.0.5
- app/code/local/Padoo/Faq/controllers/SubmitController.php +11 -7
- app/code/local/Padoo/Faq/etc/config.xml +2 -2
- app/design/adminhtml/default/default/layout/padoo_faq.xml +13 -0
- app/design/adminhtml/default/default/template/padoofaq/faqs.phtml +50 -0
- app/design/frontend/{default → base}/default/layout/padoo_faq.xml +1 -1
- app/design/frontend/{default → base}/default/template/padoofaq/faq.phtml +0 -0
- app/design/frontend/base/default/template/padoofaq/faq_box.phtml +83 -0
- app/design/frontend/{default → base}/default/template/padoofaq/faq_group.phtml +0 -0
- app/design/frontend/{default → base}/default/template/padoofaq/js.phtml +0 -0
- app/design/frontend/{default → base}/default/template/padoofaq/search.phtml +0 -0
- app/design/frontend/{default → base}/default/template/padoofaq/searchresult.phtml +0 -0
- app/design/frontend/{default → base}/default/template/padoofaq/submit.phtml +0 -0
- app/etc/modules/Padoo_Faq.xml +0 -3
- package.xml +4 -4
- skin/frontend/{default → base}/default/css/faq/faq.css +0 -0
- skin/frontend/{default → base}/default/css/faq/label.css +0 -0
- skin/frontend/{default → base}/default/css/padoo/jquery-ui.css +0 -0
- skin/frontend/{default → base}/default/css/padoo/jquery.bxslider.css +0 -0
- skin/frontend/{default → base}/default/css/padoo/testimonial.css +0 -0
- skin/frontend/{default → base}/default/images/faq/bg-answer.gif +0 -0
- skin/frontend/{default → base}/default/images/faq/bg-question.gif +0 -0
- skin/frontend/{default → base}/default/images/faq/vbulletin_sprites.png +0 -0
- skin/frontend/{default → base}/default/js/faq/faq.js +0 -0
- skin/frontend/{default → base}/default/js/faq/jquery-1.3.2.min.js +0 -0
- skin/frontend/{default → base}/default/js/faq/jquery.js +0 -0
- skin/frontend/{default → base}/default/js/padoo/jquery.bxslider.js +0 -0
- skin/frontend/{default → base}/default/js/padoo/jquery.cycle.js +0 -0
- skin/frontend/default/default/css/padoo/onecheckout.css +0 -452
- skin/frontend/default/default/css/padoo/storelocator.css +0 -529
- skin/frontend/default/default/css/padoo/storelocator/navigation.png +0 -0
- skin/frontend/default/default/css/padoo/storelocator/navigation1.png +0 -0
- skin/frontend/default/default/css/padoo/storelocator/tag-bg.png +0 -0
- skin/frontend/default/default/css/padoo/storelocator/vssver2.scc +0 -0
- skin/frontend/default/default/css/padoo/tinybox.css +0 -3
app/code/local/Padoo/Faq/controllers/SubmitController.php
CHANGED
@@ -39,13 +39,17 @@ class Padoo_Faq_SubmitController extends Mage_Core_Controller_Front_Action
|
|
39 |
$validate = $faqitem->validate();
|
40 |
$formId = 'padoo_faq';
|
41 |
if ($validate === true) {
|
42 |
-
$
|
43 |
-
if ($
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
$this->
|
48 |
-
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
}
|
51 |
|
39 |
$validate = $faqitem->validate();
|
40 |
$formId = 'padoo_faq';
|
41 |
if ($validate === true) {
|
42 |
+
$magentoVersion = Mage::getVersion();
|
43 |
+
if (version_compare($magentoVersion, '1.7', '>=')){
|
44 |
+
//version is 1.7 or greater
|
45 |
+
$captchaModel = Mage::helper('captcha')->getCaptcha($formId);
|
46 |
+
if ($captchaModel->isRequired()) {
|
47 |
+
$word = $this->_getCaptchaString($this->getRequest(), $formId);
|
48 |
+
if (!$captchaModel->isCorrect($word)) {
|
49 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('captcha')->__('Incorrect CAPTCHA.'));
|
50 |
+
$this->_redirectReferer('');
|
51 |
+
return;
|
52 |
+
}
|
53 |
}
|
54 |
}
|
55 |
|
app/code/local/Padoo/Faq/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Padoo_Faq>
|
5 |
-
<version>1.0.
|
6 |
</Padoo_Faq>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -53,7 +53,7 @@
|
|
53 |
<always_for>
|
54 |
<faq>1</faq>
|
55 |
</always_for>
|
56 |
-
<forms>
|
57 |
</captcha>
|
58 |
</customer>
|
59 |
</default>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Padoo_Faq>
|
5 |
+
<version>1.0.5</version>
|
6 |
</Padoo_Faq>
|
7 |
</modules>
|
8 |
<frontend>
|
53 |
<always_for>
|
54 |
<faq>1</faq>
|
55 |
</always_for>
|
56 |
+
<forms>faq</forms>
|
57 |
</captcha>
|
58 |
</customer>
|
59 |
</default>
|
app/design/adminhtml/default/default/layout/padoo_faq.xml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="1.0.0">
|
3 |
+
<faq_adminhtml_faq_index>
|
4 |
+
<reference name="content">
|
5 |
+
<block type="faq/adminhtml_faq" name="faq"/>
|
6 |
+
</reference>
|
7 |
+
</faq_adminhtml_faq_index>
|
8 |
+
<faq_adminhtml_faqgroup_index>
|
9 |
+
<reference name="content">
|
10 |
+
<block type="faq/adminhtml_faqgroup" name="faqgroup"/>
|
11 |
+
</reference>
|
12 |
+
</faq_adminhtml_faqgroup_index>
|
13 |
+
</layout>
|
app/design/adminhtml/default/default/template/padoofaq/faqs.phtml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php echo $this->getTabsHtml() ?>
|
2 |
+
<script type="text/javascript">
|
3 |
+
//<![CDATA[
|
4 |
+
function load_banner_funcs(){
|
5 |
+
<?php if (($block = $this->getLayout()->getBlock('faqgroup.grid.faq')) && ($_gridJsObject = $block->getJsObjectName())): ?>
|
6 |
+
if(!$('in_faqgroup_faqs')){
|
7 |
+
setTimeout('load_banner_funcs()',500);
|
8 |
+
return false;
|
9 |
+
}
|
10 |
+
var selectedBanners=$H(<?php echo $this->getBannersJson(); ?>);
|
11 |
+
$('in_faqgroup_faqs').value = selectedBanners.toQueryString();
|
12 |
+
|
13 |
+
function registerSelectedBanner(grid, element, checked){
|
14 |
+
if(checked){
|
15 |
+
selectedBanners.set(element.value, element.value);
|
16 |
+
}
|
17 |
+
else{
|
18 |
+
selectedBanners.unset(element.value);
|
19 |
+
}
|
20 |
+
$('in_faqgroup_faqs').value = selectedBanners.toQueryString();
|
21 |
+
grid.reloadParams = {'selected_faqs[]':selectedBanners.keys()};
|
22 |
+
}
|
23 |
+
function selectedBannerRowClick(grid, event){
|
24 |
+
var trElement = Event.findElement(event, 'tr');
|
25 |
+
var isInput = Event.element(event).tagName == 'INPUT';
|
26 |
+
if(trElement){
|
27 |
+
var checkbox = Element.getElementsBySelector(trElement, 'input');
|
28 |
+
if(checkbox[0]){
|
29 |
+
var checked = isInput ? checkbox[0].checked : !checkbox[0].checked;
|
30 |
+
<?php echo $_gridJsObject ?>.setCheckboxChecked(checkbox[0], checked);
|
31 |
+
}
|
32 |
+
}
|
33 |
+
}
|
34 |
+
|
35 |
+
var tabIndex = 1000;
|
36 |
+
function selectedBannerRowInit(grid, row){
|
37 |
+
var checkbox = $(row).getElementsByClassName('checkbox')[0];
|
38 |
+
}
|
39 |
+
|
40 |
+
|
41 |
+
<?php echo $_gridJsObject ?>.rowClickCallback = selectedBannerRowClick;
|
42 |
+
<?php echo $_gridJsObject ?>.initRowCallback = selectedBannerRowInit;
|
43 |
+
<?php echo $_gridJsObject ?>.checkboxCheckCallback = registerSelectedBanner;
|
44 |
+
<?php echo $_gridJsObject ?>.rows.each(function(row){selectedBannerRowInit(<?php echo $_gridJsObject ?>, row)});
|
45 |
+
|
46 |
+
<?php endif; ?>
|
47 |
+
}
|
48 |
+
load_banner_funcs();
|
49 |
+
//]]>
|
50 |
+
</script>
|
app/design/frontend/{default → base}/default/layout/padoo_faq.xml
RENAMED
@@ -72,7 +72,7 @@
|
|
72 |
<reference name="head">
|
73 |
<action method="addJs"><file>mage/captcha.js</file></action>
|
74 |
</reference>
|
75 |
-
<action method="setFormId"><formId>
|
76 |
<action method="setImgWidth"><width>230</width></action>
|
77 |
<action method="setImgHeight"><width>50</width></action>
|
78 |
</block>
|
72 |
<reference name="head">
|
73 |
<action method="addJs"><file>mage/captcha.js</file></action>
|
74 |
</reference>
|
75 |
+
<action method="setFormId"><formId>faq</formId></action>
|
76 |
<action method="setImgWidth"><width>230</width></action>
|
77 |
<action method="setImgHeight"><width>50</width></action>
|
78 |
</block>
|
app/design/frontend/{default → base}/default/template/padoofaq/faq.phtml
RENAMED
File without changes
|
app/design/frontend/base/default/template/padoofaq/faq_box.phtml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Padoo Co.
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0).
|
8 |
+
* It is available through the world-wide-web at this URL:
|
9 |
+
* http://opensource.org/licenses/osl-3.0.php
|
10 |
+
* If you are unable to obtain it through the world-wide-web, please send
|
11 |
+
* an email to info@padoo.com so we can send you a copy immediately.
|
12 |
+
*
|
13 |
+
* @category Padoo
|
14 |
+
* @package Padoo_FAQ
|
15 |
+
* @copyright Copyright (c) 2010-2012 Padoo Co. (http://padoo.com)
|
16 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
17 |
+
*/
|
18 |
+
|
19 |
+
/**
|
20 |
+
* side box template of faq
|
21 |
+
*/
|
22 |
+
?>
|
23 |
+
<?php
|
24 |
+
$data = $this->getDataByGroup();
|
25 |
+
?>
|
26 |
+
<?php if (Mage::getStoreConfig('faq/general/enable')): ?>
|
27 |
+
<div class="block faq-sidebar">
|
28 |
+
<div class="block-title">
|
29 |
+
<strong><span><?php echo $this->__('Faq') ?></span></strong>
|
30 |
+
</div>
|
31 |
+
<div class="block-content">
|
32 |
+
<div id="slideshow_faq">
|
33 |
+
<?php $i=0;foreach ($data as $record): ?>
|
34 |
+
<?php $groupId = $record->getGroupId(); ?>
|
35 |
+
<?php
|
36 |
+
$faqs = $this->getFaqs();
|
37 |
+
$totalItem = count($faqs);
|
38 |
+
foreach($faqs as $faq) :
|
39 |
+
$arrGroups = explode(',',$faq->getGroupId());
|
40 |
+
if(in_array($groupId,$arrGroups)){
|
41 |
+
?>
|
42 |
+
<?php if(!Mage::getStoreConfig('faq/general/effects') && $i >2 ) break; ?>
|
43 |
+
<div class="sidebar-box <?php if($i++ == $last): ?>last<?php endif; ?>">
|
44 |
+
<div class="sidebar-question">
|
45 |
+
<?php
|
46 |
+
$length = 50;
|
47 |
+
$ques = $this->stripTags($faq->getFaq());
|
48 |
+
$ques = strlen($ques) > $length ? substr($ques,0, $length) .' ...' : $ques;
|
49 |
+
echo $ques;
|
50 |
+
?>
|
51 |
+
</div>
|
52 |
+
<div class="sidebar-text">
|
53 |
+
<?php
|
54 |
+
$length = 100;
|
55 |
+
$des = $this->stripTags($faq->getBody());
|
56 |
+
$des = strlen($des) > $length ? substr($des,0, $length) .' ...' : $des;
|
57 |
+
echo $des;
|
58 |
+
?>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
<?php } ?>
|
62 |
+
<?php endforeach; ?>
|
63 |
+
<?php $i++;endforeach; ?>
|
64 |
+
</div>
|
65 |
+
<div class="actions">
|
66 |
+
<a href="<?php echo $this->getUrl('faq'); ?>"><?php echo $this->__('All Faqs'); ?></a>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
<?php if(Mage::getStoreConfig('faq/general/effects')): ?>
|
71 |
+
<script type="text/javascript">
|
72 |
+
var effect_slide_faq = "<?php echo Mage::getStoreConfig('faq/general/effects_type'); ?>";
|
73 |
+
var effect_time_faq = "<?php echo Mage::getStoreConfig('faq/general/time_effect') ? Mage::getStoreConfig('faq/general/time_effect') : 0 ?>" * 1000;
|
74 |
+
jQuery(document).ready(function() {
|
75 |
+
jQuery('#slideshow_faq').cycle({
|
76 |
+
//fade, fadeZoom, cover, uncover, shuffle, zoom, wipe, toss, turnDown, turnUp, scrollDown, scrollUp .
|
77 |
+
fx: effect_slide_faq,
|
78 |
+
timeout: effect_time_faq
|
79 |
+
});
|
80 |
+
});
|
81 |
+
</script>
|
82 |
+
<?php endif; ?>
|
83 |
+
<?php endif; ?>
|
app/design/frontend/{default → base}/default/template/padoofaq/faq_group.phtml
RENAMED
File without changes
|
app/design/frontend/{default → base}/default/template/padoofaq/js.phtml
RENAMED
File without changes
|
app/design/frontend/{default → base}/default/template/padoofaq/search.phtml
RENAMED
File without changes
|
app/design/frontend/{default → base}/default/template/padoofaq/searchresult.phtml
RENAMED
File without changes
|
app/design/frontend/{default → base}/default/template/padoofaq/submit.phtml
RENAMED
File without changes
|
app/etc/modules/Padoo_Faq.xml
CHANGED
@@ -4,9 +4,6 @@
|
|
4 |
<Padoo_Faq>
|
5 |
<active>true</active>
|
6 |
<codePool>local</codePool>
|
7 |
-
<depends>
|
8 |
-
<Padoo_Pcore/>
|
9 |
-
</depends>
|
10 |
</Padoo_Faq>
|
11 |
</modules>
|
12 |
</config>
|
4 |
<Padoo_Faq>
|
5 |
<active>true</active>
|
6 |
<codePool>local</codePool>
|
|
|
|
|
|
|
7 |
</Padoo_Faq>
|
8 |
</modules>
|
9 |
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>padoo_faq</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -60,9 +60,9 @@ To False
|
|
60 |
</div></description>
|
61 |
<notes>Allow Admin create topics answers. And allow your customers submit and search question.</notes>
|
62 |
<authors><author><name>Padoosoft</name><user>MageAddons82</user><email>stdspace@gmail.com</email></author></authors>
|
63 |
-
<date>2016-
|
64 |
-
<time>
|
65 |
-
<contents><target name="magelocal"><dir name="Padoo"><dir name="Faq"><dir name="Block"><dir name="Adminhtml"><dir name="Faq"><dir name="Edit"><file name="Form.php" hash="93f1a80648b54563a4e1e4850d3c6fd2"/><dir name="Tab"><file name="Form.php" hash="a397d40f65464acc18a3d73d33f241ba"/></dir><file name="Tabs.php" hash="2e86e10b6a1e4b449a68bf4e443197aa"/></dir><file name="Edit.php" hash="e077fd1f8fa7723f3b8c20c2b6663b74"/><file name="Grid.php" hash="5a8cd6f850a1241f17cc6aa029b3779a"/></dir><file name="Faq.php" hash="96510fd75bd33556b3fd73d1e66eb2f9"/><dir name="Faqgroup"><dir name="Edit"><file name="Form.php" hash="659297097bc7dbcc7f5648b3257ea192"/><dir name="Tab"><file name="Faq.php" hash="bd9c48fed2658787db0d02457961b7b3"/><file name="Form.php" hash="1dca67e0a4d6fb989b88f752bb67190a"/><file name="Gridfaq.php" hash="e72fc7a9c103d081adb77b449f65f113"/><file name="_Gridfaq.php" hash="e72fc7a9c103d081adb77b449f65f113"/></dir><file name="Tabs.php" hash="29f4588133c5b1535b34df9e489475de"/></dir><file name="Edit.php" hash="12a24ccc3fe368942a48b7596928876a"/><file name="Grid.php" hash="ee8cf8526a668a09740d5458bda422ca"/></dir><file name="Faqgroup.php" hash="eaea17115b814250e865ca7caf3c1fb9"/><dir name="Widget"><dir name="Grid"><file name="Column.php" hash="04f8db550ac1073f227f5648499fcf62"/></dir><file name="Grid.php" hash="a53292e4f0d8e5dba887e3a0d2109832"/></dir></dir><file name="Faq.php" hash="c3692ef0f98962d1e0a21c566968f379"/><file name="Searchfaq.php" hash="c542d4825487c00fcd6de5fd506426d1"/></dir><dir name="Helper"><file name="Data.php" hash="ea24883dc88a8c7a335bcc1e84780ccc"/></dir><dir name="Model"><file name="Faq.php" hash="dccdf5982e6bf20d9a1b3fa99c60e491"/><file name="Faqgroup.php" hash="dec59e429f37ef757248d4d7f8f06b71"/><dir name="Mysql4"><dir name="Faq"><file name="Collection.php" hash="12df56757c989a45a794d856103c9cd4"/></dir><file name="Faq.php" hash="237400041bd67faaf94fc407d4c6baa0"/><dir name="Faqgroup"><file name="Collection.php" hash="6d1b50122359eefcfb57b03735ee951f"/></dir><file name="Faqgroup.php" hash="1a179f09e1d04f8efd48b76b4bfaf925"/></dir><file name="Status.php" hash="098c68332efa6a151271cd8382f06a1f"/><dir name="Wysiwyg"><file name="Config.php" hash="0008426aba15e4cf7c2781ab66f29f41"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="FaqController.php" hash="6d10e85ecbd2dea93e1880d0a4080d9b"/><file name="FaqgroupController.php" hash="50e3db8bca66f6e55704791596c46d56"/></dir><file name="IndexController.php" hash="ada992be7d620d39ff7aa4c2a12dee9a"/><file name="SearchController.php" hash="e8ac3d510aff4366112cd0edf3faf2a2"/><file name="SubmitController.php" hash="
|
66 |
<compatible/>
|
67 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
68 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>padoo_faq</name>
|
4 |
+
<version>1.0.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
60 |
</div></description>
|
61 |
<notes>Allow Admin create topics answers. And allow your customers submit and search question.</notes>
|
62 |
<authors><author><name>Padoosoft</name><user>MageAddons82</user><email>stdspace@gmail.com</email></author></authors>
|
63 |
+
<date>2016-09-06</date>
|
64 |
+
<time>08:22:06</time>
|
65 |
+
<contents><target name="magelocal"><dir name="Padoo"><dir name="Faq"><dir name="Block"><dir name="Adminhtml"><dir name="Faq"><dir name="Edit"><file name="Form.php" hash="93f1a80648b54563a4e1e4850d3c6fd2"/><dir name="Tab"><file name="Form.php" hash="a397d40f65464acc18a3d73d33f241ba"/></dir><file name="Tabs.php" hash="2e86e10b6a1e4b449a68bf4e443197aa"/></dir><file name="Edit.php" hash="e077fd1f8fa7723f3b8c20c2b6663b74"/><file name="Grid.php" hash="5a8cd6f850a1241f17cc6aa029b3779a"/></dir><file name="Faq.php" hash="96510fd75bd33556b3fd73d1e66eb2f9"/><dir name="Faqgroup"><dir name="Edit"><file name="Form.php" hash="659297097bc7dbcc7f5648b3257ea192"/><dir name="Tab"><file name="Faq.php" hash="bd9c48fed2658787db0d02457961b7b3"/><file name="Form.php" hash="1dca67e0a4d6fb989b88f752bb67190a"/><file name="Gridfaq.php" hash="e72fc7a9c103d081adb77b449f65f113"/><file name="_Gridfaq.php" hash="e72fc7a9c103d081adb77b449f65f113"/></dir><file name="Tabs.php" hash="29f4588133c5b1535b34df9e489475de"/></dir><file name="Edit.php" hash="12a24ccc3fe368942a48b7596928876a"/><file name="Grid.php" hash="ee8cf8526a668a09740d5458bda422ca"/></dir><file name="Faqgroup.php" hash="eaea17115b814250e865ca7caf3c1fb9"/><dir name="Widget"><dir name="Grid"><file name="Column.php" hash="04f8db550ac1073f227f5648499fcf62"/></dir><file name="Grid.php" hash="a53292e4f0d8e5dba887e3a0d2109832"/></dir></dir><file name="Faq.php" hash="c3692ef0f98962d1e0a21c566968f379"/><file name="Searchfaq.php" hash="c542d4825487c00fcd6de5fd506426d1"/></dir><dir name="Helper"><file name="Data.php" hash="ea24883dc88a8c7a335bcc1e84780ccc"/></dir><dir name="Model"><file name="Faq.php" hash="dccdf5982e6bf20d9a1b3fa99c60e491"/><file name="Faqgroup.php" hash="dec59e429f37ef757248d4d7f8f06b71"/><dir name="Mysql4"><dir name="Faq"><file name="Collection.php" hash="12df56757c989a45a794d856103c9cd4"/></dir><file name="Faq.php" hash="237400041bd67faaf94fc407d4c6baa0"/><dir name="Faqgroup"><file name="Collection.php" hash="6d1b50122359eefcfb57b03735ee951f"/></dir><file name="Faqgroup.php" hash="1a179f09e1d04f8efd48b76b4bfaf925"/></dir><file name="Status.php" hash="098c68332efa6a151271cd8382f06a1f"/><dir name="Wysiwyg"><file name="Config.php" hash="0008426aba15e4cf7c2781ab66f29f41"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="FaqController.php" hash="6d10e85ecbd2dea93e1880d0a4080d9b"/><file name="FaqgroupController.php" hash="50e3db8bca66f6e55704791596c46d56"/></dir><file name="IndexController.php" hash="ada992be7d620d39ff7aa4c2a12dee9a"/><file name="SearchController.php" hash="e8ac3d510aff4366112cd0edf3faf2a2"/><file name="SubmitController.php" hash="47eafa363ffefd1e7cfd0d04addd0aff"/></dir><dir name="etc"><file name="adminhtml.xml" hash="109fc5e1f2b9b55e283265947e9c658c"/><file name="config.xml" hash="54ff79a62b4c6f2623842e1c407edfee"/><file name="system.xml" hash="ffe9ab472a66915732aeb8726fc7f79d"/></dir><dir name="sql"><dir name="faq_setup"><file name="mysql4-install-1.0.0.php" hash="0a96315166e8e9bd7490acca8c93bf76"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="99d4f2aa3e42606091535de4511eec96"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="45c45a821b5ab58c7957f5e0fb8717cc"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Padoo_Faq.xml" hash="bc69088163f9a276afbcb65ebfa8728e"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="padoo_faq.xml" hash="c7d3d56e23f6ae72056640d08ed4c211"/></dir><dir name="template"><dir name="padoofaq"><file name="faq.phtml" hash="c7ee1d1a5e168ce6d65e51065fc79f15"/><file name="faq_box.phtml" hash="0eb3e3862b55f1554e06d525750be2fc"/><file name="faq_group.phtml" hash="4e14a92d5fc517c24fbf88d19d49b9ef"/><file name="js.phtml" hash="db1fa4fcfc639a28a4a4b884f40649d5"/><file name="search.phtml" hash="928a5b5973e306f00fb69d3cf74bb04f"/><file name="searchresult.phtml" hash="28bae2892db4405e096bd499f50a29bf"/><file name="submit.phtml" hash="8e555c816242b8260eabbe3bba72fb29"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="padoo_faq.xml" hash="7d236067254a8f5071680be6e43a5806"/></dir><dir name="template"><dir name="padoofaq"><file name="faqs.phtml" hash="35bd9fa5666db53a2215b6801f7fccad"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Padoo_Faq.csv" hash="6defcec67ba4f06573d97a545b5dad82"/></dir></target><target name="mage"><dir name="js"><dir name="padoo"><file name="checkValue.js" hash="963c1c86bbd0462be3c4793399a86024"/><file name="jquery.js" hash="b08031186fb28716dcbb38bcbd3ace0d"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><file name="scriptaculous.js" hash="b592273cfa1d97643325ad77f7030879"/><file name="simplecheckout.js" hash="7158c0b30c4fbf2cbfc9b87c3f065043"/><file name="storelocator.js" hash="4cd94ab10a4cd421fff843a3854f71c4"/><file name="tinybox.js" hash="7e8a0b5f8e639947f494c9668caa169c"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="faq"><file name="faq.css" hash="54a1020deae47a785ec03c78cad6e230"/><file name="label.css" hash="0f7a40cc43673394cd81672c24ad0631"/></dir><dir name="padoo"><file name="jquery-ui.css" hash="c932ef4ca169d744a94855e65fa39531"/><file name="jquery.bxslider.css" hash="951b49dc2e2d9639063f8d74fae1c8f9"/><file name="testimonial.css" hash="11f853c031875b77b31ff818bccd8682"/></dir></dir><dir name="images"><dir name="faq"><file name="bg-answer.gif" hash="d9f4183b7dd6fe3d97dbfe2969c73134"/><file name="bg-question.gif" hash="475be89d7286debf1e46fd21fd7a059d"/><file name="vbulletin_sprites.png" hash="1215f199cba0d6d4e9379fafc3bbfea1"/></dir></dir><dir name="js"><dir name="faq"><file name="faq.js" hash="ee385c26a2f8e7ae62c56a5365d19ea7"/><file name="jquery-1.3.2.min.js" hash="7d91ff87b2c0439ac76c5af0bccb877b"/><file name="jquery.js" hash="23ba6db947a7a48ddaeab3164537dd55"/></dir><dir name="padoo"><file name="jquery.bxslider.js" hash="eea4ef92150fe92c5e75aef6507d06cf"/><file name="jquery.cycle.js" hash="ce83808c0a5a3fd7143adc6fdd6295f3"/></dir></dir></dir></dir></dir></target></contents>
|
66 |
<compatible/>
|
67 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
68 |
</package>
|
skin/frontend/{default → base}/default/css/faq/faq.css
RENAMED
File without changes
|
skin/frontend/{default → base}/default/css/faq/label.css
RENAMED
File without changes
|
skin/frontend/{default → base}/default/css/padoo/jquery-ui.css
RENAMED
File without changes
|
skin/frontend/{default → base}/default/css/padoo/jquery.bxslider.css
RENAMED
File without changes
|
skin/frontend/{default → base}/default/css/padoo/testimonial.css
RENAMED
File without changes
|
skin/frontend/{default → base}/default/images/faq/bg-answer.gif
RENAMED
File without changes
|
skin/frontend/{default → base}/default/images/faq/bg-question.gif
RENAMED
File without changes
|
skin/frontend/{default → base}/default/images/faq/vbulletin_sprites.png
RENAMED
File without changes
|
skin/frontend/{default → base}/default/js/faq/faq.js
RENAMED
File without changes
|
skin/frontend/{default → base}/default/js/faq/jquery-1.3.2.min.js
RENAMED
File without changes
|
skin/frontend/{default → base}/default/js/faq/jquery.js
RENAMED
File without changes
|
skin/frontend/{default → base}/default/js/padoo/jquery.bxslider.js
RENAMED
File without changes
|
skin/frontend/{default → base}/default/js/padoo/jquery.cycle.js
RENAMED
File without changes
|
skin/frontend/default/default/css/padoo/onecheckout.css
DELETED
@@ -1,452 +0,0 @@
|
|
1 |
-
@import "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css";
|
2 |
-
.onecheckout-onepage-wrap{
|
3 |
-
/* position:relative; */
|
4 |
-
}
|
5 |
-
#load-info-overlay{
|
6 |
-
position:relative;
|
7 |
-
background:url('../../images/ecommerceteam/loadinfo.gif') 50% 50% no-repeat #fff;
|
8 |
-
opacity:0.8;
|
9 |
-
filter: alpha(opacity=50);
|
10 |
-
width:100%;
|
11 |
-
z-index:255;
|
12 |
-
display:none;
|
13 |
-
}
|
14 |
-
#sln-overlay-methods .img-load {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
.img-load {
|
18 |
-
background:url('../../images/padoo/ajax-loader-tr.gif') no-repeat;
|
19 |
-
width: 32px;
|
20 |
-
height: 32px;
|
21 |
-
position:absolute;
|
22 |
-
right: 0;
|
23 |
-
left:0;
|
24 |
-
bottom:0;
|
25 |
-
top:0;
|
26 |
-
margin:auto;
|
27 |
-
}
|
28 |
-
#onecheckout-form-wrap form{
|
29 |
-
zoom:1;
|
30 |
-
}
|
31 |
-
#onecheckout-form-wrap form ul{
|
32 |
-
margin:0;
|
33 |
-
padding:5px 10px;
|
34 |
-
list-style:none;
|
35 |
-
|
36 |
-
}
|
37 |
-
|
38 |
-
#onecheckout-form-wrap form ul.right{
|
39 |
-
margin-right:38px;
|
40 |
-
}
|
41 |
-
|
42 |
-
#onecheckout-form-wrap .address-form-list li{
|
43 |
-
clear:both;
|
44 |
-
zoom:1;
|
45 |
-
}
|
46 |
-
#onecheckout-form-wrap .address-form-list label{
|
47 |
-
display:inline;
|
48 |
-
float:left;
|
49 |
-
width:130px;
|
50 |
-
text-align:left;
|
51 |
-
}
|
52 |
-
|
53 |
-
#onecheckout-form-wrap .form-list label.required em{
|
54 |
-
color: #eb340a;
|
55 |
-
float: left;
|
56 |
-
font-style: normal;
|
57 |
-
position:initial;
|
58 |
-
}
|
59 |
-
|
60 |
-
#onecheckout-form-wrap.onecheckout-3columns .address-form-list label{
|
61 |
-
width:110px;
|
62 |
-
}
|
63 |
-
|
64 |
-
#onecheckout-form-wrap .address-form-list .field {
|
65 |
-
width:auto;
|
66 |
-
}
|
67 |
-
#onecheckout-form-wrap .address-form-list .field .input-box{
|
68 |
-
clear:none;
|
69 |
-
width:auto;
|
70 |
-
float:left;
|
71 |
-
}
|
72 |
-
#onecheckout-form-wrap .easy-step{
|
73 |
-
display:block;
|
74 |
-
clear:both;
|
75 |
-
border:1px solid #ccc;
|
76 |
-
background:url('../../images/ecommerceteam/block.gif') 0 0 repeat-x #fff;
|
77 |
-
margin: 0 0 10px;
|
78 |
-
padding: 0 0 10px;
|
79 |
-
}
|
80 |
-
#onecheckout-shipping-payment-step{
|
81 |
-
width:100%;
|
82 |
-
margin-bottom:10px;
|
83 |
-
position:relative;
|
84 |
-
}
|
85 |
-
|
86 |
-
#onecheckout-shipping-payment-step td{
|
87 |
-
border:1px solid #ccc;
|
88 |
-
|
89 |
-
}
|
90 |
-
#onecheckout-shipping-payment-step td.shipping-method,
|
91 |
-
#onecheckout-shipping-payment-step td.payment-method{
|
92 |
-
background:#fff;
|
93 |
-
}
|
94 |
-
#onecheckout-shipping-payment-step td.methods-separator{
|
95 |
-
width:10px;
|
96 |
-
border:0;
|
97 |
-
}
|
98 |
-
#onecheckout-shipping-payment-step td.shipping-method{
|
99 |
-
width:40%;
|
100 |
-
}
|
101 |
-
#onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method{
|
102 |
-
width:250px;
|
103 |
-
}
|
104 |
-
#onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method .easy-step{
|
105 |
-
width:220px;
|
106 |
-
}
|
107 |
-
#onecheckout-form-wrap.onecheckout-3columns #onecheckout-shipping-payment-step td.shipping-method .input-text{
|
108 |
-
width:215px;
|
109 |
-
}
|
110 |
-
#onecheckout-form-wrap .easy-step h2{
|
111 |
-
/* color:#E26703; */
|
112 |
-
font-size:16px;
|
113 |
-
font-weight:900;
|
114 |
-
margin:0;
|
115 |
-
padding: 10px;
|
116 |
-
}
|
117 |
-
#onecheckout-form-wrap .easy-step h2 span{
|
118 |
-
color:#333;
|
119 |
-
font-weight:100;
|
120 |
-
text-transform:none;
|
121 |
-
}
|
122 |
-
#onecheckout-form-wrap .easy-step h2 label{
|
123 |
-
display: block;
|
124 |
-
}
|
125 |
-
#onecheckout-form-wrap .address-form-list .fields .field{
|
126 |
-
width:50%;
|
127 |
-
}
|
128 |
-
#onecheckout-form-wrap .address-form-list .fields .field .input-box{
|
129 |
-
|
130 |
-
}
|
131 |
-
|
132 |
-
|
133 |
-
#onecheckout-form-wrap .address-form-list .input-box input.input-text{
|
134 |
-
padding:3px;
|
135 |
-
width:252px;
|
136 |
-
background:url('../../images/ecommerceteam/inputbg.gif') 0 0 no-repeat #fff;
|
137 |
-
}
|
138 |
-
#onecheckout-form-wrap.onecheckout-3columns .address-form-list .fields .field .input-box{
|
139 |
-
width:152px;
|
140 |
-
}
|
141 |
-
#onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box input.input-text{
|
142 |
-
width:152px;
|
143 |
-
}
|
144 |
-
#onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box{
|
145 |
-
width:160px;
|
146 |
-
}
|
147 |
-
#onecheckout-form-wrap.onecheckout-3columns .address-form-list .input-box select{
|
148 |
-
width:160px;
|
149 |
-
}
|
150 |
-
#onecheckout-form-wrap.onecheckout-3columns .onecheckout-left-column{
|
151 |
-
float:left;
|
152 |
-
width:36%;
|
153 |
-
|
154 |
-
}
|
155 |
-
#onecheckout-form-wrap.onecheckout-3columns .onecheckout-right-column{
|
156 |
-
float:right;
|
157 |
-
width:63%;
|
158 |
-
}
|
159 |
-
|
160 |
-
#onecheckout-form-wrap .address-form-list .input-box input.readonly{
|
161 |
-
color:#969696;
|
162 |
-
background:url('../../images/ecommerceteam/inputbg-readonly.gif') 0 0 no-repeat #e6e6e6;
|
163 |
-
}
|
164 |
-
|
165 |
-
#onecheckout-form-wrap .address-form-list .input-box select{
|
166 |
-
padding:2px;
|
167 |
-
background:url('../../images/ecommerceteam/inputbg.gif') 0 0 no-repeat #fff;
|
168 |
-
}
|
169 |
-
|
170 |
-
#onecheckout-form-wrap .address-form-list .input-box .validation-failed{
|
171 |
-
border:1px solid #EB340A !important;
|
172 |
-
background:url('../../images/ecommerceteam/inputbg-error.gif') 0 0 no-repeat #fff !important;
|
173 |
-
}
|
174 |
-
|
175 |
-
#onecheckout-form-wrap #onecheckout-shippingmethod,
|
176 |
-
#onecheckout-form-wrap #onecheckout-paymentmethod{
|
177 |
-
border:0;
|
178 |
-
margin:0;
|
179 |
-
}
|
180 |
-
|
181 |
-
#onecheckout-form-wrap #onecheckout-review{
|
182 |
-
clear:both;
|
183 |
-
position:relative;
|
184 |
-
}
|
185 |
-
#onecheckout-form-wrap .validation-advice{
|
186 |
-
/*display:none;*/
|
187 |
-
}
|
188 |
-
#onecheckout-form-wrap .address-form-list .control label{
|
189 |
-
display:inline;
|
190 |
-
margin-right:17px;
|
191 |
-
}
|
192 |
-
#onecheckout-form-wrap fieldset{
|
193 |
-
padding-top:10px;
|
194 |
-
}
|
195 |
-
#onecheckout-form-wrap #checkout-review-table{
|
196 |
-
margin:10px 0;
|
197 |
-
border:1px solid #ddd;
|
198 |
-
}
|
199 |
-
#onecheckout-form-wrap #checkout-review-table thead th {
|
200 |
-
background:#eee;
|
201 |
-
border:0;
|
202 |
-
border-bottom:1px solid #ddd !important;
|
203 |
-
}
|
204 |
-
#onecheckout-form-wrap #checkout-review-table tfoot tr{
|
205 |
-
background:#eee !important;
|
206 |
-
}
|
207 |
-
#onecheckout-form-wrap #checkout-review-table tfoot tr.first td {
|
208 |
-
background:url('../../images/ecommerceteam/totalsbg.gif') 0 0 repeat-x #eee;
|
209 |
-
}
|
210 |
-
|
211 |
-
#onecheckout-form-wrap #checkout-review-table .even{
|
212 |
-
background:#fff !important;
|
213 |
-
}
|
214 |
-
#onecheckout-form-wrap .button-set{
|
215 |
-
text-align:right;
|
216 |
-
}
|
217 |
-
#onecheckout-form-wrap.onecheckout-3columns .button-set{
|
218 |
-
float:left;
|
219 |
-
}
|
220 |
-
#onecheckout-shippingmethod .box-weight {
|
221 |
-
float: left;
|
222 |
-
width: 100%;
|
223 |
-
margin: 5px 0px 0px 0px;
|
224 |
-
}
|
225 |
-
#onecheckout-shippingmethod .box-weight p {
|
226 |
-
float: left;
|
227 |
-
width: 50%;
|
228 |
-
}
|
229 |
-
#onecheckout-shippingmethod .box-weight p span {
|
230 |
-
font-size: 16px;
|
231 |
-
font-weight: bold;
|
232 |
-
}
|
233 |
-
|
234 |
-
#elogin-buttons{
|
235 |
-
overflow:hidden;
|
236 |
-
zoom:1;
|
237 |
-
}
|
238 |
-
#elogin-message{
|
239 |
-
color:red
|
240 |
-
}
|
241 |
-
#elogin-loading{
|
242 |
-
background:url('../../images/ecommerceteam/elogin-loading.gif') center center no-repeat;
|
243 |
-
font-size:10px;
|
244 |
-
color:#666;
|
245 |
-
padding-top:5px;
|
246 |
-
height:20px;
|
247 |
-
}
|
248 |
-
#elogin-buttons{
|
249 |
-
padding-top:3px;
|
250 |
-
height:22px;
|
251 |
-
}
|
252 |
-
|
253 |
-
#onecheckout-coupon{
|
254 |
-
width: 50%;
|
255 |
-
float:left;
|
256 |
-
}
|
257 |
-
|
258 |
-
#onecheckout-coupon button{
|
259 |
-
margin-top:10px;
|
260 |
-
}
|
261 |
-
|
262 |
-
#onecheckout-coupon .button-set {
|
263 |
-
float: left;
|
264 |
-
}
|
265 |
-
|
266 |
-
#coupon_code{
|
267 |
-
width:90%;
|
268 |
-
}
|
269 |
-
|
270 |
-
.onecheckout-3columns #register-customer-password .field{
|
271 |
-
margin-bottom:8px;
|
272 |
-
}
|
273 |
-
#onecheckout-form-wrap #onecheckout-addressbilling select.address-select,
|
274 |
-
#onecheckout-form-wrap #shipping-address-form select.address-select{
|
275 |
-
width:98%;
|
276 |
-
}
|
277 |
-
.one_step {
|
278 |
-
float: left;
|
279 |
-
width: 100%;
|
280 |
-
}
|
281 |
-
.one_step ul {
|
282 |
-
float: left;
|
283 |
-
width: 100%;
|
284 |
-
margin-left: 5%;
|
285 |
-
}
|
286 |
-
.one_step ul li {
|
287 |
-
float: left;
|
288 |
-
margin-top: 16px;
|
289 |
-
height: 60px;
|
290 |
-
width: 25%;
|
291 |
-
}
|
292 |
-
.one_step ul li strong {
|
293 |
-
color: #E26703;
|
294 |
-
float: left;
|
295 |
-
font-size: 20px;
|
296 |
-
line-height: 20px;
|
297 |
-
margin-right: 15px;
|
298 |
-
|
299 |
-
}
|
300 |
-
.one_step ul li p {
|
301 |
-
float: left;
|
302 |
-
font-size: 14px;
|
303 |
-
font-weight: bold;
|
304 |
-
text-align: center;
|
305 |
-
}
|
306 |
-
.checkout-5step ul {
|
307 |
-
margin-left: 2%;
|
308 |
-
}
|
309 |
-
.checkout-5step ul li {
|
310 |
-
width: 20%;
|
311 |
-
}
|
312 |
-
#myimage {
|
313 |
-
position: fixed;
|
314 |
-
top: 0px;
|
315 |
-
left: 400px;
|
316 |
-
background: #fff;
|
317 |
-
z-index: 9999;
|
318 |
-
width: 300px;
|
319 |
-
padding: 30px;
|
320 |
-
}
|
321 |
-
.easy-step .subscribe label {
|
322 |
-
}
|
323 |
-
#checkout-review-table .cat-image {
|
324 |
-
float: left;
|
325 |
-
margin-right: 10px;
|
326 |
-
}
|
327 |
-
#checkout-review-table dl.item-options{display: inherit;}
|
328 |
-
#checkout-review-table .update,
|
329 |
-
#checkout-review-table .delete {
|
330 |
-
background: url("../../images/padoo/bg-btn-delete.gif") no-repeat scroll 0 0 transparent;
|
331 |
-
line-height: 50px;
|
332 |
-
padding-left: 15px;
|
333 |
-
text-decoration: none;
|
334 |
-
text-align: right;
|
335 |
-
color: #000;
|
336 |
-
float: right;
|
337 |
-
margin: 20px 0px 0px 0px;
|
338 |
-
}
|
339 |
-
#checkout-review-table .update:hover,
|
340 |
-
#checkout-review-table .delete:hover {
|
341 |
-
color: #E26703;
|
342 |
-
}
|
343 |
-
#checkout-review-table .update span,
|
344 |
-
#checkout-review-table .delete span {
|
345 |
-
float: right;
|
346 |
-
line-height: 10px;
|
347 |
-
}
|
348 |
-
#checkout-review-table .update {
|
349 |
-
background: url("../../images/padoo/bg-btn-update.gif") no-repeat scroll 0 0 transparent;
|
350 |
-
margin: 17px 0px 0px 0px;
|
351 |
-
}
|
352 |
-
|
353 |
-
.checkout-agreements .agree {
|
354 |
-
margin: 0;
|
355 |
-
padding: 10px 0;
|
356 |
-
}
|
357 |
-
.checkout-agreements .agree a{
|
358 |
-
text-decoration: none;
|
359 |
-
}
|
360 |
-
.checkout-agreements li {margin:0 !important;}
|
361 |
-
.agreement-box{
|
362 |
-
bottom: 0;
|
363 |
-
display: block;
|
364 |
-
height: 100%;
|
365 |
-
left: 0;
|
366 |
-
position: fixed;
|
367 |
-
right: 0;
|
368 |
-
top: 0;
|
369 |
-
width: 100%;
|
370 |
-
z-index:10005;
|
371 |
-
background: rgba(0, 0, 0, 0.7) no-repeat 0 50%;
|
372 |
-
display:none;
|
373 |
-
}
|
374 |
-
.agreement-box .agreement-content{
|
375 |
-
background: none repeat scroll 0 0 #ffffff;
|
376 |
-
border: 1px solid #999999;
|
377 |
-
bottom: 0;
|
378 |
-
height: 150px;
|
379 |
-
left: 0;
|
380 |
-
margin: auto;
|
381 |
-
padding: 5px 5px 5px 20px;
|
382 |
-
position: absolute;
|
383 |
-
right: 0;
|
384 |
-
top: 0 !important;
|
385 |
-
width: 450px;
|
386 |
-
border-radius: 4px;
|
387 |
-
box-shadow: 0 0 4px 2px #888;
|
388 |
-
box-sizing:content-box;
|
389 |
-
}
|
390 |
-
.agreement-box .agreement-content span{
|
391 |
-
display: block;
|
392 |
-
height: 128px;
|
393 |
-
margin-top: 10px;
|
394 |
-
overflow-y: scroll;
|
395 |
-
text-align: left;
|
396 |
-
width: 100%;
|
397 |
-
}
|
398 |
-
.agreement-box .agreement-content .close-confirm {
|
399 |
-
background: rgba(0, 0, 0, 0) url("../../images/padoo/controls.png") no-repeat scroll -50px 0;
|
400 |
-
bottom: 4px;
|
401 |
-
float: right;
|
402 |
-
left: 3px;
|
403 |
-
position: relative;
|
404 |
-
width: 20px;
|
405 |
-
height: 20px;
|
406 |
-
}
|
407 |
-
.comments{width: 50%; float: left;}
|
408 |
-
.comments textarea{padding: 0; width: 99.5%;}
|
409 |
-
.onestepcheckout-survey{
|
410 |
-
background: #f8f7f5;
|
411 |
-
margin: 10px;
|
412 |
-
padding: 10px;
|
413 |
-
}
|
414 |
-
.onestepcheckout-survey label{
|
415 |
-
display: block;
|
416 |
-
margin: 0 0 5px;
|
417 |
-
}
|
418 |
-
.onestepcheckout-survey select{
|
419 |
-
width: 50%;
|
420 |
-
}
|
421 |
-
.onestepcheckout-group{
|
422 |
-
display: inline-block;
|
423 |
-
padding: 1%;
|
424 |
-
width: 98%;
|
425 |
-
}
|
426 |
-
.onestepcheckout-group h2{padding: 10px 0 !important;}
|
427 |
-
.onestepcheckout-giftmessage{
|
428 |
-
background:#f8f7f5;
|
429 |
-
margin: 10px;
|
430 |
-
padding: 1px 10px;
|
431 |
-
}
|
432 |
-
.onestepcheckout-giftmessage .onestepcheckout-form-list{
|
433 |
-
padding:0 !important;
|
434 |
-
}
|
435 |
-
.onestepcheckout-giftmessage .gift-messages{
|
436 |
-
padding: 5px 0;
|
437 |
-
}
|
438 |
-
.onestepcheckout-form-list .field {
|
439 |
-
width:49%;
|
440 |
-
}
|
441 |
-
.onestepcheckout-form-list .field .input-box input {
|
442 |
-
width:98%;
|
443 |
-
}
|
444 |
-
.onestepcheckout-form-list .input-box textarea {
|
445 |
-
width: 99%;
|
446 |
-
}
|
447 |
-
.delivery-box{
|
448 |
-
margin:10px 0;
|
449 |
-
padding: 5px 10px;
|
450 |
-
}
|
451 |
-
.delivery-box input {height:19px;}
|
452 |
-
.enable-shipping,.group-method,#onecheckout-paymentmethod-available,#checkout-review-table-wrapper,.agreements,.subscribe,.delivery-enable{padding:5px 10px }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
skin/frontend/default/default/css/padoo/storelocator.css
DELETED
@@ -1,529 +0,0 @@
|
|
1 |
-
/*Search*/
|
2 |
-
.store-locator-search-box{
|
3 |
-
width:100%;
|
4 |
-
border-bottom:1px solid #ccc;
|
5 |
-
margin-bottom:20px;
|
6 |
-
}
|
7 |
-
.store-locator-list {
|
8 |
-
width:50%;
|
9 |
-
float :left;
|
10 |
-
}
|
11 |
-
.store-locator-list:nth-child(2n){text-align:right}
|
12 |
-
.store-locator-content a:active{text-decoration:underline;color:#6699FF;}
|
13 |
-
.store-locator-list-store td{vertical-align:middle;}
|
14 |
-
.store-locator-list-store td:first-child{padding-right:25px;}
|
15 |
-
.fields.store-locator-list.last {
|
16 |
-
float: right;
|
17 |
-
margin:15px 0 10px;
|
18 |
-
}
|
19 |
-
.store-locator-list label{
|
20 |
-
width:24%;
|
21 |
-
float:left;
|
22 |
-
}
|
23 |
-
.store-locator-list input{
|
24 |
-
width:70%;
|
25 |
-
padding:2px!important;
|
26 |
-
}
|
27 |
-
.adp-directions{width:100%;}
|
28 |
-
.store-locator-list select{
|
29 |
-
width:71%!important;
|
30 |
-
padding:0;
|
31 |
-
margin:0;
|
32 |
-
padding:2px!important;
|
33 |
-
}
|
34 |
-
.store-locator-column-left{
|
35 |
-
padding-left:2%;
|
36 |
-
width:40%!important;
|
37 |
-
float:left;
|
38 |
-
}
|
39 |
-
.padoo-map-image{
|
40 |
-
width:100%;
|
41 |
-
}
|
42 |
-
.padoo-map-image img{width:100%;}
|
43 |
-
.store-locator-column-right{
|
44 |
-
padding-left:5px;
|
45 |
-
width:55%!important;
|
46 |
-
float:right;
|
47 |
-
}
|
48 |
-
.store-locator-column-button{
|
49 |
-
padding-right:5px;
|
50 |
-
text-align:right;
|
51 |
-
}
|
52 |
-
/*Content*/
|
53 |
-
.store-locator-content{
|
54 |
-
width:100%;
|
55 |
-
height: auto;
|
56 |
-
border-bottom:1px solid #ccc;
|
57 |
-
padding-bottom:10px;
|
58 |
-
}
|
59 |
-
/*List store*/
|
60 |
-
.store-locator-list-store-box{
|
61 |
-
border:1px solid #ccc;
|
62 |
-
float:left;
|
63 |
-
width:29%;
|
64 |
-
padding:5px 0px 5px 10px;
|
65 |
-
height:520px;
|
66 |
-
}
|
67 |
-
|
68 |
-
.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
|
69 |
-
.fb_iframe_widget{display:inline!important;}
|
70 |
-
.store-locator-list-store-title{
|
71 |
-
width:95%;
|
72 |
-
font-size:16pt;
|
73 |
-
border-bottom:1px solid #ccc;
|
74 |
-
margin-bottom:5px;
|
75 |
-
}
|
76 |
-
.store-locator-list-store{
|
77 |
-
height:480px;
|
78 |
-
overflow:auto;
|
79 |
-
}
|
80 |
-
.store-locator-list-store-item{
|
81 |
-
width:93%;
|
82 |
-
min-height:100px;
|
83 |
-
height: auto;
|
84 |
-
margin-bottom:10px;
|
85 |
-
border:1px solid #ccc;
|
86 |
-
padding:2%;
|
87 |
-
|
88 |
-
}
|
89 |
-
.store-locator-list-store-item:hover{
|
90 |
-
background:#E9E9F3;
|
91 |
-
}
|
92 |
-
.active{
|
93 |
-
background:#E9E9F3;
|
94 |
-
}
|
95 |
-
.selecteda{
|
96 |
-
background:#E9E9F3;
|
97 |
-
}
|
98 |
-
.store-locator-item-content{
|
99 |
-
color:#666;
|
100 |
-
float:left;
|
101 |
-
width:60%;
|
102 |
-
font-size:8pt;
|
103 |
-
}
|
104 |
-
.store-locator-item-image{
|
105 |
-
float:right;
|
106 |
-
width:70px;
|
107 |
-
height:100px;
|
108 |
-
background:#edf7fd;
|
109 |
-
}
|
110 |
-
.store-locator-item-name{
|
111 |
-
font-size:9pt;
|
112 |
-
color:#de5400;
|
113 |
-
font-weight:bold;
|
114 |
-
}
|
115 |
-
.store-locator-view-detail .store-locator-item-name a{
|
116 |
-
text-decoration: none;
|
117 |
-
color: #de5400;
|
118 |
-
}
|
119 |
-
.store-locator-view-detail .store-locator-item-name a:hover{
|
120 |
-
text-decoration: underline;
|
121 |
-
}
|
122 |
-
.store-locator-item-content a{
|
123 |
-
color:#69F;
|
124 |
-
font-style:italic;
|
125 |
-
text-decoration:none;
|
126 |
-
margin-right:10px;
|
127 |
-
}
|
128 |
-
.store-locator-item-content a:hover{
|
129 |
-
text-decoration:underline;
|
130 |
-
}
|
131 |
-
/*Map*/
|
132 |
-
.store-locator-map{
|
133 |
-
border:1px solid #ccc;
|
134 |
-
float:right;
|
135 |
-
height:530px;
|
136 |
-
width:68%;
|
137 |
-
}
|
138 |
-
|
139 |
-
.store-locator-view-detail{
|
140 |
-
width: 40%;
|
141 |
-
height: auto;
|
142 |
-
float: left;
|
143 |
-
}
|
144 |
-
.store-locator-view-detail a{
|
145 |
-
color:#69F;
|
146 |
-
text-decoration: none;
|
147 |
-
}
|
148 |
-
.store-locator-view-detail label{
|
149 |
-
display: block;
|
150 |
-
float: left;
|
151 |
-
width: 25%;
|
152 |
-
font-weight: bold;
|
153 |
-
clear: both;
|
154 |
-
}
|
155 |
-
.store-locator-view-detail span{
|
156 |
-
width: 73%;
|
157 |
-
display: block;
|
158 |
-
float: right;
|
159 |
-
padding-bottom: 2px;
|
160 |
-
}
|
161 |
-
.store-locator-view-detail p{
|
162 |
-
text-align: justify;
|
163 |
-
padding-top:1px;
|
164 |
-
padding-bottom: 1px;
|
165 |
-
margin: 0;
|
166 |
-
}
|
167 |
-
.clear{
|
168 |
-
clear:both;
|
169 |
-
}
|
170 |
-
|
171 |
-
.store-pickup-image{
|
172 |
-
float :left;
|
173 |
-
margin-right: 5px;
|
174 |
-
}
|
175 |
-
|
176 |
-
.locator-main-outer .locator-image-small{
|
177 |
-
border: 2px solid #DDDDDD;
|
178 |
-
float: left;
|
179 |
-
height: 56px;
|
180 |
-
overflow: hidden;
|
181 |
-
width: 56px;
|
182 |
-
}
|
183 |
-
.locator-image-main{
|
184 |
-
margin: 0 0 13px;
|
185 |
-
}
|
186 |
-
.locator-main-outer .more-views h2 {
|
187 |
-
border-bottom: 1px solid #CCCCCC;
|
188 |
-
font-size: 11px;
|
189 |
-
margin: 0 0 8px;
|
190 |
-
text-transform: uppercase;
|
191 |
-
font-weight: bold;
|
192 |
-
}
|
193 |
-
.store-locator-title{
|
194 |
-
color: #de5400;
|
195 |
-
font-weight: bold;
|
196 |
-
font-size: 13px;
|
197 |
-
margin-bottom: 5px;
|
198 |
-
display: block;
|
199 |
-
}
|
200 |
-
|
201 |
-
.more-views ul li {
|
202 |
-
float: left;
|
203 |
-
padding: 3px;
|
204 |
-
margin: 1px;
|
205 |
-
border: 1px solid rgb(230, 230, 230);
|
206 |
-
}
|
207 |
-
.padoo-map-image:hover img{
|
208 |
-
box-shadow: 0 0 5px rgb(155, 148, 148);
|
209 |
-
}
|
210 |
-
.locator-image-small:hover img{
|
211 |
-
border: 1px solid #ccc;
|
212 |
-
}
|
213 |
-
#description {
|
214 |
-
overflow: auto;
|
215 |
-
max-height: 250px;
|
216 |
-
}
|
217 |
-
.store-locator-tag{
|
218 |
-
position: relative;
|
219 |
-
width:98%;
|
220 |
-
padding:1%;
|
221 |
-
margin:auto;
|
222 |
-
padding-top: 20px;
|
223 |
-
margin-top:13px;
|
224 |
-
border:1px solid #E5E5E5;
|
225 |
-
background:url(storelocator/tag-bg.png) repeat;
|
226 |
-
}
|
227 |
-
.store-locator-tag a{
|
228 |
-
color:#fafafa;
|
229 |
-
text-shadow: 0 1px rgba(0,0,0,0.4);
|
230 |
-
text-decoration:none;
|
231 |
-
display: inline-block;
|
232 |
-
padding: 0 12px;
|
233 |
-
font-size:11pt;
|
234 |
-
margin-bottom: 5px;
|
235 |
-
background:#06F;
|
236 |
-
border-radius:15px;
|
237 |
-
background: #ff9035; /* Old browsers */
|
238 |
-
line-height:27px;
|
239 |
-
background: -moz-linear-gradient(top, #ff9035 1%, #ff7400 100%); /* FF3.6+ */
|
240 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ff9035), color-stop(100%,#ff7400)); /* Chrome,Safari4+ */
|
241 |
-
background: -webkit-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* Chrome10+,Safari5.1+ */
|
242 |
-
background: -o-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* Opera 11.10+ */
|
243 |
-
background: -ms-linear-gradient(top, #ff9035 1%,#ff7400 100%); /* IE10+ */
|
244 |
-
background: linear-gradient(to bottom, #ff9035 1%,#ff7400 100%); /* W3C */
|
245 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9035', endColorstr='#ff7400',GradientType=0 ); /* IE6-9 */
|
246 |
-
|
247 |
-
box-shadow: 0 1px 2px rgba(0,0,0,0.21);
|
248 |
-
}
|
249 |
-
.store-locator-tag a:hover{
|
250 |
-
background: #B6DA25;
|
251 |
-
}
|
252 |
-
.padoo-storelocator-getdirection{
|
253 |
-
border: 1px solid #E5E6E3;
|
254 |
-
background-color: #FFFFFF;
|
255 |
-
margin-top: -10px;
|
256 |
-
margin-bottom: 10px;
|
257 |
-
width: 97%;
|
258 |
-
clear:both;
|
259 |
-
display:block;
|
260 |
-
}
|
261 |
-
.padoo-storelocator-navigation{
|
262 |
-
margin-top: 5px;
|
263 |
-
margin-bottom:5px;
|
264 |
-
display: block;
|
265 |
-
}
|
266 |
-
.padoo-storelocator-navigation .store-locator-navigation_image{
|
267 |
-
background: url(storelocator/navigation.png) left no-repeat;
|
268 |
-
background-position: 0px 0px;
|
269 |
-
display:inline-block;
|
270 |
-
height: 8px;
|
271 |
-
width: 16px;
|
272 |
-
margin-right:10px;
|
273 |
-
margin-left:5px;
|
274 |
-
}
|
275 |
-
.padoo-storelocator-directionsPanel{}
|
276 |
-
.padoo-storelocator-navigation-up{
|
277 |
-
background-image: url(storelocator/navigation.png);
|
278 |
-
background-position: 16px 0px;
|
279 |
-
|
280 |
-
height: 8px;
|
281 |
-
width: 16px;
|
282 |
-
margin-left: 107px;
|
283 |
-
margin-top: 3px;
|
284 |
-
display: block;
|
285 |
-
}
|
286 |
-
.store-locator-tag .tag_active{
|
287 |
-
background:#B6DA25;
|
288 |
-
}
|
289 |
-
|
290 |
-
.store-locator-span-tag {
|
291 |
-
font-weight: bold;
|
292 |
-
border: 1px solid #E5E5E5;
|
293 |
-
position: absolute;
|
294 |
-
top: -10px;
|
295 |
-
padding:2px;
|
296 |
-
background-color: #F1F0F0;
|
297 |
-
background:url(storelocator/tag-bg.png) repeat;
|
298 |
-
}
|
299 |
-
.store-locator-list input,.store-locator-list select{height:auto!important; border:1px solid #CCCCCC;}
|
300 |
-
|
301 |
-
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++RESPONSIVE++++++++++++++++++++++++++++++++++++++++++++++++++++*/
|
302 |
-
|
303 |
-
/*@media all and (min-width: 0px) and (max-width: 379px) {
|
304 |
-
|
305 |
-
}*/
|
306 |
-
|
307 |
-
@media all and (min-width: 0px) and (max-width: 719px) {
|
308 |
-
.store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
|
309 |
-
width:100%!important;
|
310 |
-
text-align:left;
|
311 |
-
-webkit-box-sizing:border-box;
|
312 |
-
-moz-box-sizing:border-box;
|
313 |
-
box-sizing:border-box;
|
314 |
-
-moz-background-clip:padding-box !important;
|
315 |
-
-webkit-background-clip:padding-box !important;
|
316 |
-
background-clip:padding-box !important;
|
317 |
-
}
|
318 |
-
.store-locator-list-store-box{
|
319 |
-
width:100%;
|
320 |
-
border:none;
|
321 |
-
padding:5px 0 5px 0px;
|
322 |
-
border-bottom:1px solid #cccccc;
|
323 |
-
margin-bottom:18px;
|
324 |
-
height:auto;
|
325 |
-
}
|
326 |
-
.store-locator-list-store{width:100%;
|
327 |
-
padding-right:0;
|
328 |
-
height:160px;
|
329 |
-
}
|
330 |
-
.store-locator-list-store-title,.store-locator-view-detail{
|
331 |
-
width:100%;
|
332 |
-
}
|
333 |
-
|
334 |
-
.store-locator-list-store-item{
|
335 |
-
width:100%;
|
336 |
-
float:left;
|
337 |
-
-webkit-box-sizing:border-box;
|
338 |
-
-moz-box-sizing:border-box;
|
339 |
-
box-sizing:border-box;
|
340 |
-
-moz-background-clip:padding-box !important;
|
341 |
-
-webkit-background-clip:padding-box !important;
|
342 |
-
background-clip:padding-box !important;
|
343 |
-
}
|
344 |
-
|
345 |
-
#store-locator-list-store div.store-locator-list-store-item:nth-child(even){
|
346 |
-
float:right;
|
347 |
-
}
|
348 |
-
.store-locator-list-store-box .clear{
|
349 |
-
display:none;
|
350 |
-
}
|
351 |
-
.store-locator-map{
|
352 |
-
width:100%!important;
|
353 |
-
margin-bottom:15px;
|
354 |
-
}
|
355 |
-
.store-locator-item-content a{float:left!important;}
|
356 |
-
.padoo-map-image{width:100%;}
|
357 |
-
.padoo-map-image img{width:100%;}
|
358 |
-
|
359 |
-
.store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
|
360 |
-
.fb_iframe_widget{display:inline!important;}
|
361 |
-
|
362 |
-
.store-locator-column-left{
|
363 |
-
width:100%!important;
|
364 |
-
margin-bottom:18px;
|
365 |
-
}
|
366 |
-
}
|
367 |
-
/*
|
368 |
-
@media all and (min-width: 481px) and (max-width: 719px) {
|
369 |
-
.store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
|
370 |
-
width:100%;
|
371 |
-
text-align:left;
|
372 |
-
-webkit-box-sizing:border-box;
|
373 |
-
-moz-box-sizing:border-box;
|
374 |
-
box-sizing:border-box;
|
375 |
-
-moz-background-clip:padding-box !important;
|
376 |
-
-webkit-background-clip:padding-box !important;
|
377 |
-
background-clip:padding-box !important;
|
378 |
-
}
|
379 |
-
.store-locator-list-store-box,.store-locator-view-detail{
|
380 |
-
width:100%;
|
381 |
-
border:none;
|
382 |
-
padding:5px 0 5px 0px;
|
383 |
-
border-bottom:1px solid #cccccc;
|
384 |
-
margin-bottom:18px;
|
385 |
-
height:auto;
|
386 |
-
}
|
387 |
-
.store-locator-list-store{width:100%;
|
388 |
-
padding-right:0;
|
389 |
-
height:160px;
|
390 |
-
}
|
391 |
-
.store-locator-list-store-title{
|
392 |
-
width:100%;
|
393 |
-
}
|
394 |
-
|
395 |
-
.store-locator-list-store-item{
|
396 |
-
width:49%;
|
397 |
-
float:left;
|
398 |
-
-webkit-box-sizing:border-box;
|
399 |
-
-moz-box-sizing:border-box;
|
400 |
-
box-sizing:border-box;
|
401 |
-
-moz-background-clip:padding-box !important;
|
402 |
-
-webkit-background-clip:padding-box !important;
|
403 |
-
background-clip:padding-box !important;
|
404 |
-
}
|
405 |
-
|
406 |
-
#store-locator-list-store div.store-locator-list-store-item:nth-child(even){
|
407 |
-
float:right;
|
408 |
-
}
|
409 |
-
.store-locator-list-store-box .clear{
|
410 |
-
display:none;
|
411 |
-
}
|
412 |
-
.store-locator-map{
|
413 |
-
width:100%!important;
|
414 |
-
margin-bottom:15px;
|
415 |
-
}
|
416 |
-
.store-locator-item-content a{float:left!important;}
|
417 |
-
.store-locator-column-right{
|
418 |
-
float:left;
|
419 |
-
}
|
420 |
-
.store-locator-column-left{
|
421 |
-
width:100%!important;
|
422 |
-
}
|
423 |
-
.locator-image-main img{
|
424 |
-
width:400px;
|
425 |
-
display:block;
|
426 |
-
float:none; margin:0 auto;
|
427 |
-
}
|
428 |
-
|
429 |
-
.store-locator-title{text-align:center;}
|
430 |
-
|
431 |
-
.store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
|
432 |
-
.fb_iframe_widget{display:inline!important;}
|
433 |
-
|
434 |
-
}
|
435 |
-
*/
|
436 |
-
@media screen and (min-width: 720px) and (max-width: 985px) {
|
437 |
-
.store-locator-list,.store-locator-list label,.store-locator-list input,.store-locator-list select{
|
438 |
-
width:100%!important;
|
439 |
-
text-align:left;
|
440 |
-
-webkit-box-sizing:border-box;
|
441 |
-
-moz-box-sizing:border-box;
|
442 |
-
box-sizing:border-box;
|
443 |
-
-moz-background-clip:padding-box !important;
|
444 |
-
-webkit-background-clip:padding-box !important;
|
445 |
-
background-clip:padding-box !important;
|
446 |
-
}
|
447 |
-
.store-locator-list-store-box{
|
448 |
-
width:100%;
|
449 |
-
border:none;
|
450 |
-
padding:5px 0 5px 0px;
|
451 |
-
border-bottom:1px solid #cccccc;
|
452 |
-
margin-bottom:18px;
|
453 |
-
height:auto;
|
454 |
-
}
|
455 |
-
.store-locator-list-store{width:100%;
|
456 |
-
padding-right:0;
|
457 |
-
height:160px;
|
458 |
-
}
|
459 |
-
.store-locator-list-store-title,.store-locator-view-detail{
|
460 |
-
width:100%;
|
461 |
-
}
|
462 |
-
|
463 |
-
.store-locator-list-store-item{
|
464 |
-
width:100%;
|
465 |
-
float:left;
|
466 |
-
-webkit-box-sizing:border-box;
|
467 |
-
-moz-box-sizing:border-box;
|
468 |
-
box-sizing:border-box;
|
469 |
-
-moz-background-clip:padding-box !important;
|
470 |
-
-webkit-background-clip:padding-box !important;
|
471 |
-
background-clip:padding-box !important;
|
472 |
-
}
|
473 |
-
|
474 |
-
#store-locator-list-store div.store-locator-list-store-item:nth-child(even){
|
475 |
-
float:right;
|
476 |
-
}
|
477 |
-
.store-locator-list-store-box .clear{
|
478 |
-
display:none;
|
479 |
-
}
|
480 |
-
.store-locator-map{
|
481 |
-
width:100%!important;
|
482 |
-
margin-bottom:15px;
|
483 |
-
}
|
484 |
-
.store-locator-item-content a{float:left!important;}
|
485 |
-
.padoo-map-image{width:100%;}
|
486 |
-
.padoo-map-image img{width:100%;}
|
487 |
-
|
488 |
-
.store-locator-column-right,.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
|
489 |
-
.fb_iframe_widget{display:inline!important;}
|
490 |
-
|
491 |
-
.store-locator-column-left{
|
492 |
-
width:100%!important;
|
493 |
-
margin-bottom:18px;
|
494 |
-
}
|
495 |
-
}
|
496 |
-
@media only screen and (max-width: 767px) {
|
497 |
-
.store-locator-list label{width:27%;}
|
498 |
-
.store-locator-column-right{float:right;width:100%;}
|
499 |
-
.padoo-map-image{width:100%;}
|
500 |
-
.padoo-map-image img{width:100%;}
|
501 |
-
|
502 |
-
.fb_iframe_widget span,.fb_iframe_widget iframe{width:100%!important;}
|
503 |
-
.fb_iframe_widget{display:inline!important;}
|
504 |
-
}
|
505 |
-
|
506 |
-
@media screen and (min-width: 986px) and (max-width: 1235px) {
|
507 |
-
|
508 |
-
}
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
@media screen and (min-width: 1236px) and (max-width: 1585px) {
|
513 |
-
|
514 |
-
|
515 |
-
}
|
516 |
-
|
517 |
-
|
518 |
-
@media screen and (min-width: 1586px) and (max-width: 1890px) {
|
519 |
-
|
520 |
-
}
|
521 |
-
|
522 |
-
|
523 |
-
@media screen and (min-width:1891px) {
|
524 |
-
|
525 |
-
}
|
526 |
-
.store-locator-content #map img {
|
527 |
-
max-width: inherit;
|
528 |
-
width: auto !important;
|
529 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
skin/frontend/default/default/css/padoo/storelocator/navigation.png
DELETED
Binary file
|
skin/frontend/default/default/css/padoo/storelocator/navigation1.png
DELETED
Binary file
|
skin/frontend/default/default/css/padoo/storelocator/tag-bg.png
DELETED
Binary file
|
skin/frontend/default/default/css/padoo/storelocator/vssver2.scc
DELETED
Binary file
|
skin/frontend/default/default/css/padoo/tinybox.css
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
#tinybox {position:fixed; top:40% !important; display:none;padding:15px; background:#fff ; z-index:2000}
|
2 |
-
#tinymask {position:absolute; display:none; top:0; left:0; height:100%; width:100%; background:#000; z-index:1500}
|
3 |
-
#tinycontent {background:#fff}
|
|
|
|
|
|