Tentura_Atemplatered - Version 1.0.0

Version Notes

aTemplate Version

Download this release

Release Info

Developer Tentura Team
Extension Tentura_Atemplatered
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

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