From 3444c15b8699d4199843830755e815f320467602 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sat, 7 Dec 2013 17:03:53 +0100 Subject: [PATCH] fix IE8 transparent background --- core/css/fixes.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/fixes.css b/core/css/fixes.css index 3cdeccb038..bec002b96b 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -58,3 +58,8 @@ .ie9 #navigation { width: 100px; } + +/* IE8 isn't able to display transparent background. So it is specified using a gradient */ +.ie8 #nojavascript { + filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c320000', endColorstr='#4c320000'); /* IE */ +}