Version Notes
Free - Gray Magento Admin Template for your Magento shop
Our Free Gray Magento Admin Template. Replace your default Magento Admin Template with a nice gray design.
Download this release
Release Info
| Developer | Tentura Team |
| Extension | Tentura_Atemplategray |
| Version | 0.1.0 |
| Comparing to | |
| See all releases | |
Version 0.1.0
- app/code/local/Tentura/Arewrite/.DS_Store +0 -0
- app/code/local/Tentura/Arewrite/Controller/Observer.php +11 -0
- app/code/local/Tentura/Arewrite/etc/config.xml +36 -0
- app/code/local/Tentura/Arewrite/etc/system.xml +24 -0
- app/design/adminhtml/default/atemplate-gray/layout/atemplate.xml +8 -0
- app/design/adminhtml/default/atemplate-gray/template/forgotpassword.phtml +67 -0
- app/design/adminhtml/default/atemplate-gray/template/login.phtml +67 -0
- app/design/adminhtml/default/atemplate-gray/template/resetforgottenpassword.phtml +68 -0
- app/etc/modules/Tentura_Arewrite.xml +9 -0
- package.xml +28 -0
- skin/adminhtml/default/atemplate-gray/atemplate-ie.css +78 -0
- skin/adminhtml/default/atemplate-gray/atemplate-ie8.css +47 -0
- skin/adminhtml/default/atemplate-gray/atemplate-ie9.css +34 -0
- skin/adminhtml/default/atemplate-gray/atemplate.css +865 -0
- skin/adminhtml/default/atemplate-gray/images/add_btn_icon.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/bkg_btn-close2.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/btn_add-image_icon.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/btn_add-widget_icon2.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/btn_go.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/btn_show-hide_icon.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/cancel_btn_icon.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/cancel_icon.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/cancel_icon.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/edit_icon.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/entry_edit_head_arrow_down.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/entry_edit_head_arrow_up.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/grid_sort_asc.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/grid_sort_desc.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/icon_btn_back.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/login_logo.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/logo.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/more_arrow.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/nav2_parent_arrow.gif +0 -0
- skin/adminhtml/default/atemplate-gray/images/rule_component_add.png +0 -0
- skin/adminhtml/default/atemplate-gray/images/save_btn_icon.png +0 -0
app/code/local/Tentura/Arewrite/.DS_Store
ADDED
|
Binary file
|
app/code/local/Tentura/Arewrite/Controller/Observer.php
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
class Tentura_Arewrite_Controller_Observer
|
| 4 |
+
{
|
| 5 |
+
//Event: adminhtml_controller_action_predispatch_start
|
| 6 |
+
public function overrideTheme()
|
| 7 |
+
{
|
| 8 |
+
Mage::getDesign()->setArea('adminhtml')
|
| 9 |
+
->setTheme((string)Mage::getStoreConfig('design/admin/theme'));
|
| 10 |
+
}
|
| 11 |
+
}
|
app/code/local/Tentura/Arewrite/etc/config.xml
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tentura_Arewrite>
|
| 5 |
+
<version>0.1.0</version>
|
| 6 |
+
</Tentura_Arewrite>
|
| 7 |
+
</modules>
|
| 8 |
+
<global>
|
| 9 |
+
<models>
|
| 10 |
+
<tenturaarewritecontroller>
|
| 11 |
+
<class>Tentura_Arewrite_Controller_Observer</class>
|
| 12 |
+
</tenturaarewritecontroller>
|
| 13 |
+
</models>
|
| 14 |
+
<events>
|
| 15 |
+
<adminhtml_controller_action_predispatch_start>
|
| 16 |
+
<observers>
|
| 17 |
+
<tentura_themeoverride_observer>
|
| 18 |
+
<type>singleton</type>
|
| 19 |
+
<!-- inchooadminthemecontroller/observer -->
|
| 20 |
+
<class>Tentura_Atemplate_Controller_Observer</class>
|
| 21 |
+
<method>overrideTheme</method>
|
| 22 |
+
</tentura_themeoverride_observer>
|
| 23 |
+
</observers>
|
| 24 |
+
</adminhtml_controller_action_predispatch_start>
|
| 25 |
+
</events>
|
| 26 |
+
</global>
|
| 27 |
+
<adminhtml>
|
| 28 |
+
<layout>
|
| 29 |
+
<updates>
|
| 30 |
+
<atemplate>
|
| 31 |
+
<file>atemplate.xml</file>
|
| 32 |
+
</atemplate>
|
| 33 |
+
</updates>
|
| 34 |
+
</layout>
|
| 35 |
+
</adminhtml>
|
| 36 |
+
</config>
|
app/code/local/Tentura/Arewrite/etc/system.xml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<sections>
|
| 4 |
+
<design>
|
| 5 |
+
<groups>
|
| 6 |
+
<admin translate="label">
|
| 7 |
+
<label>Admin Template</label>
|
| 8 |
+
<frontend_type>text</frontend_type>
|
| 9 |
+
<sort_order>1</sort_order>
|
| 10 |
+
<show_in_default>1</show_in_default>
|
| 11 |
+
<fields>
|
| 12 |
+
<theme translate="label comment">
|
| 13 |
+
<label>Admin Template name</label>
|
| 14 |
+
<comment>Override default admin theme.</comment>
|
| 15 |
+
<frontend_type>text</frontend_type>
|
| 16 |
+
<sort_order>1</sort_order>
|
| 17 |
+
<show_in_default>1</show_in_default>
|
| 18 |
+
</theme>
|
| 19 |
+
</fields>
|
| 20 |
+
</admin>
|
| 21 |
+
</groups>
|
| 22 |
+
</design>
|
| 23 |
+
</sections>
|
| 24 |
+
</config>
|
app/design/adminhtml/default/atemplate-gray/layout/atemplate.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<layout>
|
| 3 |
+
<default>
|
| 4 |
+
<reference name="head">
|
| 5 |
+
<action method="addCss"><name>atemplate.css</name></action>
|
| 6 |
+
</reference>
|
| 7 |
+
</default>
|
| 8 |
+
</layout>
|
app/design/adminhtml/default/atemplate-gray/template/forgotpassword.phtml
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<?php
|
| 5 |
+
$settings = Mage::getModel('atemplate/atemplate')->load(2);
|
| 6 |
+
$settings = unserialize($settings->getSettings());
|
| 7 |
+
?>
|
| 8 |
+
|
| 9 |
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 10 |
+
<title><?php echo Mage::helper('adminhtml')->__('Log into Magento Admin Page'); ?></title>
|
| 11 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('reset.css'); ?>" media="all" />
|
| 12 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('boxes.css'); ?>" media="all" />
|
| 13 |
+
<link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
|
| 14 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate.css') ?>" media="all" />
|
| 15 |
+
|
| 16 |
+
<link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
|
| 17 |
+
|
| 18 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl(); ?>index.php/x.js?f=prototype/prototype.js,prototype/validation.js,mage/adminhtml/events.js,mage/adminhtml/form.js,scriptaculous/effects.js"></script>
|
| 19 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/captcha.js') ?>"></script>
|
| 20 |
+
|
| 21 |
+
<!--[if IE]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('iestyles.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 22 |
+
<!--[if lt IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('below_ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 23 |
+
<!--[if IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 24 |
+
<!--[if lte IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 25 |
+
<!--[if IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie9.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 26 |
+
<!--[if lte IE 8]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie8.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 27 |
+
</head>
|
| 28 |
+
<body id="page-login">
|
| 29 |
+
<?php echo $this->getChildHtml('atemplate_css')?>
|
| 30 |
+
<div class="login-container">
|
| 31 |
+
<div class="login-logo">
|
| 32 |
+
<div class="login-logo-img">
|
| 33 |
+
<img src='<?php if (isset($settings['header-logo'])) { echo $this->getSkinUrl($settings['header-logo']); }else{ echo $this->getSkinUrl('images/logo.gif'); } ?>' />
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
<div class="login-box">
|
| 37 |
+
<div class="magento-login-logo"><img src='<?php echo $this->getSkinUrl('images/login_logo.png');?>' /></div>
|
| 38 |
+
<form method="post" action="" id="loginForm">
|
| 39 |
+
<fieldset class="login-form">
|
| 40 |
+
<input name="form_key" type="hidden" value="<?php echo $this->getFormKey(); ?>" />
|
| 41 |
+
<h2><?php echo Mage::helper('adminhtml')->__('Forgot your user name or password?'); ?></h2>
|
| 42 |
+
<div id="messages">
|
| 43 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml(); ?>
|
| 44 |
+
</div>
|
| 45 |
+
<div class="input-box forgot-password"><label for="email"><?php echo Mage::helper('adminhtml')->__('Email Address:'); ?></label><br />
|
| 46 |
+
<input type="text" id="email" name="email" value="" class="required-entry input-text forgot-password validate-email" style="width:461px;" />
|
| 47 |
+
</div>
|
| 48 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
| 49 |
+
<div class="clear"></div>
|
| 50 |
+
<div class="form-buttons">
|
| 51 |
+
<a class="left" href="<?php echo $this->getUrl('adminhtml', array('_nosecret' => true)); ?>">« <?php echo Mage::helper('adminhtml')->__('Back to Login'); ?></a>
|
| 52 |
+
|
| 53 |
+
<input type="button" class="forgot-password form-button" onclick="loginForm.submit()" value="<?php echo Mage::helper('adminhtml')->__('Retrieve Password'); ?>" title="<?php echo Mage::helper('adminhtml')->__('Retrieve Password') ?>" />
|
| 54 |
+
|
| 55 |
+
</div>
|
| 56 |
+
</fieldset>
|
| 57 |
+
<p class="legal"><?php echo Mage::helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright © %s Magento Inc.', date('Y')); ?></p>
|
| 58 |
+
</form>
|
| 59 |
+
<div class="bottom"></div>
|
| 60 |
+
<script type="text/javascript">
|
| 61 |
+
var loginForm = new varienForm('loginForm');
|
| 62 |
+
</script>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
</body>
|
| 66 |
+
</html>
|
| 67 |
+
|
app/design/adminhtml/default/atemplate-gray/template/login.phtml
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<?php
|
| 5 |
+
$settings = Mage::getModel('atemplate/atemplate')->load(2);
|
| 6 |
+
$settings = unserialize($settings->getSettings());
|
| 7 |
+
?>
|
| 8 |
+
|
| 9 |
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 10 |
+
<title><?php echo Mage::helper('adminhtml')->__('Log into Magento Admin Page') ?></title>
|
| 11 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('reset.css') ?>" media="all" />
|
| 12 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('boxes.css') ?>" media="all" />
|
| 13 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate.css') ?>" media="all" />
|
| 14 |
+
<link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
|
| 15 |
+
<link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
|
| 16 |
+
|
| 17 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/prototype.js') ?>"></script>
|
| 18 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('prototype/validation.js') ?>"></script>
|
| 19 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('scriptaculous/effects.js') ?>"></script>
|
| 20 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/adminhtml/form.js') ?>"></script>
|
| 21 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl('mage/captcha.js') ?>"></script>
|
| 22 |
+
|
| 23 |
+
<!--[if IE]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('iestyles.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 24 |
+
<!--[if lt IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('below_ie7.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 25 |
+
<!--[if IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('ie7.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 26 |
+
<!--[if lte IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 27 |
+
<!--[if IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie9.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 28 |
+
<!--[if lte IE 8]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie8.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 29 |
+
</head>
|
| 30 |
+
<body id="page-login" onload="document.forms.loginForm.username.focus();">
|
| 31 |
+
<?php echo $this->getChildHtml('atemplate_css')?>
|
| 32 |
+
<div class="login-container">
|
| 33 |
+
<div class="login-logo">
|
| 34 |
+
<div class="login-logo-img">
|
| 35 |
+
<img src='<?php if (isset($settings['header-logo'])) { echo $this->getSkinUrl($settings['header-logo']); }else{ echo $this->getSkinUrl('images/logo.gif'); } ?>' />
|
| 36 |
+
</div>
|
| 37 |
+
</div>
|
| 38 |
+
<div class="login-box">
|
| 39 |
+
<div class="magento-login-logo"><img src='<?php echo $this->getSkinUrl('images/login_logo.png');?>' /></div>
|
| 40 |
+
<form method="post" action="" id="loginForm">
|
| 41 |
+
<div class="login-form">
|
| 42 |
+
<input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />
|
| 43 |
+
<h2><?php echo Mage::helper('adminhtml')->__('Log in to Admin Panel') ?></h2>
|
| 44 |
+
<div id="messages">
|
| 45 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
| 46 |
+
</div>
|
| 47 |
+
<div class="input-box input-left"><label for="username"><?php echo Mage::helper('adminhtml')->__('User Name') ?></label><br/>
|
| 48 |
+
<input type="text" id="username" name="login[username]" value="" class="required-entry input-text" /></div>
|
| 49 |
+
<div class="input-box input-right"><label for="login"><?php echo Mage::helper('adminhtml')->__('Password') ?></label><br />
|
| 50 |
+
<input type="password" id="login" name="login[password]" class="required-entry input-text" value="" /></div>
|
| 51 |
+
<?php echo $this->getChildHtml('form.additional.info'); ?>
|
| 52 |
+
<div class="clear"></div>
|
| 53 |
+
<div class="form-buttons">
|
| 54 |
+
<a class="left" href="<?php echo Mage::helper('adminhtml')->getUrl('adminhtml/index/forgotpassword', array('_nosecret' => true)) ?>"><?php echo Mage::helper('adminhtml')->__('Forgot your password?') ?></a>
|
| 55 |
+
<input type="submit" class="form-button" value="<?php echo Mage::helper('adminhtml')->__('Login') ?>" title="<?php echo Mage::helper('adminhtml')->__('Login') ?>" /></div>
|
| 56 |
+
</div>
|
| 57 |
+
<p class="legal"><?php echo Mage::helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright © %s Magento Inc.', date('Y')) ?></p>
|
| 58 |
+
</form>
|
| 59 |
+
<div class="bottom"></div>
|
| 60 |
+
<script type="text/javascript">
|
| 61 |
+
var loginForm = new varienForm('loginForm');
|
| 62 |
+
</script>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
</body>
|
| 66 |
+
</html>
|
| 67 |
+
|
app/design/adminhtml/default/atemplate-gray/template/resetforgottenpassword.phtml
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<?php
|
| 5 |
+
$settings = Mage::getModel('atemplate/atemplate')->load(2);
|
| 6 |
+
$settings = unserialize($settings->getSettings());
|
| 7 |
+
?>
|
| 8 |
+
|
| 9 |
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 10 |
+
<title><?php echo Mage::helper('adminhtml')->__('Reset a Password'); ?></title>
|
| 11 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('reset.css'); ?>" media="all" />
|
| 12 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('boxes.css'); ?>" media="all" />
|
| 13 |
+
<link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
|
| 14 |
+
<link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
|
| 15 |
+
<link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate.css') ?>" media="all" />
|
| 16 |
+
|
| 17 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>index.php/x.js?f=prototype/prototype.js,prototype/validation.js,mage/adminhtml/events.js,mage/adminhtml/form.js,scriptaculous/effects.js"></script>
|
| 18 |
+
|
| 19 |
+
<!--[if IE]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('iestyles.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 20 |
+
<!--[if lt IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('below_ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 21 |
+
<!--[if IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
|
| 22 |
+
<!--[if lte IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 23 |
+
<!--[if IE 9]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie9.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 24 |
+
<!--[if lte IE 8]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('atemplate-ie8.css') ?>" type="text/css" media="all" /> <![endif]-->
|
| 25 |
+
</head>
|
| 26 |
+
<body id="page-login">
|
| 27 |
+
<?php echo $this->getChildHtml('atemplate_css')?>
|
| 28 |
+
<div class="login-container">
|
| 29 |
+
<div class="login-logo">
|
| 30 |
+
<div class="login-logo-img">
|
| 31 |
+
<img src='<?php if (isset($settings['header-logo'])) { echo $this->getSkinUrl($settings['header-logo']); }else{ echo $this->getSkinUrl('images/logo.gif'); } ?>' />
|
| 32 |
+
</div>
|
| 33 |
+
</div>
|
| 34 |
+
<div class="login-box">
|
| 35 |
+
<div class="magento-login-logo"><img src='<?php echo $this->getSkinUrl('images/login_logo.png');?>' /></div>
|
| 36 |
+
<form method="post" action="<?php echo $this->getUrl('*/*/resetpasswordpost', array('_query' => array('id' => $userId, 'token' => $resetPasswordLinkToken))); ?>" id="reset-password-form">
|
| 37 |
+
<fieldset class="login-form">
|
| 38 |
+
<input name="form_key" type="hidden" value="<?php echo $this->getFormKey(); ?>" />
|
| 39 |
+
<h2><?php echo Mage::helper('adminhtml')->__('Reset a Password'); ?></h2>
|
| 40 |
+
<div id="messages">
|
| 41 |
+
<?php echo $this->getMessagesBlock()->getGroupedHtml(); ?>
|
| 42 |
+
</div>
|
| 43 |
+
<div class="input-box">
|
| 44 |
+
<label for="password"><em class="required">*</em> <?php echo $this->__('New Password'); ?> </label>
|
| 45 |
+
<br />
|
| 46 |
+
<input type="password" class="input-text required-entry validate-admin-password" name="password" id="password" style="width:458px;" />
|
| 47 |
+
</div>
|
| 48 |
+
<div class="input-box">
|
| 49 |
+
<label for="confirmation"><em class="required">*</em> <?php echo $this->__('Confirm New Password'); ?> </label>
|
| 50 |
+
<br />
|
| 51 |
+
<input type="password" class="input-text required-entry validate-cpassword" name="confirmation" id="confirmation" style="width:458px;" />
|
| 52 |
+
</div>
|
| 53 |
+
<div class="clear"></div>
|
| 54 |
+
<div class="form-buttons">
|
| 55 |
+
<a class="left" href="<?php echo $this->getUrl('adminhtml', array('_nosecret' => true)) ?>">« <?php echo Mage::helper('adminhtml')->__('Back to Login'); ?></a>
|
| 56 |
+
<button type="submit" title="<?php echo Mage::helper('adminhtml')->__('Reset Password'); ?>" class="forgot-password"><span><span><span><?php echo Mage::helper('adminhtml')->__('Reset Password'); ?></span></span></span></button>
|
| 57 |
+
</div>
|
| 58 |
+
</fieldset>
|
| 59 |
+
<p class="legal"><?php echo Mage::helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright © %s Magento Inc.', date('Y')); ?></p>
|
| 60 |
+
</form>
|
| 61 |
+
<div class="bottom"></div>
|
| 62 |
+
<script type="text/javascript">
|
| 63 |
+
var resetPasswordForm = new varienForm('reset-password-form');
|
| 64 |
+
</script>
|
| 65 |
+
</div>
|
| 66 |
+
</div>
|
| 67 |
+
</body>
|
| 68 |
+
</html>
|
app/etc/modules/Tentura_Arewrite.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Tentura_Arewrite>
|
| 5 |
+
<active>true</active>
|
| 6 |
+
<codePool>local</codePool>
|
| 7 |
+
</Tentura_Arewrite>
|
| 8 |
+
</modules>
|
| 9 |
+
</config>
|
package.xml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<package>
|
| 3 |
+
<name>Tentura_Atemplategray</name>
|
| 4 |
+
<version>0.1.0</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>
|
| 8 |
+
<extends/>
|
| 9 |
+
<summary>Free - Gray Magento Admin Template for your Magento shop</summary>
|
| 10 |
+
<description><strong>Free - Gray Magento Admin Template for your Magento shop</strong>
|
| 11 |
+
<br /><br />
|
| 12 |
+
<p>
|
| 13 |
+
Our Free Gray Magento Admin Template. Replace your default Magento Admin Template with a nice gray design.
|
| 14 |
+
</p>
|
| 15 |
+
</description>
|
| 16 |
+
<notes><strong>Free - Gray Magento Admin Template for your Magento shop</strong>
|
| 17 |
+
<br /><br />
|
| 18 |
+
<p>
|
| 19 |
+
Our Free Gray Magento Admin Template. Replace your default Magento Admin Template with a nice gray design.
|
| 20 |
+
</p>
|
| 21 |
+
</notes>
|
| 22 |
+
<authors><author><name>Tentura Team</name><user>tentura</user><email>info@tentura.eu</email></author></authors>
|
| 23 |
+
<date>2013-01-20</date>
|
| 24 |
+
<time>14:32:12</time>
|
| 25 |
+
<contents><target name="magelocal"><dir name="Tentura"><dir name="Arewrite"><dir name="Controller"><file name="Observer.php" hash="e3f1a8aa342fbbab0b2c97ead16db1ec"/></dir><dir name="etc"><file name="config.xml" hash="6707980650533b0f5a73005a920342e9"/><file name="system.xml" hash="0f094c32d49379fc191427abba2e0b02"/></dir><file name=".DS_Store" hash="7d032a27b5313abae5f9e931cd3b69ff"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tentura_Arewrite.xml" hash="6d4e0607ce7d82c50382459b634dcec9"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="atemplate-gray"><dir name="layout"><file name="atemplate.xml" hash="efa2e60c227a69bb2952711b9774f22f"/></dir><dir name="template"><file name="forgotpassword.phtml" hash="312cdf3be28ba721e3c6c65c31ba88b9"/><file name="login.phtml" hash="76b8a81bf3049b4562ae4d53723c62da"/><file name="resetforgottenpassword.phtml" hash="f39a4570d093ad43a0c50659e60003b5"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="atemplate-gray"><file name="atemplate-ie.css" hash="6e3115df2bbdd8648894fbc573b0f2a6"/><file name="atemplate-ie8.css" hash="efc8bcde489d0cb7aa9bfa7be7ee7eba"/><file name="atemplate-ie9.css" hash="ea5cc9eeeff51879e7e60aa29d04a34e"/><file name="atemplate.css" hash="83db6c09da95355102ea96882fcb1e88"/><dir name="images"><file name="add_btn_icon.gif" hash="445d49f5699ae094cf47d31450d912a3"/><file name="bkg_btn-close2.png" hash="6f5192997d9e1dfb1d95eba665f5e640"/><file name="btn_add-image_icon.gif" hash="c307b86f04e00ff1b66bd01f809d3a0d"/><file name="btn_add-widget_icon2.png" hash="e91411bd2b736a17a0aa10e90047f705"/><file name="btn_go.gif" hash="f08e8b51ba532e4226c27937efda8ab1"/><file name="btn_show-hide_icon.png" hash="709e1f9a41f3dc08083c9cb78b7ab00e"/><file name="cancel_btn_icon.gif" hash="b0587681877a8b15086d9d5241707414"/><file name="cancel_icon.gif" hash="abd09f6104af5bf17dd891610b309222"/><file name="cancel_icon.png" hash="b0a04e7277101ea62fe93b96824bb58e"/><file name="edit_icon.png" hash="416e295a119e15222c5a8c18891579af"/><file name="entry_edit_head_arrow_down.gif" hash="4ceeb25ee23277648a0b3d1885ba05d2"/><file name="entry_edit_head_arrow_up.gif" hash="a845ee9baab8970992c5112d8a2967fb"/><file name="grid_sort_asc.png" hash="8337633aa7be5446420165713f0c8213"/><file name="grid_sort_desc.png" hash="78f9ba2dab8d24b2cf0786e79233a0a9"/><file name="icon_btn_back.png" hash="4977c9c89bc3ce1674388b05298eee6c"/><file name="login_logo.png" hash="ca172681335fdcb298cbced2894870cf"/><file name="logo.png" hash="77e1a27f8e1d4b3c2198854e2ae6fc13"/><file name="more_arrow.png" hash="8ecb5e00c4860c124be6eeeb53ef611f"/><file name="nav2_parent_arrow.gif" hash="7d8ac752f6dc50f90ec84d978395dfcd"/><file name="rule_component_add.png" hash="5a37c4cb87f8f60c1f68962a35ab0ed1"/><file name="save_btn_icon.png" hash="def541b962c23ceddd26942ae9c89c79"/></dir></dir></dir></dir></target></contents>
|
| 26 |
+
<compatible/>
|
| 27 |
+
<dependencies><required><php><min>5.2.13</min><max>5.4.9</max></php></required></dependencies>
|
| 28 |
+
</package>
|
skin/adminhtml/default/atemplate-gray/atemplate-ie.css
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.header-right a, #page-help-link, .massaction a, .footer a, .link-feed{
|
| 2 |
+
display: inline-block;
|
| 3 |
+
}
|
| 4 |
+
.form-list .value textarea + button{
|
| 5 |
+
margin-top: 5px;
|
| 6 |
+
}
|
| 7 |
+
button.delete.v-middle {
|
| 8 |
+
margin-left: 5px;
|
| 9 |
+
}
|
| 10 |
+
.link-feed{
|
| 11 |
+
background-position: 0 5px;
|
| 12 |
+
}
|
| 13 |
+
.dashboard-container table td + td .entry-edit div ul.tabs-horiz{
|
| 14 |
+
margin-left: 0 !important;
|
| 15 |
+
margin-right: 0 !important;
|
| 16 |
+
}
|
| 17 |
+
.header-top{
|
| 18 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#111111', GradientType=0);
|
| 19 |
+
}
|
| 20 |
+
.nav-bar{
|
| 21 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#111111', GradientType=0);
|
| 22 |
+
}
|
| 23 |
+
dl.accordion dt, .entry-edit .entry-edit-head, .dashboard-container table tbody tr:first-child td:first-child .entry-edit .entry-edit-head, ul.tabs-horiz, .message-popup-head, .dialog .top.table_window td, ul.config-tabs dt, .massaction td{
|
| 24 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa', GradientType=0) !important;
|
| 25 |
+
}
|
| 26 |
+
#nav ul{
|
| 27 |
+
border: solid 1px #ccc !important;
|
| 28 |
+
}
|
| 29 |
+
.switcher, .box, .login-form{
|
| 30 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
|
| 31 |
+
}
|
| 32 |
+
.login-container .legal{
|
| 33 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
|
| 34 |
+
}
|
| 35 |
+
.grid tr.filter{
|
| 36 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#e5e5e5', GradientType=0);
|
| 37 |
+
}
|
| 38 |
+
#nav li.active:first-child, #nav li.parent.active a.active, #nav li.parent.active a:hover, #nav a:hover, #nav ul li a:hover, button, button:hover, .form-button, ul.tabs a:hover, ul.tabs a.active, ul.tabs a:hover.active, ul.tabs a:hover span, ul.tabs a.active span, #nav ul li.parent li a:hover, #nav ul li.parent li.parent li a:hover{
|
| 39 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66cc00', endColorstr='#009900', GradientType=0) !important;
|
| 40 |
+
}
|
| 41 |
+
#nav li.active ul a{
|
| 42 |
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false) !important;
|
| 43 |
+
}
|
| 44 |
+
button:hover, .form-button:hover{
|
| 45 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d866cc00', endColorstr='#d8009900', GradientType=0) !important;
|
| 46 |
+
}
|
| 47 |
+
button.fail, button.cancel, button.delete, .reset-theme #delete_theme{
|
| 48 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6633', endColorstr='#cc0000', GradientType=0) !important;
|
| 49 |
+
}
|
| 50 |
+
button.fail:hover, button.cancel:hover, button.delete:hover, .reset-theme #delete_theme:hover, .reset-theme #delete_theme.disabled:hover{
|
| 51 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8ff6633', endColorstr='#d8cc0000', GradientType=0) !important;
|
| 52 |
+
}
|
| 53 |
+
button.back, button.disabled, #synchronize_button.disabled, .message-popup .message-popup-head a{
|
| 54 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#e6e6e6', GradientType=0) !important;
|
| 55 |
+
}
|
| 56 |
+
button.back:hover, button.disabled:hover, .message-popup .message-popup-head a:hover{
|
| 57 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8f6f6f6', endColorstr='#d8e6e6e6', GradientType=0) !important;
|
| 58 |
+
}
|
| 59 |
+
ul.tabs .active:hover .changed, ul.tabs .changed .changed, ul.tabs span.changed, ul.tabs .changed .error, ul.tabs a.active .error, ul.tabs a.error:hover .error{
|
| 60 |
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false) !important;
|
| 61 |
+
}
|
| 62 |
+
.footer{
|
| 63 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#ffffff', GradientType=0);
|
| 64 |
+
}
|
| 65 |
+
.login-logo-img{
|
| 66 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#111111', GradientType=0);
|
| 67 |
+
}
|
| 68 |
+
.data .headings th{
|
| 69 |
+
-moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 70 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 71 |
+
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 72 |
+
}
|
| 73 |
+
span.atemplate-ie, span.atemplate-ie9, .atemplate-ie8{
|
| 74 |
+
line-height: 15px;
|
| 75 |
+
}
|
| 76 |
+
span.atemplate-ie, span.atemplate-ie9{
|
| 77 |
+
width: 125px;
|
| 78 |
+
}
|
skin/adminhtml/default/atemplate-gray/atemplate-ie8.css
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.dialog table.top.table_window, ul.config-tabs dt, tfoot button.disabled{
|
| 2 |
+
background: none !important;
|
| 3 |
+
}
|
| 4 |
+
.massaction button{
|
| 5 |
+
height: auto !important;
|
| 6 |
+
}
|
| 7 |
+
#html-body button:hover, #html-body .form-button:hover, #html-body button.fail:hover, button.cancel:hover, button.delete:hover, #html-body button.back:hover, button.disabled:hover, .message-popup .message-popup-head a:hover{
|
| 8 |
+
background-color: #ffffff !important;
|
| 9 |
+
}
|
| 10 |
+
button, button.delete{
|
| 11 |
+
background-image: none;
|
| 12 |
+
}
|
| 13 |
+
tfoot button.disabled, tfoot button.disabled:hover{
|
| 14 |
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false) !important;
|
| 15 |
+
}
|
| 16 |
+
.switcher, .box, .login-form, ul.tabs, #nav a, ul.config-tabs dt{
|
| 17 |
+
zoom: 1;
|
| 18 |
+
}
|
| 19 |
+
.entry-edit fieldset{
|
| 20 |
+
outline: none;
|
| 21 |
+
}
|
| 22 |
+
#nav ul li {
|
| 23 |
+
width: 189px;
|
| 24 |
+
}
|
| 25 |
+
button.icon-btn span {
|
| 26 |
+
height: 16px;
|
| 27 |
+
width: 16px;
|
| 28 |
+
display: block;
|
| 29 |
+
}
|
| 30 |
+
#map_container_product .delete span{
|
| 31 |
+
height: 16px;
|
| 32 |
+
display: block;
|
| 33 |
+
}
|
| 34 |
+
.grid tr.headings th a.sort-arrow-desc, .grid tr.headings th a.sort-arrow-asc{
|
| 35 |
+
border-top: 1px solid #cacaca;
|
| 36 |
+
border-left: 1px solid #cacaca;
|
| 37 |
+
}
|
| 38 |
+
.dialog table.table_window{
|
| 39 |
+
border-collapse: collapse;
|
| 40 |
+
}
|
| 41 |
+
.atemplate-ie{
|
| 42 |
+
display: block;
|
| 43 |
+
}
|
| 44 |
+
.atemplate-ie8{
|
| 45 |
+
display: block;
|
| 46 |
+
clear: both;
|
| 47 |
+
}
|
skin/adminhtml/default/atemplate-gray/atemplate-ie9.css
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
dl.accordion dt, ul.tabs-horiz, .message-popup-head, .top.table_window, .switcher, .box, .login-form, .legal, .grid tr.filter, .options-box .option-box, .login-logo-img, #base_fieldset + .entry-edit-head, #rating_form + .entry-edit-head, #product_attribute_tabs_labels_content .entry-edit-head, #mobile_app_tabs_social_section_content .fieldset + .entry-edit-head, #mobile_app_tabs_payment_methods_content .fieldset + .entry-edit-head, #customer_info_tabs_account_content .fieldset + .entry-edit-head, #customer_info_tabs_addresses_content .address-list .entry-edit-head, #promo_catalog_edit_tabs_actions_section_content .fieldset + .rule-tree .entry-edit-head, #promo_catalog_edit_tabs_labels_section_content .fieldset + .entry-edit-head, #page_tabs_design_section_content .fieldset + .entry-edit-head, #profile-generator fieldset + .entry-edit-head, #profile-generator fieldset + #__fieldmapping .entry-edit-head, #connect_extension_edit_tabs_dependencies_content .fieldset + .entry-edit-head, #connect_extension_edit_tabs_dependencies_content fieldset + .entry-edit-head, .form-list .value .entry-edit-head, #answers_container .entry-edit-head, #cache_grid .massaction td{
|
| 2 |
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false) !important;
|
| 3 |
+
-moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 4 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 5 |
+
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
|
| 6 |
+
}
|
| 7 |
+
#poll_tabs_answers_section_content, #connect_extension_edit_tabs_load_local_package_content, #config_edit_form .entry-edit{
|
| 8 |
+
padding-top: 3px !important;
|
| 9 |
+
}
|
| 10 |
+
#html-body button, button, button:hover, button.back, button.back:hover, button.fail, button.cancel, button.delete, button.fail:hover, button.cancel:hover, button.delete:hover, .form-button, .form-button:hover, .message-popup .message-popup-head a, .message-popup .message-popup-head a:hover, #html-body button:hover, #html-body .form-button:hover, #html-body button.fail:hover, #html-body button.cancel:hover, #html-body button.delete:hover, #html-body button.back:hover, #html-body button.disabled:hover, #html-body .message-popup .message-popup-head a:hover, .reset-theme #delete_theme, .reset-theme #delete_theme.disabled:hover{
|
| 11 |
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false) !important;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
input.input-text, .field-100 input.input-text{
|
| 15 |
+
padding-top: 2px !important;
|
| 16 |
+
padding-bottom: 3px !important;
|
| 17 |
+
line-height: 15px !important;
|
| 18 |
+
}
|
| 19 |
+
#nav li.active, #nav a:hover, #nav ul li a:hover,
|
| 20 |
+
button, button:hover, .form-button, ul.tabs a:hover, ul.tabs a.active, ul.tabs a:hover.active, #nav ul li.parent li a:hover, #nav ul li.parent li.parent li a:hover, .message-popup .message-popup-head a, .dialog .top.table_window, ul.config-tabs dt{
|
| 21 |
+
background-image: none !important;
|
| 22 |
+
}
|
| 23 |
+
#html-body button:hover, #html-body .form-button:hover, button.fail, button.cancel, button.delete, #html-body button.fail:hover, #html-body button.cancel:hover, #html-body button.delete:hover, button.back, .message-popup .message-popup-head a, #html-body button.back:hover, #html-body .message-popup .message-popup-head a:hover {
|
| 24 |
+
background-color: none !important;
|
| 25 |
+
}
|
| 26 |
+
#nav li.active.parent{
|
| 27 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
|
| 28 |
+
}
|
| 29 |
+
.actions + .grid .hor-scroll .data, .actions + .grid .data, .adminhtml-api2-attribute-index .grid .hor-scroll .data, .adminhtml-system-currency-index .grid table, .adminhtml-system-currencysymbol-index .grid .hor-scroll .data, .entry-edit .entry-edit-head + fildset .grid table, .entry-edit .entry-edit-head + fieldset .grid table, .grid table, #productsOrderedGrid_table, #productsReviewedGrid_table, #customersNewestGrid_table, #customersMostGrid_table, .magento-login-logo, ul.tabs li:first-child a, ul.tabs li:last-child a, .create-order-sidebar-container, .dashboard-container table tbody tr:first-child td:first-child .entry-edit, .popup-window, .entry-edit, .entry-edit .box-left, .entry-edit .box-right, #product_attribute_tabs .entity-edit, .actions + .grid, #api2_attributes .hor-scroll, #config_edit_form .section-config, #template_configuration .section-config{
|
| 30 |
+
overflow: hidden;
|
| 31 |
+
}
|
| 32 |
+
.atemplate-ie, .atemplate-ie9{
|
| 33 |
+
display: block;
|
| 34 |
+
}
|
skin/adminhtml/default/atemplate-gray/atemplate.css
ADDED
|
@@ -0,0 +1,865 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body{
|
| 2 |
+
background: #fff !important;
|
| 3 |
+
font: 13px/1.5em Trebuchet ms, geneva, Arial, Helvetica, sans-serif;
|
| 4 |
+
}
|
| 5 |
+
input.input-text, textarea, select, .field-100 textarea, .field-100 input.input-text,
|
| 6 |
+
button, .form-button, button:hover, .form-button:hover, .message-popup .message-popup-head a, .message-popup .message-popup-head a:hover, .config-heading .button span, .magento_content, .magento_content label{
|
| 7 |
+
font-size: 12px;
|
| 8 |
+
line-height: 1.5em;
|
| 9 |
+
}
|
| 10 |
+
input.input-text, textarea, select, .field-100 textarea, .field-100 input.input-text, button, .form-button, button:hover, .form-button:hover, .message-popup .message-popup-head a, .message-popup .message-popup-head a:hover, .config-heading .button span, .magento_title, .magento_content, .magento_content label{
|
| 11 |
+
font-family: Trebuchet ms, geneva, Arial, Helvetica, sans-serif !important;
|
| 12 |
+
}
|
| 13 |
+
body, label, input.input-text, textarea, select, .field-100 textarea, .field-100 input.input-text, .form-list td.scope-label, h3, .content-header h3, .popup-window .content-header h3, .magento_content, .magento_content label{
|
| 14 |
+
color: #111;
|
| 15 |
+
}
|
| 16 |
+
a, a:hover{
|
| 17 |
+
color: #33cc00;
|
| 18 |
+
}
|
| 19 |
+
.massaction a, .massaction a:hover{
|
| 20 |
+
color: #000;
|
| 21 |
+
}
|
| 22 |
+
.header-right a, .header-right a:hover, .dashboard-container .entry-edit .a-center .nowrap, .dashboard-container table td + td .box .entry-edit .a-center .nowrap, .grand-total, #page-help-link{
|
| 23 |
+
color: #33cc00 !important;
|
| 24 |
+
}
|
| 25 |
+
button:hover, .form-button:hover, a:hover, .header-right a:hover{
|
| 26 |
+
opacity: 0.8;
|
| 27 |
+
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
ul.tabs-horiz li a, .entry-edit-head, .entry-edit, ul.tabs-horiz, .dialog table.top.table_window, .massaction, .headings, .message-popup-head, .middle dl.accordion dt.open, .section-config.active div.collapseable, .entry-edit .box-left, .entry-edit .box-right, #product_attribute_tabs .entity-edit, .actions + .grid .hor-scroll, .actions + .grid, #api2_attributes .hor-scroll{
|
| 31 |
+
border-radius: 5px 5px 0 0;
|
| 32 |
+
}
|
| 33 |
+
.entry-edit fieldset.a-center, .entry-edit fieldset, .entry-edit .fieldset, #nav ul, .dialog table.mid.table_window, .message-popup-content, .entry-edit .entry-edit-head + fildset .grid table, .order-totals, .config.collapseable, .grid .data tbody:last-child tr:last-child td:last-child.empty-text, .section-config.active .collapseable, .reset-theme, #address_list li:last-child{
|
| 34 |
+
border-radius: 0 0 5px 5px;
|
| 35 |
+
}
|
| 36 |
+
.dashboard-container, .box, .dashboard-container table td + td .box .entry-edit, .switcher, .dialog, .message-popup, ul.tabs, .tier .data, .grid table.border, .actions + .grid .hor-scroll .data, .actions + .grid .data, .adminhtml-api2-attribute-index .grid .hor-scroll .data, .adminhtml-system-currency-index .grid table, .adminhtml-system-currencysymbol-index .grid .hor-scroll .data, .adminhtml-system-currencysymbol-index .fieldset-wide, .store-scope .tree-store-scope, .custom-options .option-box, .super-attributes li.attribute, .middle dl.accordion dt, .section-config .collapseable, .dashboard-container table td + td .entry-edit, .dashboard-container table td + td .box, #productsOrderedGrid_table, #productsReviewedGrid_table, #customersNewestGrid_table, #customersMostGrid_table, .login-form, .legal, .magento-login-logo, .magento-login-logo img, .content-header + .entry-edit #sales_order_view_tabs_order_history_content fieldset, .product-configure-popup, .options-box .option-box, .login-logo-img, .loader, #promo_catalog_edit_tabs_main_section_content .fieldset, #convert_profile_tabs_upload_content fieldset, #config_edit_form .section-config, #template_configuration .section-config, #answers_container .entry-edit-head, #answers_container .fieldset-wide, .backup-dialog, .adminhtml-sales-order-shipment-new #ship_items_container .box-right.entry-edit .order-totals, .middle .notification-global, .backup-dialog .entry-edit{
|
| 37 |
+
border-radius: 5px;
|
| 38 |
+
}
|
| 39 |
+
.actions + .grid .data .headings th:first-child, .form-list .grid .data .headings th:first-child, #answers_container .fieldset-wide + .fieldset-wide, .content-header + div div.grid .hor-scroll .data .headings th:first-child, #rateForm .grid .headings th:first-child, #currency_symbols_form .grid .headings th:first-child, #connect_extension_edit_tabs_authors_content .grid .headings th:first-child, #connect_extension_edit_tabs_dependencies_content .grid .data .headings th:first-child, #contents_fieldset .data .headings th:first-child, .form-list .value .grid .headings th:first-child, #product_options_container .grid .headings th:first-child, .atemplate-example .data .headings th:first-child, #grid_tab_content table .headings th:first-child, .actions + div .massaction td:first-child, #cache_grid .massaction td:first-child, #indexer_processes_grid .massaction td:first-child{
|
| 40 |
+
border-top-left-radius: 5px !important;
|
| 41 |
+
}
|
| 42 |
+
.actions + .grid .data .headings th:last-child, .form-list .grid .data .headings th:last-child, #answers_container .fieldset-wide + .fieldset-wide, .content-header + div div.grid .hor-scroll .data .headings th:last-child, #rateForm .grid .headings th:last-child, #currency_symbols_form .grid .headings th:last-child, #connect_extension_edit_tabs_authors_content .grid .headings th:last-child, #connect_extension_edit_tabs_dependencies_content .grid .data .headings th:last-child, #contents_fieldset .data .headings th:last-child, .form-list .value .grid .headings th:last-child, #product_options_container .grid .headings th:last-child, .atemplate-example .data .headings th:last-child, #grid_tab_content table .headings th:last-child, .actions + div .massaction td:last-child, #cache_grid .massaction td:last-child, #indexer_processes_grid .massaction td:last-child{
|
| 43 |
+
border-top-right-radius: 5px !important;
|
| 44 |
+
}
|
| 45 |
+
.grid table tbody:last-child tr:last-child td:first-child, .table_window .magento_w, .create-order-sidebar-container, #gridProductsSold .data tbody tr:last-child td:first-child, #gridAccounts .data tbody tr:last-child td:first-child, #gridTotalsCustomer .data tbody tr:last-child td:first-child, #gridOrdersCustomer .data tbody tr:last-child td:first-child, .backup-dialog .buttons-set{
|
| 46 |
+
border-bottom-left-radius: 5px;
|
| 47 |
+
}
|
| 48 |
+
.grid table tbody:last-child tr:last-child td:last-child, .table_window .magento_e, .create-order-sidebar-container, #gridProductsSold .data tbody tr:last-child td:last-child, #gridAccounts .data tbody tr:last-child td:last-child, #gridTotalsCustomer .data tbody tr:last-child td:last-child, #gridOrdersCustomer .data tbody tr:last-child td:last-child, .backup-dialog .buttons-set{
|
| 49 |
+
border-bottom-right-radius: 5px;
|
| 50 |
+
}
|
| 51 |
+
.grid .data tfoot tr:last-child td:first-child, .totals th:first-child, #gridProductsSold .data tfoot th:first-child, #gridAccounts .data tfoot th:first-child, #gridTotalsCustomer .data tfoot th:first-child, #gridOrdersCustomer .data tfoot th:first-child{
|
| 52 |
+
border-top-left-radius: 5px;
|
| 53 |
+
border-bottom-left-radius: 5px;
|
| 54 |
+
}
|
| 55 |
+
.grid .data tfoot tr:last-child td:last-child, .totals th:last-child, #gridProductsSold .data tfoot th:last-child, #gridAccounts .data tfoot th:last-child, #gridTotalsCustomer .data tfoot th:last-child, #gridOrdersCustomer .data tfoot th:last-child{
|
| 56 |
+
border-top-right-radius: 5px;
|
| 57 |
+
border-bottom-right-radius: 5px;
|
| 58 |
+
}
|
| 59 |
+
.fieldset-wide .grid .data tfoot tr:last-child td:first-child, .entry-edit-head + #product_options_container, .content-header + div .actions + div + div.grid .data .headings th:first-child, .content-header + div div.grid .hor-scroll .data.order-tables th:first-child, #connect_extension_edit_tabs_authors_content .grid .data tfoot td:first-child, #connect_extension_edit_tabs_dependencies_content .grid .data td:first-child, #contents_fieldset .data tfoot td:first-child, #cache_grid_table .headings th:first-child, #customer_info_tabs_customer_edit_tab_view_content .entry-edit + .entry-edit .entry-edit-head + .grid .data tfoot tr:last-child td:first-child, #product_attribute_tabs_labels_content .entry-edit-head + .box, #promo_catalog_edit_tabs_main_section_content .fieldset{
|
| 60 |
+
border-top-left-radius: 0 !important;
|
| 61 |
+
}
|
| 62 |
+
.fieldset-wide .grid .data tfoot tr:last-child td:last-child, .entry-edit-head + #product_options_container, .content-header + div .actions + div + div.grid .data .headings th:last-child, .content-header + div div.grid .hor-scroll .data.order-tables th:last-child, #connect_extension_edit_tabs_authors_content .grid .data tfoot td:last-child, #connect_extension_edit_tabs_dependencies_content .grid .data td:last-child, #contents_fieldset .data tfoot td:last-child, #cache_grid_table .headings th:last-child, #customer_info_tabs_customer_edit_tab_view_content .entry-edit + .entry-edit .entry-edit-head + .grid .data tfoot tr:last-child td:last-child, #product_attribute_tabs_labels_content .entry-edit-head + .box, #promo_catalog_edit_tabs_main_section_content .fieldset{
|
| 63 |
+
border-top-right-radius: 0 !important;
|
| 64 |
+
}
|
| 65 |
+
#nav ul ul{
|
| 66 |
+
border-radius: 0 5px 5px 5px !important;
|
| 67 |
+
}
|
| 68 |
+
#customer_info_tabs_customer_edit_tab_view_content .box-left, #customer_info_tabs_customer_edit_tab_view_content .box-right, .adminhtml-report-statistics-index #anchor-content .grid .data .headings th, #indexer_processes_grid_table .headings th{
|
| 69 |
+
border-radius: 0 !important;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
.dashboard-container table tbody td + td .entry-edit{
|
| 73 |
+
overflow: visible;
|
| 74 |
+
}
|
| 75 |
+
.dashboard-container, .dashboard-container .entry-edit fieldset.a-center, .dashboard-container .entry-edit fieldset, .entry-edit .fieldset, .main-col-inner .fieldset, .main-col-inner fieldset, .login-form, .magento-login-logo, .entry-edit .entry-edit-head + fieldset{
|
| 76 |
+
border-style: solid !important;
|
| 77 |
+
border-color: #e5e5e5 !important;
|
| 78 |
+
}
|
| 79 |
+
.dashboard-container, .dashboard-container .entry-edit fieldset.a-center, .dashboard-container .entry-edit fieldset, .entry-edit .fieldset, .main-col-inner .fieldset, .main-col-inner fieldset, .login-form, .magento-login-logo, .entry-edit .entry-edit-head + fieldset{
|
| 80 |
+
border-width: 1px !important;
|
| 81 |
+
}
|
| 82 |
+
.product-configure-popup .entry-edit-head{
|
| 83 |
+
border-width: 0 0 1px 0 !important;
|
| 84 |
+
}
|
| 85 |
+
.grid tr.headings th a.sort-arrow-desc, .grid tr.headings th a.sort-arrow-asc, button, .form-button, .message-popup .message-popup-head a, .success-msg, .notice-msg, .error-msg, input.input-text, textarea, select, .field-100 textarea, .field-100 input.input-text, .show-color{
|
| 86 |
+
border-radius: 3px;
|
| 87 |
+
}
|
| 88 |
+
.box, .entry-edit fieldset, .entry-edit .fieldset{
|
| 89 |
+
background: #fafafa;
|
| 90 |
+
}
|
| 91 |
+
.header, .message-popup .message-popup-head a, ul.tabs-horiz, .nav-bar, .grid tr.headings, .massaction, .grid tr.filter, .grid tr.headings th a.sort-arrow-desc, .grid tr.headings th a.sort-arrow-asc, #nav li.active{
|
| 92 |
+
background-image: none;
|
| 93 |
+
}
|
| 94 |
+
.dialog table.top.table_window{
|
| 95 |
+
background-color: none !important;
|
| 96 |
+
}
|
| 97 |
+
.middle, .options-box .option-header, .massaction{
|
| 98 |
+
background: none !important;
|
| 99 |
+
}
|
| 100 |
+
.massaction, .magento-login-logo, ul.tabs li:first-child a, ul.tabs li:last-child a, .create-order-sidebar-container, .dashboard-container table tbody tr:first-child td:first-child .entry-edit, .popup-window, .entry-edit .box-left, .entry-edit .box-right{
|
| 101 |
+
overflow: hidden;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.switcher, .box, .dashboard-container table td + td .entry-edit, .options-box .option-box{
|
| 105 |
+
border: 1px solid #e5e5e5 !important;
|
| 106 |
+
}
|
| 107 |
+
.options-box .option-title, .options-box .option-header{
|
| 108 |
+
border-top: 1px solid #e5e5e5 !important;
|
| 109 |
+
}
|
| 110 |
+
.options-box .option-header{
|
| 111 |
+
border-bottom: 1px solid #e5e5e5 !important;
|
| 112 |
+
margin-bottom: 10px;
|
| 113 |
+
}
|
| 114 |
+
.options-box .option-title{
|
| 115 |
+
padding-top: 10px;
|
| 116 |
+
border-bottom: none !important;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.actions + div + .grid .data .headings th, .dashboard-container .entry-edit-head + fieldset .grid .headings th, #customer_info_tabs_customer_edit_tab_view_content .grid .data .headings th, .adminhtml-report-statistics-index .grid .data .headings th, #cache_grid_table .headings th, #indexer_processes_grid_table .headings th, .adminhtml-sales-order-shipment-new .entry-edit + #ship_items_container .grid .data .headings th, .adminhtml-sales-order-view .entry-edit + .grid .data .headings th, #product_attribute_tabs_labels_content .entry-edit-head + .box{
|
| 120 |
+
border-top: none !important;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
.header-top{
|
| 124 |
+
background-position: 0 0;
|
| 125 |
+
background-color: #111;
|
| 126 |
+
background-repeat: no-repeat;
|
| 127 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333), to(#111));
|
| 128 |
+
background-image: -webkit-linear-gradient(#333, #111);
|
| 129 |
+
background-image: -moz-linear-gradient(top, #333, #111);
|
| 130 |
+
background-image: -ms-linear-gradient(#333, #111);
|
| 131 |
+
background-image: -o-linear-gradient(#333, #111);
|
| 132 |
+
background-image: linear-gradient(#333, #111);
|
| 133 |
+
}
|
| 134 |
+
.nav-bar{
|
| 135 |
+
background-position: 0 0;
|
| 136 |
+
background-color: #111;
|
| 137 |
+
background-repeat: no-repeat;
|
| 138 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333), to(#111)) !important;
|
| 139 |
+
background-image: -webkit-linear-gradient(#333, #111) !important;
|
| 140 |
+
background-image: -moz-linear-gradient(top, #333, #111) !important;
|
| 141 |
+
background-image: -ms-linear-gradient(#333, #111) !important;
|
| 142 |
+
background-image: -o-linear-gradient(#333, #111) !important;
|
| 143 |
+
background-image: linear-gradient(#333, #111) !important;
|
| 144 |
+
}
|
| 145 |
+
dl.accordion dt, .entry-edit .entry-edit-head, ul.tabs-horiz, .message-popup-head, .dialog .top.table_window td, ul.config-tabs dt, .massaction td{
|
| 146 |
+
background-position: 0 0;
|
| 147 |
+
background-color: #aaaaaa;
|
| 148 |
+
background-repeat: no-repeat;
|
| 149 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cccccc), to(#aaaaaa));
|
| 150 |
+
background-image: -webkit-linear-gradient(#cccccc, #aaaaaa);
|
| 151 |
+
background-image: -moz-linear-gradient(top, #cccccc, #aaaaaa);
|
| 152 |
+
background-image: -ms-linear-gradient(#cccccc, #aaaaaa);
|
| 153 |
+
background-image: -o-linear-gradient(#cccccc, #aaaaaa);
|
| 154 |
+
background-image: linear-gradient(#cccccc, #aaaaaa);
|
| 155 |
+
}
|
| 156 |
+
.massaction td{
|
| 157 |
+
border-top: none !important;
|
| 158 |
+
}
|
| 159 |
+
.dialog{
|
| 160 |
+
border: 1px solid #444 !important;
|
| 161 |
+
}
|
| 162 |
+
.backup-dialog .entry-edit{
|
| 163 |
+
border: none !important;
|
| 164 |
+
}
|
| 165 |
+
.backup-dialog .buttons-set {
|
| 166 |
+
border: 1px solid #ddd !important;
|
| 167 |
+
}
|
| 168 |
+
.dialog table.top.table_window{
|
| 169 |
+
overflow: hidden;
|
| 170 |
+
}
|
| 171 |
+
.dialog table.mid.table_window{
|
| 172 |
+
overflow: hidden;
|
| 173 |
+
}
|
| 174 |
+
.dialog table.table_window {
|
| 175 |
+
border-collapse: separate;
|
| 176 |
+
}
|
| 177 |
+
.magento_w, .magento_e, .magento_content{
|
| 178 |
+
background: #fff !important;
|
| 179 |
+
}
|
| 180 |
+
.magento_close {
|
| 181 |
+
background: url(images/cancel_icon.gif) no-repeat 0 0 !important;
|
| 182 |
+
}
|
| 183 |
+
.header-top{
|
| 184 |
+
border-top: solid 1px #000;
|
| 185 |
+
border-bottom: solid 1px #000;
|
| 186 |
+
}
|
| 187 |
+
.backup-dialog{
|
| 188 |
+
background-color: #777777;
|
| 189 |
+
background: rgba(0, 0, 0, 0.5);
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
/* Menu */
|
| 193 |
+
.nav-bar{
|
| 194 |
+
border-top: 1px solid #383838 !important;
|
| 195 |
+
border-bottom: 1px solid #999999 !important;
|
| 196 |
+
}
|
| 197 |
+
.nav-bar li a{
|
| 198 |
+
background: none !important;
|
| 199 |
+
}
|
| 200 |
+
#nav ul li.parent a, #nav ul li.parent li.parent a{
|
| 201 |
+
background-image: url(images/nav2_parent_arrow.gif) !important;
|
| 202 |
+
background-repeat: no-repeat !important;
|
| 203 |
+
background-position: 95% 50% !important;
|
| 204 |
+
}
|
| 205 |
+
#nav ul li.parent li a, #nav ul li.parent li.parent li a{
|
| 206 |
+
background-image: none !important;
|
| 207 |
+
}
|
| 208 |
+
#nav > li.level0{
|
| 209 |
+
background: none !important;
|
| 210 |
+
}
|
| 211 |
+
#nav > li.level0 + li.level0{
|
| 212 |
+
border-left: 1px solid #333;
|
| 213 |
+
}
|
| 214 |
+
#nav li.active, #nav a:hover, #nav ul li a:hover,
|
| 215 |
+
button, button:hover, .form-button, ul.tabs a:hover, ul.tabs a.active, ul.tabs a:hover.active,
|
| 216 |
+
ul.tabs a:hover span, ul.tabs a.active span,
|
| 217 |
+
#nav ul li.parent li a:hover, #nav ul li.parent li.parent li a:hover{
|
| 218 |
+
background-position: 0 0;
|
| 219 |
+
background-color: #66cc00 !important;
|
| 220 |
+
background-repeat: no-repeat;
|
| 221 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#66cc00), to(#009900)) !important;
|
| 222 |
+
background-image: -webkit-linear-gradient(#66cc00, #009900) !important;
|
| 223 |
+
background-image: -moz-linear-gradient(top, #66cc00, #009900) !important;
|
| 224 |
+
background-image: -ms-linear-gradient(#66cc00, #009900) !important;
|
| 225 |
+
background-image: -o-linear-gradient(#66cc00, #009900) !important;
|
| 226 |
+
background-image: linear-gradient(#66cc00, #009900) !important;
|
| 227 |
+
}
|
| 228 |
+
ul.tabs a.active:hover span span{
|
| 229 |
+
background-color: none !important;
|
| 230 |
+
}
|
| 231 |
+
#nav li.over a, #nav li.active a, #nav li.active a.active, #nav li.over ul a:hover,
|
| 232 |
+
#nav li.active, #nav a:hover, #nav ul li a:hover,
|
| 233 |
+
button, .form-button, ul.tabs a:hover, ul.tabs a.active, ul.tabs a:hover.active,
|
| 234 |
+
ul.tabs a:hover span, ul.tabs a.active span, ul.tabs a:hover.active span,
|
| 235 |
+
#nav ul li.parent li a:hover, #nav ul li.parent li.parent li a:hover{
|
| 236 |
+
color: #fff !important;
|
| 237 |
+
}
|
| 238 |
+
#nav a{
|
| 239 |
+
color: #999 !important;
|
| 240 |
+
}
|
| 241 |
+
.nav-bar #nav ul{
|
| 242 |
+
background: #fff !important;
|
| 243 |
+
-moz-box-shadow: 0 3px 8px #999;
|
| 244 |
+
-webkit-box-shadow: 0 3px 8px #999;
|
| 245 |
+
box-shadow: 0 3px 8px #999;
|
| 246 |
+
border-top: none !important;
|
| 247 |
+
}
|
| 248 |
+
#nav ul li{
|
| 249 |
+
background: none !important;
|
| 250 |
+
padding: 0 !important;
|
| 251 |
+
}
|
| 252 |
+
#nav ul span, #nav ul li.last li span{
|
| 253 |
+
background: none !important;
|
| 254 |
+
}
|
| 255 |
+
#nav li.over ul a{
|
| 256 |
+
color: #333 !important;
|
| 257 |
+
}
|
| 258 |
+
.header-right, .header-right .separator{
|
| 259 |
+
color: #ccc;
|
| 260 |
+
}
|
| 261 |
+
input.input-text, textarea, select, .field-100 textarea, .field-100 input.input-text{
|
| 262 |
+
padding: 1px 3px !important;
|
| 263 |
+
border: 1px solid #ccc !important;
|
| 264 |
+
-moz-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
|
| 265 |
+
-webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
|
| 266 |
+
box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
|
| 267 |
+
}
|
| 268 |
+
select{
|
| 269 |
+
padding: 1px !important;
|
| 270 |
+
}
|
| 271 |
+
.header-right input.input-text:focus, input.input-text:focus, textarea:focus, select:focus{
|
| 272 |
+
border: 1px solid #0066ff !important;
|
| 273 |
+
-moz-box-shadow: 0 0 10px #0066ff !important;
|
| 274 |
+
-webkit-box-shadow: 0 0 10px #0066ff !important;
|
| 275 |
+
box-shadow: 0 0 10px #0066ff !important;
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
/* Notification */
|
| 279 |
+
.notification-global, .content-header-floating, .order-totals, .mm-box-blue, .mm-pager ul li a.active, .adminhtml-sales-order-shipment-new #ship_items_container .box-right.entry-edit .order-totals{
|
| 280 |
+
background-color: #fff2e5 !important;
|
| 281 |
+
border-color: #f2d0a8 !important;
|
| 282 |
+
}
|
| 283 |
+
.middle .notification-global{
|
| 284 |
+
border-width: 1px !important;
|
| 285 |
+
border-style: solid !important;
|
| 286 |
+
}
|
| 287 |
+
.adminhtml-sales-order-shipment-new #ship_items_container .box-right.entry-edit .order-totals{
|
| 288 |
+
border-style: solid !important;
|
| 289 |
+
border-width: 1px !important;
|
| 290 |
+
}
|
| 291 |
+
.grid table tfoot tr, .grid table tfoot tr td{
|
| 292 |
+
background-color: #fff2e5 !important;
|
| 293 |
+
}
|
| 294 |
+
.mm-pager ul li a{
|
| 295 |
+
border-color: #09f !important;
|
| 296 |
+
}
|
| 297 |
+
.content-header-floating{
|
| 298 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
| 299 |
+
opacity: .90;
|
| 300 |
+
}
|
| 301 |
+
.notification-global a{
|
| 302 |
+
color: #f60 !important;
|
| 303 |
+
}
|
| 304 |
+
.notification-global a:hover{
|
| 305 |
+
color: #f90 !important;
|
| 306 |
+
text-decoration: underline !important;
|
| 307 |
+
}
|
| 308 |
+
.notification-global .label {
|
| 309 |
+
color: #c00 !important;
|
| 310 |
+
}
|
| 311 |
+
.notification-global span.critical{
|
| 312 |
+
color: #c00 !important;
|
| 313 |
+
}
|
| 314 |
+
|
| 315 |
+
/* Content header */
|
| 316 |
+
.logo{
|
| 317 |
+
height: auto !important;
|
| 318 |
+
}
|
| 319 |
+
.content-header{
|
| 320 |
+
border-bottom: none !important;
|
| 321 |
+
}
|
| 322 |
+
.content-header h3{
|
| 323 |
+
margin: 0 .5em 0 0 !important;
|
| 324 |
+
font-size: 1.5em !important;
|
| 325 |
+
line-height: 1em !important;
|
| 326 |
+
}
|
| 327 |
+
.content-header-floating h3{
|
| 328 |
+
margin-left: 20px !important;
|
| 329 |
+
}
|
| 330 |
+
.switcher, .box, .login-form, .options-box .option-box{
|
| 331 |
+
background-position: 0 0;
|
| 332 |
+
background-color: #f2f2f2;
|
| 333 |
+
background-repeat: no-repeat;
|
| 334 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)) !important;
|
| 335 |
+
background-image: -webkit-linear-gradient(#ffffff, #f2f2f2) !important;
|
| 336 |
+
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2) !important;
|
| 337 |
+
background-image: -ms-linear-gradient(#ffffff, #f2f2f2) !important;
|
| 338 |
+
background-image: -o-linear-gradient(#ffffff, #f2f2f2) !important;
|
| 339 |
+
background-image: linear-gradient(#ffffff, #f2f2f2) !important;
|
| 340 |
+
}
|
| 341 |
+
.field-100{
|
| 342 |
+
padding: 0 7px 0 1px !important;
|
| 343 |
+
border: none !important;
|
| 344 |
+
background: none !important;
|
| 345 |
+
}
|
| 346 |
+
.field-100 textarea, .field-100 input.input-text{
|
| 347 |
+
|
| 348 |
+
}
|
| 349 |
+
.grid tr.filter .range .label{
|
| 350 |
+
font-size: 12px !important;
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
/* Grid */
|
| 354 |
+
.headings th{
|
| 355 |
+
background-position: 0 0;
|
| 356 |
+
background-color: #dddddd !important;
|
| 357 |
+
background-repeat: no-repeat;
|
| 358 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd)) !important;
|
| 359 |
+
background-image: -webkit-linear-gradient(#eeeeee, #dddddd) !important;
|
| 360 |
+
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd) !important;
|
| 361 |
+
background-image: -ms-linear-gradient(#eeeeee, #dddddd) !important;
|
| 362 |
+
background-image: -o-linear-gradient(#eeeeee, #dddddd) !important;
|
| 363 |
+
background-image: linear-gradient(#eeeeee, #dddddd) !important;
|
| 364 |
+
}
|
| 365 |
+
.grid table{
|
| 366 |
+
border: none !important;
|
| 367 |
+
}
|
| 368 |
+
.grid tr.headings th{
|
| 369 |
+
border-right: none !important;
|
| 370 |
+
}
|
| 371 |
+
.grid tr.headings th{
|
| 372 |
+
border-top: solid 1px #bdbdbd !important;
|
| 373 |
+
}
|
| 374 |
+
.grid tr.headings th{
|
| 375 |
+
border-bottom: solid 1px #bdbdbd !important;
|
| 376 |
+
}
|
| 377 |
+
.grid tr.headings th{
|
| 378 |
+
border-left: solid 1px #bdbdbd !important;
|
| 379 |
+
border-right: solid 1px #bdbdbd !important;
|
| 380 |
+
}
|
| 381 |
+
.grid tr.headings th.last{
|
| 382 |
+
border-right: solid 1px #bdbdbd !important;
|
| 383 |
+
}
|
| 384 |
+
.grid tr.headings th + th{
|
| 385 |
+
border-left: none !important;
|
| 386 |
+
}
|
| 387 |
+
.grid tr.filter th{
|
| 388 |
+
border-left: 1px solid #bdbdbd;
|
| 389 |
+
}
|
| 390 |
+
.grid tr.filter th + th{
|
| 391 |
+
border-left: none !important;
|
| 392 |
+
}
|
| 393 |
+
.grid tr.filter th.last{
|
| 394 |
+
border-right: 1px solid #bdbdbd;
|
| 395 |
+
}
|
| 396 |
+
.grid table td{
|
| 397 |
+
border-left: solid 1px;
|
| 398 |
+
border-color: #e5e5e5 !important;
|
| 399 |
+
}
|
| 400 |
+
.grid table td.last{
|
| 401 |
+
border-right: solid 1px #e5e5e5;
|
| 402 |
+
}
|
| 403 |
+
.grid table td + td{
|
| 404 |
+
border-left: 0 !important;
|
| 405 |
+
}
|
| 406 |
+
.grid tr.headings th a{
|
| 407 |
+
color: #333333 !important;
|
| 408 |
+
}
|
| 409 |
+
.grid tr.headings th, .grid tr.headings th.no-link, .adminhtml-system-currency-index .grid .a-right strong, .adminhtml-system-currencysymbol-index .not-sort, .entry-edit .grid tr.headings th.no-link, .main-col-inner .grid tr.headings th{
|
| 410 |
+
color: #666;
|
| 411 |
+
}
|
| 412 |
+
.grid tr.headings th a.sort-arrow-desc, .grid tr.headings th a.sort-arrow-asc{
|
| 413 |
+
background: #f5f5f5;
|
| 414 |
+
-moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
|
| 415 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
|
| 416 |
+
box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
|
| 417 |
+
color: #333 !important;
|
| 418 |
+
border: none !important;
|
| 419 |
+
}
|
| 420 |
+
.grid tr.headings th a.sort-arrow-desc:hover, .grid tr.headings th a.sort-arrow-asc:hover{
|
| 421 |
+
color: #000 !important;
|
| 422 |
+
background: #ffffff;
|
| 423 |
+
-moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
|
| 424 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
|
| 425 |
+
box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
|
| 426 |
+
}
|
| 427 |
+
.grid tr.headings th a.sort-arrow-asc span.sort-title {
|
| 428 |
+
background-image: url(images/grid_sort_asc.png);
|
| 429 |
+
}
|
| 430 |
+
.grid tr.headings th a.sort-arrow-desc span.sort-title {
|
| 431 |
+
background-image: url(images/grid_sort_desc.png);
|
| 432 |
+
}
|
| 433 |
+
.grid tr.filter th{
|
| 434 |
+
background-position: 0 0;
|
| 435 |
+
background-color: #f2f2f2;
|
| 436 |
+
background-repeat: no-repeat;
|
| 437 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
|
| 438 |
+
background-image: -webkit-linear-gradient(#f2f2f2, #e5e5e5);
|
| 439 |
+
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
|
| 440 |
+
background-image: -ms-linear-gradient(#f2f2f2, #e5e5e5);
|
| 441 |
+
background-image: -o-linear-gradient(#f2f2f2, #e5e5e5);
|
| 442 |
+
background-image: linear-gradient(#f2f2f2, #e5e5e5);
|
| 443 |
+
}
|
| 444 |
+
.grid tr.on-mouse{
|
| 445 |
+
background: #e5f2ff !important;
|
| 446 |
+
}
|
| 447 |
+
.qty-table td{
|
| 448 |
+
border-radius: 0 !important;
|
| 449 |
+
}
|
| 450 |
+
#tracking_numbers_table td{
|
| 451 |
+
border-radius: 0 !important;
|
| 452 |
+
}
|
| 453 |
+
.data tfoot th{
|
| 454 |
+
padding-top: 5px;
|
| 455 |
+
padding-bottom: 5px;
|
| 456 |
+
}
|
| 457 |
+
|
| 458 |
+
/* Button */
|
| 459 |
+
button, .form-button{
|
| 460 |
+
border-color: #009900;
|
| 461 |
+
-moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
|
| 462 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
|
| 463 |
+
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
|
| 464 |
+
}
|
| 465 |
+
.content-buttons button, .content-header button, .filter-actions button{
|
| 466 |
+
margin-left: 5px !important;
|
| 467 |
+
}
|
| 468 |
+
button.add span {
|
| 469 |
+
background-image: url(images/add_btn_icon.gif);
|
| 470 |
+
}
|
| 471 |
+
button.save span {
|
| 472 |
+
background-image: url(images/save_btn_icon.png);
|
| 473 |
+
}
|
| 474 |
+
button.back, button.disabled, .message-popup .message-popup-head a{
|
| 475 |
+
background-position: 0 0;
|
| 476 |
+
background-color: #e6e6e6 !important;
|
| 477 |
+
background-repeat: no-repeat;
|
| 478 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6)) !important;
|
| 479 |
+
background-image: -webkit-linear-gradient(#f6f6f6, #e6e6e6) !important;
|
| 480 |
+
background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6) !important;
|
| 481 |
+
background-image: -ms-linear-gradient(#f6f6f6, #e6e6e6) !important;
|
| 482 |
+
background-image: -o-linear-gradient(#f6f6f6, #e6e6e6) !important;
|
| 483 |
+
background-image: linear-gradient(#f6f6f6, #e6e6e6) !important;
|
| 484 |
+
border: solid 1px;
|
| 485 |
+
border-color: #cbcbcb !important;
|
| 486 |
+
color: #555 !important;
|
| 487 |
+
}
|
| 488 |
+
button.back span {
|
| 489 |
+
background-image: url(images/icon_btn_back.png);
|
| 490 |
+
}
|
| 491 |
+
button.fail, button.cancel, button.delete, .reset-theme #delete_theme{
|
| 492 |
+
background-position: 0 0;
|
| 493 |
+
background-color: #ff6633 !important;
|
| 494 |
+
background-repeat: no-repeat;
|
| 495 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff6633), to(#cc0000)) !important;
|
| 496 |
+
background-image: -webkit-linear-gradient(#ff6633, #cc0000) !important;
|
| 497 |
+
background-image: -moz-linear-gradient(top, #ff6633, #cc0000) !important;
|
| 498 |
+
background-image: -ms-linear-gradient(#ff6633, #cc0000) !important;
|
| 499 |
+
background-image: -o-linear-gradient(#ff6633, #cc0000) !important;
|
| 500 |
+
background-image: linear-gradient(#ff6633, #cc0000) !important;
|
| 501 |
+
border: solid 1px;
|
| 502 |
+
border-color: #cc0000 !important;
|
| 503 |
+
color: #fff !important;
|
| 504 |
+
}
|
| 505 |
+
.disabled{
|
| 506 |
+
text-shadow: none !important;
|
| 507 |
+
}
|
| 508 |
+
button.cancel span, button.delete span {
|
| 509 |
+
background-image: url(images/cancel_btn_icon.gif);
|
| 510 |
+
}
|
| 511 |
+
button.go span {
|
| 512 |
+
background-image: url(images/btn_go.gif);
|
| 513 |
+
}
|
| 514 |
+
button.show-hide span {
|
| 515 |
+
background-image: url(images/btn_show-hide_icon.png);
|
| 516 |
+
}
|
| 517 |
+
button.add-widget span {
|
| 518 |
+
background-image: url(images/btn_add-widget_icon2.png);
|
| 519 |
+
}
|
| 520 |
+
button.add-image span {
|
| 521 |
+
background-image: url(images/btn_add-image_icon.gif);
|
| 522 |
+
}
|
| 523 |
+
.magento_buttons button{
|
| 524 |
+
margin-left: 5px;
|
| 525 |
+
}
|
| 526 |
+
.magento_message .buttons-set button{
|
| 527 |
+
margin-right: 8px;
|
| 528 |
+
}
|
| 529 |
+
.entry-edit-head, .massaction, ul.tabs-horiz, .middle dl.accordion dt{
|
| 530 |
+
border: solid 1px #aaa;
|
| 531 |
+
}
|
| 532 |
+
#answers_container .entry-edit-head{
|
| 533 |
+
margin-bottom: 15px;
|
| 534 |
+
}
|
| 535 |
+
.entry-edit .entry-edit-head h4, .entry-edit .entry-edit-head a{
|
| 536 |
+
font-size: 1em;
|
| 537 |
+
line-height: 25px;
|
| 538 |
+
}
|
| 539 |
+
.entry-edit .entry-edit-head h4, .entry-edit .entry-edit-head strong, .entry-edit .entry-edit-head a, .massaction, .massaction .entry-edit, .massaction .entry-edit label, .message-popup .message-popup-head h2, .accordion .ajax, .accordion dt a, ul.config-tabs dt, .magento_title{
|
| 540 |
+
color: #333 !important;
|
| 541 |
+
}
|
| 542 |
+
.adminhtml-dashboard-index .entry-edit fieldset.np, .adminhtml-dashboard-index .entry-edit .fieldset, .massaction .entry-edit fieldset{
|
| 543 |
+
border: none !important;
|
| 544 |
+
}
|
| 545 |
+
.dashboard-container .switcher{
|
| 546 |
+
margin: -4px -1px 0px -1px;
|
| 547 |
+
}
|
| 548 |
+
.dashboard-container table td + td .box .entry-edit{
|
| 549 |
+
background: #fff;
|
| 550 |
+
padding: 5px 0;
|
| 551 |
+
}
|
| 552 |
+
ul.tabs-horiz{
|
| 553 |
+
margin-left: -1px !important;
|
| 554 |
+
margin-right: -1px !important;
|
| 555 |
+
margin-top: -1px;
|
| 556 |
+
padding-top: 7px !important;
|
| 557 |
+
}
|
| 558 |
+
#category_info_tabs{
|
| 559 |
+
border-bottom: none !important;
|
| 560 |
+
}
|
| 561 |
+
ul.tabs-horiz li a{
|
| 562 |
+
background: #eeeeee !important;
|
| 563 |
+
border: none !important;
|
| 564 |
+
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
|
| 565 |
+
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
|
| 566 |
+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
|
| 567 |
+
}
|
| 568 |
+
ul.tabs-horiz li a.active{
|
| 569 |
+
-moz-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
|
| 570 |
+
-webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
|
| 571 |
+
box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
|
| 572 |
+
background: #fff !important;
|
| 573 |
+
}
|
| 574 |
+
.dashboard-container #diagram_tab, .dashboard-container #grid_tab{
|
| 575 |
+
border-bottom: none !important;
|
| 576 |
+
}
|
| 577 |
+
.config-heading .button span{
|
| 578 |
+
text-shadow: none !important;
|
| 579 |
+
}
|
| 580 |
+
.content-header-floating .content-header h3{
|
| 581 |
+
color: #000 !important;
|
| 582 |
+
}
|
| 583 |
+
.footer{
|
| 584 |
+
border-top: solid 1px #eeeeee;
|
| 585 |
+
padding: 2.8em !important;
|
| 586 |
+
margin: 50px 0 0 0;
|
| 587 |
+
background-position: 0 0;
|
| 588 |
+
background-color: #fafafa;
|
| 589 |
+
background-repeat: no-repeat;
|
| 590 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#ffffff));
|
| 591 |
+
background-image: -webkit-linear-gradient(#fafafa, #ffffff);
|
| 592 |
+
background-image: -moz-linear-gradient(top, #fafafa, #ffffff);
|
| 593 |
+
background-image: -ms-linear-gradient(#fafafa, #ffffff);
|
| 594 |
+
background-image: -o-linear-gradient(#fafafa, #ffffff);
|
| 595 |
+
background-image: linear-gradient(#fafafa, #ffffff);
|
| 596 |
+
}
|
| 597 |
+
.content-header-floating button{
|
| 598 |
+
padding-top: 0 !important;
|
| 599 |
+
padding-bottom: 2px !important;
|
| 600 |
+
}
|
| 601 |
+
|
| 602 |
+
/* Message */
|
| 603 |
+
#message-popup-window-mask{
|
| 604 |
+
background-color: #000 !important;
|
| 605 |
+
}
|
| 606 |
+
.message-popup, .product-configure-popup{
|
| 607 |
+
padding: 0 !important;
|
| 608 |
+
-moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
|
| 609 |
+
-webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
|
| 610 |
+
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
|
| 611 |
+
}
|
| 612 |
+
.message-popup{
|
| 613 |
+
background: none !important;
|
| 614 |
+
}
|
| 615 |
+
.message-popup .message-popup-head{
|
| 616 |
+
padding: 4px 0 !important;
|
| 617 |
+
}
|
| 618 |
+
.message-popup .message-popup-head h2{
|
| 619 |
+
font: bold 13px Trebuchet ms, geneva, Arial, Helvetica, sans-serif !important;
|
| 620 |
+
}
|
| 621 |
+
.message-popup .message-popup-head a{
|
| 622 |
+
margin-right: 10px;
|
| 623 |
+
}
|
| 624 |
+
.message-popup-content{
|
| 625 |
+
border: 1px solid #f2d0a8;
|
| 626 |
+
background: #fff2e5 !important;
|
| 627 |
+
}
|
| 628 |
+
.message-popup .message-popup-head a span {
|
| 629 |
+
float: left;
|
| 630 |
+
background: url(images/bkg_btn-close2.png) 0 50% no-repeat !important;
|
| 631 |
+
}
|
| 632 |
+
.message-popup .message-popup-content .read-more a{
|
| 633 |
+
background: url(images/more_arrow.png) 0 50% no-repeat !important;
|
| 634 |
+
}
|
| 635 |
+
.message-popup .message-popup-content .read-more a:hover{
|
| 636 |
+
text-decoration: underline !important;
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
/* Columns */
|
| 640 |
+
.columns{
|
| 641 |
+
background: none;
|
| 642 |
+
}
|
| 643 |
+
ul.tabs a, ul.tabs span{
|
| 644 |
+
background: none;
|
| 645 |
+
color: #000 !important;
|
| 646 |
+
}
|
| 647 |
+
#nav a:hover, ul.tabs a:hover{
|
| 648 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"/* IE8 */;
|
| 649 |
+
opacity: 1;
|
| 650 |
+
}
|
| 651 |
+
ul.tabs a, ul.tabs a.active, ul.tabs a:hover{
|
| 652 |
+
border: none !important;
|
| 653 |
+
}
|
| 654 |
+
ul.tabs li + li a, .config-tabs dl dd + dd a{
|
| 655 |
+
border-top: solid 1px #e5e5e5 !important;
|
| 656 |
+
}
|
| 657 |
+
ul.tabs a:hover, ul.tabs a.active, ul.tabs a:hover.active{
|
| 658 |
+
color: #fff;
|
| 659 |
+
}
|
| 660 |
+
ul.tabs li + li a:hover, ul.tabs li + li a.active, ul.tabs li + li a:hover.active, .config-tabs dl dd + dd a:hover, .config-tabs dl dd a.active{
|
| 661 |
+
padding: 1px 0 0 0 !important;
|
| 662 |
+
}
|
| 663 |
+
ul.tabs a:hover, ul.tabs a:hover span, .config-tabs dl dd + dd a:hover, .config-tabs dl dd a.active,
|
| 664 |
+
.config-tabs dl dd + dd a:hover span, .config-tabs dl dd a.active span{
|
| 665 |
+
-moz-box-shadow: none !important;
|
| 666 |
+
-webkit-box-shadow: none !important;
|
| 667 |
+
box-shadow: none !important;
|
| 668 |
+
}
|
| 669 |
+
ul.tabs a.error, ul.tabs a.error:hover{
|
| 670 |
+
background-color: #F2D0A8 !important;
|
| 671 |
+
}
|
| 672 |
+
ul.tabs a.error:hover{
|
| 673 |
+
background-color: #fff2e5 !important;
|
| 674 |
+
}
|
| 675 |
+
ul.config-tabs dt{
|
| 676 |
+
border-top: none !important;
|
| 677 |
+
padding-top: 4px !important;
|
| 678 |
+
padding-bottom: 4px !important;
|
| 679 |
+
}
|
| 680 |
+
ul.config-tabs dl{
|
| 681 |
+
margin-bottom: 0 !important;
|
| 682 |
+
}
|
| 683 |
+
ul.tabs{
|
| 684 |
+
background: #fff;
|
| 685 |
+
border: solid 1px #e5e5e5 !important;
|
| 686 |
+
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
|
| 687 |
+
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
|
| 688 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
|
| 689 |
+
overflow: hidden;
|
| 690 |
+
}
|
| 691 |
+
.tier .data, .grid table.border{
|
| 692 |
+
overflow: hidden;
|
| 693 |
+
}
|
| 694 |
+
.grid table.border tfoot tr td{
|
| 695 |
+
background: #fff !important;
|
| 696 |
+
}
|
| 697 |
+
.fieldset-wide .form-list td.value input.input-text{
|
| 698 |
+
width: 95% !important;
|
| 699 |
+
}
|
| 700 |
+
.grid table tfoot tr td{
|
| 701 |
+
border-top: none !important;
|
| 702 |
+
}
|
| 703 |
+
.store-scope .tree-store-scope, .custom-options .option-box, .super-attributes li.attribute{
|
| 704 |
+
border: solid 1px #e5e5e5 !important;
|
| 705 |
+
background: #fff !important;
|
| 706 |
+
}
|
| 707 |
+
.custom-options .option-header{
|
| 708 |
+
background: #fff !important;
|
| 709 |
+
border-bottom: none !important;
|
| 710 |
+
}
|
| 711 |
+
.grid .data.order-tables td{
|
| 712 |
+
border-bottom: solid 1px #e5e5e5 !important;
|
| 713 |
+
}
|
| 714 |
+
input.validation-failed, .validation-failed{
|
| 715 |
+
border: 1px solid #ff3300 !important;
|
| 716 |
+
}
|
| 717 |
+
input.validation-failed:focus, .validation-failed:focus{
|
| 718 |
+
border: 1px solid #ff3300 !important;
|
| 719 |
+
-moz-box-shadow: 0 0 10px #ff3300 !important;
|
| 720 |
+
-webkit-box-shadow: 0 0 10px #ff3300 !important;
|
| 721 |
+
box-shadow: 0 0 10px #ff3300 !important;
|
| 722 |
+
}
|
| 723 |
+
.notice-msg{
|
| 724 |
+
border: 1px solid #f2d0a8 !important;
|
| 725 |
+
background-color: #fff2e5 !important;
|
| 726 |
+
color: #cc6600 !important;
|
| 727 |
+
}
|
| 728 |
+
.error-msg {
|
| 729 |
+
border: 1px solid #FFD9D9 !important;
|
| 730 |
+
color: #c00 !important;
|
| 731 |
+
background-color: #FFF2F2 !important;
|
| 732 |
+
}
|
| 733 |
+
.success-msg {
|
| 734 |
+
border: 1px solid #CCF2BF !important;
|
| 735 |
+
color: #390 !important;
|
| 736 |
+
background-color: #F2FFF2 !important;
|
| 737 |
+
}
|
| 738 |
+
.order-totals{
|
| 739 |
+
border-top: none !important;
|
| 740 |
+
}
|
| 741 |
+
.emph, .accent{
|
| 742 |
+
color: #000 !important;
|
| 743 |
+
font-size: 14px;
|
| 744 |
+
}
|
| 745 |
+
dl.accordion dt a, div.collapseable a{
|
| 746 |
+
line-height: 2em;
|
| 747 |
+
}
|
| 748 |
+
dl.accordion dt a, div.collapseable a {
|
| 749 |
+
background: url(images/entry_edit_head_arrow_down.gif) 100% 50% no-repeat;
|
| 750 |
+
}
|
| 751 |
+
dl.accordion dt.open a, div.collapseable a.open {
|
| 752 |
+
background: url(images/entry_edit_head_arrow_up.gif) 100% 50% no-repeat;
|
| 753 |
+
}
|
| 754 |
+
.grid table tfoot tr td, .order-choose-address, .order-save-in-address-book{
|
| 755 |
+
background: #f5f5f5 !important;
|
| 756 |
+
}
|
| 757 |
+
.order-choose-address{
|
| 758 |
+
border-bottom: solid 1px #e5e5e5 !important;
|
| 759 |
+
}
|
| 760 |
+
.order-save-in-address-book{
|
| 761 |
+
border-top: solid 1px #e5e5e5 !important;
|
| 762 |
+
}
|
| 763 |
+
.sub-btn-set{
|
| 764 |
+
border: solid 1px #e5e5e5 !important;
|
| 765 |
+
}
|
| 766 |
+
#address_list li{
|
| 767 |
+
border: solid 1px #e5e5e5 !important;
|
| 768 |
+
border-top: none !important;
|
| 769 |
+
}
|
| 770 |
+
.address-list li.on{
|
| 771 |
+
background: #f1f1f1;
|
| 772 |
+
}
|
| 773 |
+
.address-list .btn-remove-address, .rule-param-remove{
|
| 774 |
+
background: url(images/cancel_icon.png) 50% 50% no-repeat;
|
| 775 |
+
}
|
| 776 |
+
.address-list .btn-edit-address{
|
| 777 |
+
background: url(images/edit_icon.png) 50% 50% no-repeat;
|
| 778 |
+
}
|
| 779 |
+
.rule-param-new-child .label{
|
| 780 |
+
background: url(images/rule_component_add.png) 50% 50% no-repeat;
|
| 781 |
+
}
|
| 782 |
+
.address-list .btn-remove-address img, .address-list .btn-edit-address img, .rule-param-remove img, .rule-param-new-child .label img{
|
| 783 |
+
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
| 784 |
+
opacity: 0;
|
| 785 |
+
}
|
| 786 |
+
.order-totals .divider{
|
| 787 |
+
background: #f2d0a8 !important;
|
| 788 |
+
}
|
| 789 |
+
.create-order-sidebar-container .sub-btn-set{
|
| 790 |
+
border-left: none !important;
|
| 791 |
+
border-right: none !important;
|
| 792 |
+
border-bottom: none !important;
|
| 793 |
+
}
|
| 794 |
+
.create-order-sidebar-container{
|
| 795 |
+
border: solid 1px #e5e5e5 !important;
|
| 796 |
+
}
|
| 797 |
+
.create-order-sidebar-block .head{
|
| 798 |
+
border-top: solid 1px #e5e5e5 !important;
|
| 799 |
+
border-bottom: solid 1px #e5e5e5 !important;
|
| 800 |
+
background: #f5f5f5 !important;
|
| 801 |
+
}
|
| 802 |
+
#moneybookers_multifuncbutton span{
|
| 803 |
+
margin-top: 0 !important;
|
| 804 |
+
}
|
| 805 |
+
|
| 806 |
+
/* Login */
|
| 807 |
+
.login-form, .login-container .legal, .login-box .bottom, .login-container, .login-box{
|
| 808 |
+
background-image: none;
|
| 809 |
+
}
|
| 810 |
+
.login-form{
|
| 811 |
+
margin-bottom: 10px;
|
| 812 |
+
}
|
| 813 |
+
.login-logo{
|
| 814 |
+
margin-bottom: 3px;
|
| 815 |
+
width: 581px;
|
| 816 |
+
padding-left: 34px;
|
| 817 |
+
line-height: 0;
|
| 818 |
+
}
|
| 819 |
+
.login-logo-img{
|
| 820 |
+
background-position: 0 0;
|
| 821 |
+
background-color: #111;
|
| 822 |
+
background-repeat: no-repeat;
|
| 823 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333), to(#111));
|
| 824 |
+
background-image: -webkit-linear-gradient(#333, #111);
|
| 825 |
+
background-image: -moz-linear-gradient(top, #333, #111);
|
| 826 |
+
background-image: -ms-linear-gradient(#333, #111);
|
| 827 |
+
background-image: -o-linear-gradient(#333, #111);
|
| 828 |
+
background-image: linear-gradient(#333, #111);
|
| 829 |
+
border: solid 1px #000000;
|
| 830 |
+
padding: 3px 0;
|
| 831 |
+
}
|
| 832 |
+
.login-container{
|
| 833 |
+
padding-left: 0;
|
| 834 |
+
}
|
| 835 |
+
.login-box{
|
| 836 |
+
width: 581px;
|
| 837 |
+
padding-left: 34px;
|
| 838 |
+
position: relative;
|
| 839 |
+
}
|
| 840 |
+
.login-form .input-box input.input-text{
|
| 841 |
+
width: 220px;
|
| 842 |
+
}
|
| 843 |
+
.legal{
|
| 844 |
+
margin-top: 10px;
|
| 845 |
+
}
|
| 846 |
+
.magento-login-logo{
|
| 847 |
+
line-height: 0;
|
| 848 |
+
position: absolute;
|
| 849 |
+
left: 0;
|
| 850 |
+
}
|
| 851 |
+
.magento-login-logo img{
|
| 852 |
+
position: relative;
|
| 853 |
+
z-index: -1;
|
| 854 |
+
}
|
| 855 |
+
.login-container .legal{
|
| 856 |
+
background-position: 0 0;
|
| 857 |
+
background-color: #ffffff;
|
| 858 |
+
background-repeat: no-repeat;
|
| 859 |
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ffffff)) !important;
|
| 860 |
+
background-image: -webkit-linear-gradient(#ffffff, #ffffff) !important;
|
| 861 |
+
background-image: -moz-linear-gradient(top, #ffffff, #ffffff) !important;
|
| 862 |
+
background-image: -ms-linear-gradient(#ffffff, #ffffff) !important;
|
| 863 |
+
background-image: -o-linear-gradient(#ffffff, #ffffff) !important;
|
| 864 |
+
background-image: linear-gradient(#ffffff, #ffffff) !important;
|
| 865 |
+
}
|
skin/adminhtml/default/atemplate-gray/images/add_btn_icon.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/bkg_btn-close2.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/btn_add-image_icon.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/btn_add-widget_icon2.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/btn_go.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/btn_show-hide_icon.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/cancel_btn_icon.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/cancel_icon.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/cancel_icon.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/edit_icon.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/entry_edit_head_arrow_down.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/entry_edit_head_arrow_up.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/grid_sort_asc.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/grid_sort_desc.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/icon_btn_back.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/login_logo.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/logo.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/more_arrow.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/nav2_parent_arrow.gif
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/rule_component_add.png
ADDED
|
Binary file
|
skin/adminhtml/default/atemplate-gray/images/save_btn_icon.png
ADDED
|
Binary file
|
