From 1c4dbaeab1efe82775cef824ce87281b20362faf Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 8 Oct 2013 14:24:44 +0200 Subject: [PATCH] Fix warning box in IE8 * simulates a black transparent background on a blue pane --- core/css/fixes.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/fixes.css b/core/css/fixes.css index a33bd94bb1..5f2cb6049f 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -48,3 +48,8 @@ .ie8 .oc-dialog { border: 1px solid #888888; } + +/* IE8 doesn't support transparent background - let's emulate black with an opacity of .3 on a dark blue background*/ +.ie8 fieldset .warning, .ie8 #body-login .error { + background-color: #1B314D; +}