Commit e13a2af19ba3fcd19a00df060473f7a32da6331b

Authored by Jarrett Jordaan
1 parent 353ba55d

PT:2492070 : Updated CSS.

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
setup/firstlogin/templates/wizard.tpl
... ... @@ -7,8 +7,8 @@
7 7 <?php echo $html->js('jquery-1.4.2.min.js'); ?>
8 8 <?php echo $html->tpjs('jquery_noconflict.js'); ?>
9 9 <?php echo $html->js('firstlogin.js'); ?>
10   - <?php echo $html->css('firstlogin.css'); ?>
11 10 <?php echo $html->css('wizard.css'); ?>
  11 + <?php echo $html->css('firstlogin.css'); ?>
12 12 <?php if(AGENT == "IE6") echo $html->css('ie6.css'); ?>
13 13 <?php if(AGENT == "IE7") echo $html->css('ie7.css'); ?>
14 14 <?php if(AGENT == "IE8") echo $html->css('ie8.css'); ?>
... ...
setup/wizard/resources/css/firstlogin.css
  1 +#outer-wrapper {
  2 + width:900px;
  3 +}
  4 +
  5 +#logo {
  6 + right:70%;
  7 +}
  8 +
1 9 #step_content_templates {
2 10 border: 1px solid rgb(207, 207, 207);
3 11 overflow: auto;
... ...
setup/wizard/resources/js/firstlogin.js
... ... @@ -93,7 +93,7 @@ var createModal = function() {
93 93  
94 94 //Set the popup window to center
95 95 jQuery(id).css('top', 0);
96   - jQuery(id).css('left', 200);
  96 + jQuery(id).css('left', 50);
97 97 jQuery(id).css('background', 'transparent');
98 98 //transition effect
99 99 jQuery(id).fadeIn(2000);
... ...