Bug #22644 ยป 20100513_RFC_14379.diff
typo3/sysext/install/mod/class.tx_install.php (working copy) | ||
---|---|---|
'sysext/install/Resources/Public/Stylesheets/general.css'
|
||
) . '" />';
|
||
// Get the browser info
|
||
$browserInfo = t3lib_utility_Client::getBrowserInfo(t3lib_div::getIndpEnv('HTTP_USER_AGENT'));
|
||
// Add the stylesheet for Internet Explorer
|
||
if ($browserInfo['browser'] === 'msie') {
|
||
// IE7
|
||
if (intval($browserInfo['version']) === 7) {
|
||
$this->stylesheets[] = '<link rel="stylesheet" type="text/css" href="' .
|
||
t3lib_div::createVersionNumberedFilename($this->backPath .
|
||
'sysext/install/Resources/Public/Stylesheets/ie7.css'
|
||
) . '" />';
|
||
// IE6
|
||
} elseif (intval($browserInfo['version']) < 7) {
|
||
$this->stylesheets[] = '<link rel="stylesheet" type="text/css" href="' .
|
||
t3lib_div::createVersionNumberedFilename($this->backPath .
|
||
'sysext/install/Resources/Public/Stylesheets/ie6.css'
|
||
) . '" />';
|
||
}
|
||
}
|
||
// Include the stylesheets based on screen
|
||
if ($this->mode == '123') {
|
||
$this->stylesheets[] = '<link rel="stylesheet" type="text/css" href="' .
|
typo3/sysext/install/Resources/Public/Stylesheets/ie6.css (revision 0) | ||
---|---|---|
@CHARSET "UTF-8";
|
||
/* IE6 only styles */
|
||
/* center align for install tool */
|
||
body {
|
||
text-align: center;
|
||
}
|
||
#t3-install-outer {
|
||
text-align: left;
|
||
}
|
||
/* fix width and position of right hand section */
|
||
#t3-install-right {
|
||
width: 56em;
|
||
padding-left: 0px !important;
|
||
}
|
||
/* fix background image in menu */
|
||
#t3-install-menu li {
|
||
height: 1%;
|
||
}
|
typo3/sysext/install/Resources/Public/Stylesheets/ie7.css (revision 0) | ||
---|---|---|
@CHARSET "UTF-8";
|
||
/* IE7 only styles */
|
||
/* fix position of right hand section */
|
||
#t3-install-right {
|
||
padding-left: 0px !important;
|
||
}
|
||
/* fix background image in menu */
|
||
#t3-install-menu li {
|
||
height: 1%;
|
||
}
|