// 1.5 branche creation
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@5881 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
fieldset {position:relative;padding-top:25px}
|
||||
fieldset legend {position:absolute;top:-0.5em;left:1.1em}
|
||||
+1492
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,120 @@
|
||||
<attach event="ondocumentready" handler="parseStylesheets" />
|
||||
<script>
|
||||
/**
|
||||
* Whatever:hover - V1.42.060206 - hover & active
|
||||
* ------------------------------------------------------------
|
||||
* (c) 2005 - Peter Nederlof
|
||||
* Peterned - http://www.xs4all.nl/~peterned/
|
||||
* License - http://creativecommons.org/licenses/LGPL/2.1/
|
||||
*
|
||||
* Whatever:hover is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* Whatever:hover is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* Credits and thanks to:
|
||||
* Arnoud Berendsen, Martin Reurings, Robert Hanson
|
||||
*
|
||||
* howto: body { behavior:url("csshover.htc"); }
|
||||
* ------------------------------------------------------------
|
||||
*/
|
||||
|
||||
var csshoverReg = /(^|\s)(([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(hover|active)/i,
|
||||
currentSheet, doc = window.document, hoverEvents = [], activators = {
|
||||
onhover:{on:'onmouseover', off:'onmouseout'},
|
||||
onactive:{on:'onmousedown', off:'onmouseup'}
|
||||
}
|
||||
|
||||
function parseStylesheets() {
|
||||
if(!/MSIE (5|6)/.test(navigator.userAgent)) return;
|
||||
window.attachEvent('onunload', unhookHoverEvents);
|
||||
var sheets = doc.styleSheets, l = sheets.length;
|
||||
for(var i=0; i<l; i++)
|
||||
parseStylesheet(sheets[i]);
|
||||
}
|
||||
function parseStylesheet(sheet) {
|
||||
if(sheet.imports) {
|
||||
try {
|
||||
var imports = sheet.imports, l = imports.length;
|
||||
for(var i=0; i<l; i++) parseStylesheet(sheet.imports[i]);
|
||||
} catch(securityException){}
|
||||
}
|
||||
|
||||
try {
|
||||
var rules = (currentSheet = sheet).rules, l = rules.length;
|
||||
for(var j=0; j<l; j++) parseCSSRule(rules[j]);
|
||||
} catch(securityException){}
|
||||
}
|
||||
|
||||
function parseCSSRule(rule) {
|
||||
var select = rule.selectorText, style = rule.style.cssText;
|
||||
if(!csshoverReg.test(select) || !style) return;
|
||||
|
||||
var pseudo = select.replace(/[^:]+:([a-z-]+).*/i, 'on$1');
|
||||
var newSelect = select.replace(/(\.([a-z0-9_-]+):[a-z]+)|(:[a-z]+)/gi, '.$2' + pseudo);
|
||||
var className = (/\.([a-z0-9_-]*on(hover|active))/i).exec(newSelect)[1];
|
||||
var affected = select.replace(/:(hover|active).*$/, '');
|
||||
var elements = getElementsBySelect(affected);
|
||||
if(elements.length == 0) return;
|
||||
|
||||
currentSheet.addRule(newSelect, style);
|
||||
for(var i=0; i<elements.length; i++)
|
||||
new HoverElement(elements[i], className, activators[pseudo]);
|
||||
}
|
||||
|
||||
function HoverElement(node, className, events) {
|
||||
if(!node.hovers) node.hovers = {};
|
||||
if(node.hovers[className]) return;
|
||||
node.hovers[className] = true;
|
||||
hookHoverEvent(node, events.on, function() { node.className += ' ' + className; });
|
||||
hookHoverEvent(node, events.off, function() { node.className = node.className.replace(new RegExp('\\s+'+className, 'g'),''); });
|
||||
}
|
||||
function hookHoverEvent(node, type, handler) {
|
||||
node.attachEvent(type, handler);
|
||||
hoverEvents[hoverEvents.length] = {
|
||||
node:node, type:type, handler:handler
|
||||
};
|
||||
}
|
||||
|
||||
function unhookHoverEvents() {
|
||||
for(var e,i=0; i<hoverEvents.length; i++) {
|
||||
e = hoverEvents[i];
|
||||
e.node.detachEvent(e.type, e.handler);
|
||||
}
|
||||
}
|
||||
|
||||
function getElementsBySelect(rule) {
|
||||
var parts, nodes = [doc];
|
||||
parts = rule.split(' ');
|
||||
for(var i=0; i<parts.length; i++) {
|
||||
nodes = getSelectedNodes(parts[i], nodes);
|
||||
} return nodes;
|
||||
}
|
||||
function getSelectedNodes(select, elements) {
|
||||
var result, node, nodes = [];
|
||||
var identify = (/\#([a-z0-9_-]+)/i).exec(select);
|
||||
if(identify) {
|
||||
var element = doc.getElementById(identify[1]);
|
||||
return element? [element]:nodes;
|
||||
}
|
||||
|
||||
var classname = (/\.([a-z0-9_-]+)/i).exec(select);
|
||||
var tagName = select.replace(/(\.|\#|\:)[a-z0-9_-]+/i, '');
|
||||
var classReg = classname? new RegExp('\\b' + classname[1] + '\\b'):false;
|
||||
for(var i=0; i<elements.length; i++) {
|
||||
result = tagName? elements[i].all.tags(tagName):elements[i].all;
|
||||
for(var j=0; j<result.length; j++) {
|
||||
node = result[j];
|
||||
if(classReg && !classReg.test(node.className)) continue;
|
||||
nodes[nodes.length] = node;
|
||||
}
|
||||
}
|
||||
|
||||
return nodes;
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,142 @@
|
||||
table.jCalendar {
|
||||
border: 1px solid #000;
|
||||
background: #aaa;
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
}
|
||||
table.jCalendar th {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
padding: 3px 5px;
|
||||
}
|
||||
table.jCalendar td {
|
||||
background: #ccc;
|
||||
color: #000;
|
||||
padding: 3px 5px;
|
||||
text-align: center;
|
||||
}
|
||||
table.jCalendar td.other-month {
|
||||
background: #ddd;
|
||||
color: #aaa;
|
||||
}
|
||||
table.jCalendar td.today {
|
||||
background: #666;
|
||||
color: #fff;
|
||||
}
|
||||
table.jCalendar td.selected {
|
||||
background: #f66;
|
||||
color: #fff;
|
||||
}
|
||||
table.jCalendar td.selected:hover {
|
||||
background: #f33;
|
||||
color: #fff;
|
||||
}
|
||||
table.jCalendar td:hover, table.jCalendar td.dp-hover {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
}
|
||||
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
|
||||
background: #bbb;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* For the popup */
|
||||
|
||||
/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */
|
||||
/* located in demo.css and creates a little calendar icon
|
||||
* instead of a text link for "Choose date"
|
||||
*/
|
||||
a.dp-choose-date {
|
||||
/*float: left;
|
||||
display: block;
|
||||
text-indent: -2000px;*/
|
||||
width: 16px;
|
||||
height: 18px;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
margin: 2px 3px 0 3px;
|
||||
background: url('../img/admin/calendar.png') no-repeat 0px -1px;
|
||||
}
|
||||
a.dp-choose-date.dp-disabled {
|
||||
background-position: 0 -20px;
|
||||
cursor: default;
|
||||
}
|
||||
/* makes the input field shorter once the date picker code
|
||||
* has run (to allow space for the calendar icon
|
||||
*/
|
||||
input.dp-applied {
|
||||
width: 100px;
|
||||
/*float: left;*/
|
||||
}
|
||||
|
||||
|
||||
|
||||
div.dp-popup {
|
||||
position: relative;
|
||||
background: #ccc;
|
||||
font-size: 10px;
|
||||
font-family: arial, sans-serif;
|
||||
padding: 2px;
|
||||
width: 171px;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
div#dp-popup {
|
||||
position: absolute;
|
||||
z-index: 199;
|
||||
}
|
||||
div.dp-popup h2 {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
margin: 2px 0;
|
||||
padding: 0;
|
||||
}
|
||||
a#dp-close {
|
||||
font-size: 11px;
|
||||
padding: 4px 0;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
a#dp-close:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
div.dp-popup a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
padding: 3px 2px 0;
|
||||
}
|
||||
div.dp-popup div.dp-nav-prev {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 4px;
|
||||
width: 100px;
|
||||
}
|
||||
div.dp-popup div.dp-nav-prev a {
|
||||
float: left;
|
||||
}
|
||||
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
|
||||
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
|
||||
cursor: default;
|
||||
}
|
||||
div.dp-popup div.dp-nav-next {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 4px;
|
||||
width: 100px;
|
||||
}
|
||||
div.dp-popup div.dp-nav-next a {
|
||||
float: right;
|
||||
}
|
||||
div.dp-popup a.disabled {
|
||||
cursor: default;
|
||||
color: #aaa;
|
||||
}
|
||||
div.dp-popup td {
|
||||
cursor: pointer;
|
||||
}
|
||||
div.dp-popup td.disabled {
|
||||
cursor: default;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* 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 2007-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 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;
|
||||
?>
|
||||
+349
@@ -0,0 +1,349 @@
|
||||
/* POS CSS Install */
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
font-family: Arial, Verdana, sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
background-color: #FFF;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #C73178;
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #333;
|
||||
font-weight: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
img {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input, select {
|
||||
font-family: Arial, Verdana, sans-serif;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
margin: 2px 0 2px 0;
|
||||
}
|
||||
|
||||
#required {
|
||||
color: #C73178;
|
||||
}
|
||||
|
||||
|
||||
/* STRUCTURE */
|
||||
|
||||
#page {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin-top: 10px;
|
||||
padding: 10px 0 0 0;
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
#container-inner {
|
||||
width: 940px;
|
||||
margin: 0 auto 0 auto;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#content {
|
||||
float: right;
|
||||
width: 697px;
|
||||
border-left: 1px solid #65B821;
|
||||
min-height: 380px;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 5px 14px;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
float: left;
|
||||
width: 200px;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
|
||||
|
||||
/* HEADER */
|
||||
|
||||
#header {
|
||||
background-color: #DFF5CD;
|
||||
}
|
||||
|
||||
#header table{
|
||||
margin-left: 240px;
|
||||
|
||||
}
|
||||
|
||||
#frame {
|
||||
color: #666;
|
||||
width: 860px;
|
||||
text-align: right;
|
||||
padding-top: 50px;
|
||||
padding-right: 10px;
|
||||
padding-left: 20px;
|
||||
margin-top: 30px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#frame a{
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#frame a:hover {
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#spanTitle {
|
||||
margin-top: -5px;
|
||||
font-size: 23px;
|
||||
float: left;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
|
||||
/* WELCOME */
|
||||
|
||||
#welcome {
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
#welcome h3 {
|
||||
font-size: 115%;
|
||||
}
|
||||
|
||||
#welcome p {
|
||||
margin: 1.5em 180px 1em 0;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
#welcome ul {
|
||||
margin: 0 190px 0 20px;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#welcome ul li {
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0 0 0 26px;
|
||||
font-size: 110%;
|
||||
line-height: 1.3em;
|
||||
font-weight: normal;
|
||||
color: #666;
|
||||
background: url(../img/install/icon-checksm_gris.gif) no-repeat 0 4px;
|
||||
}
|
||||
|
||||
/* CONTENT */
|
||||
|
||||
#content h1 {
|
||||
margin: 0 0 12px 0;
|
||||
padding: 0;
|
||||
border-bottom: 1.5px solid #65B821;
|
||||
color: #666;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
#content h1 .faint {
|
||||
background: #65B821;
|
||||
width: inherit;
|
||||
margin: 0 0.4em 0 0;
|
||||
padding: 0 0.2em 0 0.2em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#content h2 {
|
||||
color: #C73178;
|
||||
font-size: 1.3em;
|
||||
border-bottom: 2px solid #F4D7E4;
|
||||
margin: 12px 0 12px 0;
|
||||
}
|
||||
|
||||
#content h3 {
|
||||
margin: 0;
|
||||
color: #C73178;
|
||||
}
|
||||
|
||||
/* TABLE */
|
||||
|
||||
.table {
|
||||
width: 450px;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
border: 1px solid #F4D7E4;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.table th, .table td {
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
border-bottom: 1px inset #F0EADA;
|
||||
}
|
||||
|
||||
.table td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
/* FORM TABLE */
|
||||
|
||||
table.form-table {
|
||||
width: 550px;
|
||||
margin-top: 0.65em;
|
||||
padding: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.form-table th,
|
||||
table.form-table td {
|
||||
margin: 0;
|
||||
padding: 8px;
|
||||
border-bottom: 1px dotted #F4D7E4;
|
||||
}
|
||||
|
||||
table.form-table th {
|
||||
width: 135px;
|
||||
padding-top: 12px;
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
table.form-table td p.note {
|
||||
margin: 0;
|
||||
padding: 2px 0 2px 0;
|
||||
font-family: "Lucida Grande", Arial, Verdana, sans-serif;
|
||||
font-size: 90%;
|
||||
font-weight: normal;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* HELP BOXES : HINT TO HIDE AND REVEAL PASSWORDS */
|
||||
|
||||
.reveal {
|
||||
height: 50px;
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
padding: 9px 10px 2px 10px;
|
||||
}
|
||||
|
||||
/* ERROR */
|
||||
|
||||
#content div.alert {
|
||||
width: 450px;
|
||||
margin: 15px 0;
|
||||
padding: 10px 15px;
|
||||
border-top : 1px dotted #666;
|
||||
border-bottom: 1px dotted #666;
|
||||
background: #F9E3EE;
|
||||
}
|
||||
|
||||
#content div.error h4 {
|
||||
margin: 0;
|
||||
padding: 0 0 0 20px;
|
||||
font-family: "Lucida Grande", Verdana, sans-serif;
|
||||
font-size: 110%;
|
||||
text-transform: none;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0;
|
||||
text-align: left;
|
||||
color: #C73178;
|
||||
border: none;
|
||||
background: url(../img/install/warning.gif) no-repeat 0 0;
|
||||
}
|
||||
|
||||
#content div.error ol {
|
||||
margin: 15px 0 0 0;
|
||||
padding-bottom: 0;
|
||||
color: #C73178;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
|
||||
/* WAITING */
|
||||
|
||||
#waiting {
|
||||
margin: 10px;
|
||||
display: none;
|
||||
width: 230px;
|
||||
background: #FFF;
|
||||
border: 1px #666 dotted;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* INFOS */
|
||||
|
||||
#infos {
|
||||
width : 320px;
|
||||
margin-left: 20px;
|
||||
border: 1px solid #65B821;
|
||||
background-color: #DFF5CD;
|
||||
font-weight: normal;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* SIDEBAR */
|
||||
|
||||
#sidebar div {
|
||||
vertical-align: middle;
|
||||
margin: auto 0 5px 0;
|
||||
line-height: 27px;
|
||||
font-size: 0.9em;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#sidebar .number {
|
||||
line-height: 60px;
|
||||
float: left;
|
||||
height: 62px;
|
||||
padding: 5px;
|
||||
font-size: 4.0em;
|
||||
}
|
||||
|
||||
#sidebar .step {
|
||||
float: right;
|
||||
width: 140px;
|
||||
height: 60px;
|
||||
padding: 5px;
|
||||
border: 1px solid #F4D7E4;
|
||||
}
|
||||
|
||||
|
||||
/* FOOTER */
|
||||
|
||||
#footer {
|
||||
clear: both;
|
||||
margin: 0;
|
||||
padding: 8px 5px 20px 5px;
|
||||
border-top: 1px solid #F4D7E4;
|
||||
text-align: center;
|
||||
font-size: 90%;
|
||||
line-height: 1em;
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
.ac_results {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: 1px solid black;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.ac_results ul {
|
||||
width: 100%;
|
||||
list-style-position: outside;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ac_results li {
|
||||
margin: 0px;
|
||||
padding: 2px 5px;
|
||||
cursor: default;
|
||||
display: block;
|
||||
/*
|
||||
if width will be 100% horizontal scrollbar will apear
|
||||
when scroll mode will be used
|
||||
*/
|
||||
/*width: 100%;*/
|
||||
font: menu;
|
||||
font-size: 12px;
|
||||
/*
|
||||
it is very important, if line-height not setted or setted
|
||||
in relative units scroll will be broken in firefox
|
||||
*/
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*
|
||||
.ac_loading {
|
||||
background: white url('indicator.gif') right center no-repeat;
|
||||
}
|
||||
*/
|
||||
|
||||
.ac_odd {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.ac_over {
|
||||
background-color: #0A246A;
|
||||
color: white;
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
#cluetip-close img {
|
||||
border: 0;
|
||||
}
|
||||
#cluetip-title {
|
||||
overflow: hidden;
|
||||
}
|
||||
#cluetip-title #cluetip-close {
|
||||
float: right;
|
||||
position: relative;
|
||||
}
|
||||
#cluetip-waitimage {
|
||||
width: 43px;
|
||||
height: 11px;
|
||||
position: absolute;
|
||||
background-image: url('../img/loader.gif');
|
||||
}
|
||||
.cluetip-arrows {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -11px;
|
||||
height: 22px;
|
||||
width: 11px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 0;
|
||||
}
|
||||
#cluetip-extra {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cluetip-default {
|
||||
background-color: transparent;
|
||||
}
|
||||
.cluetip-default #cluetip-outer {
|
||||
border: 2px solid #ccc;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cluetip-default h3#cluetip-title {
|
||||
margin: 0 0 5px;
|
||||
padding: 2px 5px;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
background-color: #ccc;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.cluetip-default #cluetip-inner {
|
||||
padding: 0 5px 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.cluetip-default div#cluetip-close {
|
||||
text-align: right;
|
||||
margin: 0 5px 5px;
|
||||
color: #900;
|
||||
}
|
||||
|
||||
/* stupid IE6 HasLayout hack */
|
||||
.cluetip-rounded #cluetip-title,
|
||||
.cluetip-rounded #cluetip-inner {
|
||||
zoom: 1;
|
||||
}
|
||||
@@ -0,0 +1,374 @@
|
||||
/*
|
||||
* FancyBox - jQuery Plugin
|
||||
* Simple and fancy lightbox alternative
|
||||
*
|
||||
* Examples and documentation at: http://fancybox.net
|
||||
*
|
||||
* Copyright (c) 2008 - 2010 Janis Skarnelis
|
||||
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
|
||||
*
|
||||
* Version: 1.3.4 (11/11/2010)
|
||||
* Requires: jQuery v1.3+
|
||||
*
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*/
|
||||
|
||||
/* PrestaShop
|
||||
*
|
||||
* We did several modifications in this file:
|
||||
*
|
||||
* - Persistant arrows
|
||||
* - Fixed IE 6 path on the AlphaLoader method
|
||||
* - Specific path for background images
|
||||
*
|
||||
*/
|
||||
|
||||
#fancybox-loading {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-top: -20px;
|
||||
margin-left: -20px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
z-index: 1104;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-loading div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 40px;
|
||||
height: 480px;
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
}
|
||||
|
||||
#fancybox-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1100;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-tmp {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
overflow: auto;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-wrap {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 20px;
|
||||
z-index: 1101;
|
||||
outline: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-outer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#fancybox-content {
|
||||
width: 0;
|
||||
height: 0;
|
||||
padding: 0;
|
||||
outline: none;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1102;
|
||||
border: 0px solid #fff;
|
||||
}
|
||||
|
||||
#fancybox-hide-sel-frame {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: transparent;
|
||||
z-index: 1101;
|
||||
}
|
||||
|
||||
#fancybox-close {
|
||||
position: absolute;
|
||||
top: -15px;
|
||||
right: -15px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: transparent url('../js/jquery/fancybox/fancybox.png') -40px 0px;
|
||||
cursor: pointer;
|
||||
z-index: 1103;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-error {
|
||||
color: #444;
|
||||
font: normal 12px/20px Arial;
|
||||
padding: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#fancybox-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
outline: none;
|
||||
line-height: 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
#fancybox-frame {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#fancybox-left, #fancybox-right {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
height: 100%;
|
||||
width: 35%;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
background: transparent url('../js/jquery/fancybox/blank.gif');
|
||||
z-index: 1102;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#fancybox-left {
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
#fancybox-right {
|
||||
right: 0px;
|
||||
}
|
||||
|
||||
#fancybox-left-ico, #fancybox-right-ico {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: -9999px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-top: -15px;
|
||||
cursor: pointer;
|
||||
z-index: 1102;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#fancybox-left-ico {
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -30px;
|
||||
left: 20px; /* PrestaShop - make left arrow permanently visible */
|
||||
}
|
||||
|
||||
#fancybox-right-ico {
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -60px;
|
||||
/* PrestaShop - make right arrow permanently visible */
|
||||
right: 20px;
|
||||
left: auto;
|
||||
/* End */
|
||||
}
|
||||
|
||||
#fancybox-left:hover, #fancybox-right:hover {
|
||||
visibility: visible; /* IE6 */
|
||||
}
|
||||
|
||||
#fancybox-left:hover span {
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
#fancybox-right:hover span {
|
||||
left: auto;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.fancybox-bg {
|
||||
position: absolute;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
z-index: 1001;
|
||||
}
|
||||
|
||||
#fancybox-bg-n {
|
||||
top: -20px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-image: url('../js/jquery/fancybox/fancybox-x.png');
|
||||
}
|
||||
|
||||
#fancybox-bg-ne {
|
||||
top: -20px;
|
||||
right: -20px;
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -162px;
|
||||
}
|
||||
|
||||
#fancybox-bg-e {
|
||||
top: 0;
|
||||
right: -20px;
|
||||
height: 100%;
|
||||
background-image: url('../js/jquery/fancybox/fancybox-y.png');
|
||||
background-position: -20px 0px;
|
||||
}
|
||||
|
||||
#fancybox-bg-se {
|
||||
bottom: -20px;
|
||||
right: -20px;
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -182px;
|
||||
}
|
||||
|
||||
#fancybox-bg-s {
|
||||
bottom: -20px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-image: url('../js/jquery/fancybox/fancybox-x.png');
|
||||
background-position: 0px -20px;
|
||||
}
|
||||
|
||||
#fancybox-bg-sw {
|
||||
bottom: -20px;
|
||||
left: -20px;
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -142px;
|
||||
}
|
||||
|
||||
#fancybox-bg-w {
|
||||
top: 0;
|
||||
left: -20px;
|
||||
height: 100%;
|
||||
background-image: url('../js/jquery/fancybox/fancybox-y.png');
|
||||
}
|
||||
|
||||
#fancybox-bg-nw {
|
||||
top: -20px;
|
||||
left: -20px;
|
||||
background-image: url('../js/jquery/fancybox/fancybox.png');
|
||||
background-position: -40px -122px;
|
||||
}
|
||||
|
||||
#fancybox-title {
|
||||
font-family: Helvetica;
|
||||
font-size: 12px;
|
||||
z-index: 1102;
|
||||
}
|
||||
|
||||
.fancybox-title-inside {
|
||||
padding-bottom: 10px;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
background: #fff;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fancybox-title-outside {
|
||||
padding-top: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.fancybox-title-over {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: #FFF;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#fancybox-title-over {
|
||||
padding: 10px;
|
||||
background-image: url('../js/jquery/fancybox/fancy_title_over.png');
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fancybox-title-float {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -20px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
#fancybox-title-float-wrap {
|
||||
border: none;
|
||||
border-collapse: collapse;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#fancybox-title-float-wrap td {
|
||||
border: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#fancybox-title-float-left {
|
||||
padding: 0 0 0 15px;
|
||||
background: url('../js/jquery/fancybox/fancybox.png') -40px -90px no-repeat;
|
||||
}
|
||||
|
||||
#fancybox-title-float-main {
|
||||
color: #FFF;
|
||||
line-height: 29px;
|
||||
font-weight: bold;
|
||||
padding: 0 0 3px 0;
|
||||
background: url('../js/jquery/fancybox/fancybox-x.png') 0px -40px;
|
||||
}
|
||||
|
||||
#fancybox-title-float-right {
|
||||
padding: 0 0 0 15px;
|
||||
background: url('../js/jquery/fancybox/fancybox.png') -55px -90px no-repeat;
|
||||
}
|
||||
|
||||
/* IE6 */
|
||||
|
||||
.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_close.png', sizingMethod='scale'); }
|
||||
|
||||
.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_nav_right.png', sizingMethod='scale'); }
|
||||
|
||||
.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
|
||||
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_title_left.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_title_main.png', sizingMethod='scale'); }
|
||||
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_title_right.png', sizingMethod='scale'); }
|
||||
|
||||
.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
|
||||
height: expression(this.parentNode.clientHeight + "px");
|
||||
}
|
||||
|
||||
#fancybox-loading.fancybox-ie6 {
|
||||
position: absolute; margin-top: 0;
|
||||
top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
|
||||
}
|
||||
|
||||
#fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/jquery/fancybox/fancy_loading.png', sizingMethod='scale'); }
|
||||
|
||||
/* IE6, IE7, IE8 */
|
||||
|
||||
.fancybox-ie .fancybox-bg { background: transparent !important; }
|
||||
|
||||
.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
|
||||
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../js/jquery/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
|
||||
@@ -0,0 +1,127 @@
|
||||
|
||||
div.jGrowl {
|
||||
padding: 10px;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
/** Special IE6 Style Positioning **/
|
||||
div.ie6 {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
div.ie6.top-right {
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.top-left {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.bottom-right {
|
||||
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.bottom-left {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.center {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Normal Style Positions **/
|
||||
body > div.jGrowl {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
body > div.jGrowl.top-left {
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
body > div.jGrowl.top-right {
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
body > div.jGrowl.bottom-left {
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
body > div.jGrowl.bottom-right {
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
body > div.jGrowl.center {
|
||||
top: 0px;
|
||||
width: 50%;
|
||||
left: 25%;
|
||||
}
|
||||
|
||||
/** Cross Browser Styling **/
|
||||
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
opacity: .85;
|
||||
filter: alpha(opacity = 85);
|
||||
zoom: 1;
|
||||
width: 235px;
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
text-align: left;
|
||||
display: none;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification {
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.header {
|
||||
font-weight: bold;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.close {
|
||||
z-index: 99;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-closer {
|
||||
height: 15px;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/** Hide jGrowl when printing **/
|
||||
@media print {
|
||||
div.jGrowl {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
div.zoomdiv {
|
||||
z-index : 100;
|
||||
position : absolute;
|
||||
top:0px;
|
||||
left:0px;
|
||||
width : 200px;
|
||||
height : 200px;
|
||||
background: #ffffff;
|
||||
border:1px solid #CCCCCC;
|
||||
display:none;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
|
||||
|
||||
img.jqzoom{
|
||||
cursor:crosshair;
|
||||
position:relative;
|
||||
|
||||
}
|
||||
+146
@@ -0,0 +1,146 @@
|
||||
/* CSS Document */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Arial;
|
||||
font-size: 13px;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
background-image: url('../img/admin/bg_2.png');
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #902F52;
|
||||
font-size: 20pt;
|
||||
padding: 15px 10px 10px 30px;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
h2 a {
|
||||
color: #dedede;
|
||||
font-size: 7pt;
|
||||
text-decoration: underline;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h2 a:hover {
|
||||
color: #dedede;
|
||||
font-size: 7pt;
|
||||
text-decoration: underline;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #902d50;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #902d50;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
input, textarea, option, select {
|
||||
color: #000;
|
||||
font-family: Arial;
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input:focus, textarea:focus {
|
||||
border: 1px solid #686868;
|
||||
background-color: #DFDFDF;
|
||||
}
|
||||
|
||||
/* CONTENT */
|
||||
|
||||
#container {
|
||||
width: 464px;
|
||||
margin: 5em auto 1em auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#login {
|
||||
height: 313px;
|
||||
background: url('../img/admin/bg_login.gif') no-repeat top center;
|
||||
color: #383838;
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#login form {
|
||||
margin: 0;
|
||||
padding: 40px 30px 25px 30px;
|
||||
}
|
||||
|
||||
#login #submit {
|
||||
margin: 1em 1px;
|
||||
padding: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#login #submit input {
|
||||
padding: 2px 4px;
|
||||
_padding: 0;
|
||||
}
|
||||
|
||||
#login #lost {
|
||||
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
/* ERROR */
|
||||
|
||||
#error {
|
||||
margin: 0 30px 15px 30px;
|
||||
padding: 10px 15px;
|
||||
border: 1px solid #EC9B9B;
|
||||
background-color: #FAE2E3;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#error ol {
|
||||
margin: 15px 0 0 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#error li {
|
||||
_margin-left: 45px;
|
||||
font-family: Arial;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
#error h3 {
|
||||
margin: 0 0 .83em 0;
|
||||
padding: 5px 0 0 30px;
|
||||
background: url(../img/admin/error.png) no-repeat 0 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* CLASS */
|
||||
|
||||
.input {
|
||||
width: 260px;
|
||||
margin-top: 2px;
|
||||
padding: 2px 4px;
|
||||
border: 1px solid #588216;
|
||||
}
|
||||
|
||||
.button {
|
||||
border: 1px solid #DFD5AF;
|
||||
border-top: 1px solid #FFF6D3;
|
||||
border-left: 1px solid #FFF6D3;
|
||||
color: #268CCD;
|
||||
background-color: #FFF6D3;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #F0EBD6;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
.tab-pane {
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 928px;
|
||||
}
|
||||
|
||||
.tab-pane-tax {
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 900px;
|
||||
}
|
||||
|
||||
.tab-row .tab {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
display: inline;
|
||||
margin: 0;
|
||||
float: left;
|
||||
padding: 2px 8px 3px 8px;
|
||||
background: #EFEFEF;
|
||||
z-index: 1;
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.tab-row .tab.selected {
|
||||
border: 1px solid #ccc;
|
||||
border-bottom: 0;
|
||||
background: #FFF6D3;
|
||||
z-index: 3;
|
||||
padding: 2px 25px 4px 25px;
|
||||
margin: 1px -3px -3px 0px;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.tab-page {
|
||||
clear: both;
|
||||
border: 1px solid #ccc;
|
||||
background: #FFFFF0;
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.tab-page table tr td.col-left {
|
||||
width: 150px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.tab-page table tr td p {
|
||||
margin: 0.5em 0 0 0;
|
||||
padding: 0 0 0.5em 0;
|
||||
color: #7F7F7F;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.tab-page table tr td p.block {
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tab-row {
|
||||
z-index: 1;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,174 @@
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
*{padding: 0; margin: 0;}
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_window {
|
||||
font: 12px Arial, Helvetica, sans-serif;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#TB_secondLine {
|
||||
font: 10px Arial, Helvetica, sans-serif;
|
||||
color:#666666;
|
||||
}
|
||||
|
||||
/*#TB_window a:link {color: #666666;}
|
||||
#TB_window a:visited {color: #666666;}
|
||||
#TB_window a:hover {color: #000;}
|
||||
#TB_window a:active {color: #666666;}
|
||||
#TB_window a:focus{color: #666666;}*/
|
||||
#TB_window h2 {
|
||||
text-align:center;
|
||||
padding-bottom: 25px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_overlay {
|
||||
position: fixed;
|
||||
z-index:100;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.TB_overlayMacFFBGHack {background: url(../img/macFFBgHack.png) repeat;}
|
||||
.TB_overlayBG {
|
||||
background-color:#000;
|
||||
filter:alpha(opacity=75);
|
||||
-moz-opacity: 0.75;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
* html #TB_overlay { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_window {
|
||||
position: fixed;
|
||||
background: #ffffff;
|
||||
z-index: 102;
|
||||
color:#000000;
|
||||
display:none;
|
||||
border: 4px solid #525252;
|
||||
text-align:left;
|
||||
top:50%;
|
||||
left:50%;
|
||||
}
|
||||
|
||||
* html #TB_window { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_window img#TB_Image {
|
||||
display:block;
|
||||
margin: 15px 0 0 15px;
|
||||
border-right: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-top: 1px solid #666;
|
||||
border-left: 1px solid #666;
|
||||
}
|
||||
|
||||
#TB_caption{
|
||||
height:25px;
|
||||
padding:7px 30px 10px 25px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#TB_closeWindow{
|
||||
height:25px;
|
||||
padding:11px 25px 10px 0;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_closeAjaxWindow{
|
||||
padding:7px 10px 5px 0;
|
||||
margin-bottom:1px;
|
||||
text-align:right;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_ajaxWindowTitle{
|
||||
float:left;
|
||||
padding:7px 0 5px 10px;
|
||||
margin-bottom:1px;
|
||||
}
|
||||
|
||||
#TB_title{
|
||||
background-color:#e8e8e8;
|
||||
height:27px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent{
|
||||
clear:both;
|
||||
padding:2px 15px 15px 15px;
|
||||
overflow:auto;
|
||||
text-align:left;
|
||||
line-height:1.4em;
|
||||
}
|
||||
|
||||
#TB_ajaxContent.TB_modal{
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent p{
|
||||
padding:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
#TB_load{
|
||||
position: fixed;
|
||||
display:none;
|
||||
height:13px;
|
||||
width:208px;
|
||||
z-index:103;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
|
||||
}
|
||||
|
||||
* html #TB_load { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_HideSelect{
|
||||
z-index:99;
|
||||
position:fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color:#fff;
|
||||
border:none;
|
||||
filter:alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
opacity: 0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
* html #TB_HideSelect { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_iframeContent{
|
||||
clear:both;
|
||||
border:none;
|
||||
margin-bottom:-1px;
|
||||
margin-top:1px;
|
||||
_margin-bottom:1px;
|
||||
}
|
||||
|
||||
*+html #TB_window { /* ie7 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
Reference in New Issue
Block a user