From 634656be7ea41f6c7c67351a97f41308c769196b Mon Sep 17 00:00:00 2001 From: Florian Strohmaier Date: Mon, 12 Dec 2016 16:54:55 +0100 Subject: [PATCH] Fix missing header logo in IE8 Signed-off-by: Eric Lippmann --- public/css/icinga/layout.less | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/public/css/icinga/layout.less b/public/css/icinga/layout.less index 490be38eb..2df3fe433 100644 --- a/public/css/icinga/layout.less +++ b/public/css/icinga/layout.less @@ -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;