update
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
@charset "utf-8";
|
||||
|
||||
#toolspanelcontent{
|
||||
width:240px
|
||||
}
|
||||
#toolspanelcontent > div:hover {
|
||||
color:#285151
|
||||
}
|
||||
#toolspanelcontent #bottombox input{
|
||||
*clear: both;
|
||||
*margin-left: 10px;
|
||||
}
|
||||
#toolspanelcontent #bottombox a{
|
||||
|
||||
}
|
||||
#toolspanelcontent #bottombox input[type="submit"]{height: 28px; line-height: 28px;}
|
||||
|
||||
#toolspanel {
|
||||
position:fixed;
|
||||
top:100px;
|
||||
left:0;
|
||||
background:red;
|
||||
z-index:999;
|
||||
*height:0;
|
||||
}
|
||||
#toolspanelcontent {
|
||||
position:fixed;
|
||||
top:100px;
|
||||
-webkit-border-radius: 0 5px 5px 0;
|
||||
-moz-border-radius: 0 5px 5px 0;
|
||||
border-radius: 0 5px 5px 0;
|
||||
color: #000;
|
||||
font-size: 90%;
|
||||
z-index: 999;
|
||||
border-bottom: 1px solid #DBDDD8;
|
||||
border-top: 1px solid #DBDDD8;
|
||||
background: #fff;
|
||||
}
|
||||
#toolspanelcontent > div {
|
||||
padding:12px
|
||||
}
|
||||
#toolspanel .pn-button {
|
||||
cursor: pointer;
|
||||
right:-38px;
|
||||
height:20px;
|
||||
width:14px;
|
||||
position: absolute;
|
||||
top: 115px;
|
||||
z-index: 999;
|
||||
border-bottom: 1px solid #DBDDD8;
|
||||
border-right: 1px solid #DBDDD8;
|
||||
border-top: 1px solid #DBDDD8;
|
||||
-webkit-border-radius: 0 5px 5px 0;
|
||||
-moz-border-radius: 0 5px 5px 0;
|
||||
border-radius: 0 5px 5px 0;
|
||||
-webkit-box-shadow: 3px 0 4px #cecece;
|
||||
-moz-box-shadow: 3px 0 4px #cecece;
|
||||
box-shadow: 3px 0 4px #cecece;
|
||||
background: #fff;
|
||||
}
|
||||
#toolspanel .pn-button {
|
||||
background: url("icon.png") no-repeat scroll 12px 13px #FFFFFF;
|
||||
opacity:1;
|
||||
}
|
||||
#toolspanel .open {
|
||||
background: url("icon.png") no-repeat scroll 12px -27px #FFFFFF;
|
||||
}
|
||||
#pnpartterns a {
|
||||
border: 1px solid #BBBBBB;
|
||||
display: block;
|
||||
float: left;
|
||||
height: 6px;
|
||||
margin: 0 5px 5px 0;
|
||||
padding: 6px;
|
||||
width: 6px;
|
||||
}
|
||||
#pnpartterns a.active{ border-color:red; -moz-transition:border-color 0.8s}
|
||||
|
||||
#template_theme select {
|
||||
width: 200px;
|
||||
background: #fff!important;
|
||||
border-color: #ccc;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* @Website: apollotheme.com - prestashop template provider
|
||||
* @author Apollotheme <apollotheme@gmail.com>
|
||||
* @copyright Apollotheme
|
||||
* @description: ApPageBuilder is module help you can build content for your shop
|
||||
*/
|
||||
// JavaScript Document
|
||||
$(document).ready( function(){
|
||||
$(".bgpattern").each( function(){
|
||||
var wrap = this;
|
||||
if( $("input",wrap).val() ){
|
||||
$("#" + $("input",wrap).val()).addClass("active");
|
||||
}
|
||||
$("a",this).click( function(){
|
||||
$("input",wrap).val( $(this).attr("id").replace(/\.\w+$/,"") );
|
||||
$("a",wrap).removeClass( "active" );
|
||||
$(this).addClass("active");
|
||||
} );
|
||||
} );
|
||||
} );
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2017 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright PrestaShop SA
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2017 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright PrestaShop SA
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
Reference in New Issue
Block a user