diff --git a/core/css/fixes.css b/core/css/fixes.css index 7ef44ba690..54852eb9be 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -38,6 +38,10 @@ select { background-image: url('../img/actions/settings.png'); } +/* IE8 needs PNG image for header logo */ +.ie8 #header .logo { + background-image: url(../img/logo-icon-175px.png); +} /* IE8 needs background to be set to same color to make transparency look good. */ .lte9 #body-login form input[type="text"] { @@ -51,6 +55,15 @@ select { border-bottom: 1px solid lightgrey; background-color: white; /* don't change background on hover */ } +.ie8 #body-login input[type="submit"] { + padding: 10px 5px; + margin-top: 3px; +} +/* for whatever unexplained reason */ +.ie8 #password { + width: 271px !important; + min-width: auto !important; +} /* disable opacity of info text on gradient since we cannot set a good backround color to use the filter&background hack as with the input labels */ diff --git a/core/css/header.css b/core/css/header.css index b25823411f..369750251c 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -69,10 +69,6 @@ opacity: 1; } -.ie8 #header .logo { - background-image: url(../img/logo-icon-175px.png); -} - #header .logo { background-image: url(../img/logo-icon.svg); background-repeat: no-repeat; diff --git a/core/css/styles.css b/core/css/styles.css index 2dda994ec2..d952a33c24 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -602,11 +602,6 @@ input[name='password-clone'] { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; opacity: .3; } -/* for whatever unexplained reason */ -.ie8 #password { - width: 271px !important; - min-width: auto !important; -} #adminpass-icon, #password-icon { top: 17px; } @@ -854,10 +849,6 @@ label.infield { #body-login input[type="submit"] { padding: 10px 20px; /* larger log in and installation buttons */ } -.ie8 #body-login input[type="submit"] { - padding: 10px 5px; - margin-top: 3px; -} #remember_login { margin: 18px 5px 0 16px !important; vertical-align: text-bottom;