diff --git a/setup/wizard/path.php b/setup/wizard/path.php index c669924..098ff11 100644 --- a/setup/wizard/path.php +++ b/setup/wizard/path.php @@ -41,8 +41,10 @@ */ $browser = $_SERVER['HTTP_USER_AGENT']; //MSIE 6.0 - if(preg_match("/MSIE 6.0/", $browser)) { + if(preg_match("/MSIE 6\.\d/", $browser)) { define('AGENT', 'IE6'); + } else if(preg_match("/MSIE 7\.\d/", $browser)) { + define('AGENT', 'IE7'); } else { define('AGENT', 'OTHER'); } diff --git a/setup/wizard/resources/css/ie7.css b/setup/wizard/resources/css/ie7.css new file mode 100644 index 0000000..ea96394 --- /dev/null +++ b/setup/wizard/resources/css/ie7.css @@ -0,0 +1,21 @@ +#logo { + right:70%; +} + +.onclick { + cursor: pointer; + color: #EC7725; + /*width: 150px;*/width:350px;padding-top:12px;position:static; +} + +.dependency_details { + padding-top:12px; + position:static; + width:650px; +} + +.dependencies { + position:static; + right:30%; + width:640px; +} \ No newline at end of file diff --git a/setup/wizard/templates/wizard.tpl b/setup/wizard/templates/wizard.tpl index ec2d5ec..25b8730 100644 --- a/setup/wizard/templates/wizard.tpl +++ b/setup/wizard/templates/wizard.tpl @@ -10,6 +10,7 @@ js('wizard.js'); ?> css('wizard.css'); ?> css('ie6.css'); ?> + css('ie7.css'); ?>