Fix missing header logo in IE8

Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
This commit is contained in:
Florian Strohmaier 2016-12-12 16:54:55 +01:00 committed by Eric Lippmann
parent f0bc12d2c0
commit 634656be7e
1 changed files with 10 additions and 2 deletions

View File

@ -44,7 +44,6 @@
}
#header-logo {
background-image: url('../img/icinga-logo.png');
background-image: url('../img/icinga-logo.svg');
background-position: left center;
background-repeat: no-repeat;
@ -54,7 +53,6 @@
}
#icinga-logo {
background-image: url('../img/icinga-logo-big.png');
background-image: url('../img/icinga-logo-big.svg');
background-position: center bottom;
background-repeat: no-repeat;
@ -64,6 +62,16 @@
width: 100%;
}
.ie8 {
#header-logo {
background-image: url('../img/icinga-logo.png');
}
#icinga-logo {
background-image: url('../img/icinga-logo-big.png');
}
}
#layout {
background-color: @body-bg-color;
color: @text-color;