diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-08 14:24:44 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-16 21:45:11 +0200 |
commit | 1c4dbaeab1efe82775cef824ce87281b20362faf (patch) | |
tree | 6383c4b9ae86b81b4aa10e38ee562a00022e1dca /core/css/fixes.css | |
parent | 2fe9294c5d65e7e2264a8ddf10985bdd00c83a5a (diff) | |
download | nextcloud-server-1c4dbaeab1efe82775cef824ce87281b20362faf.tar.gz nextcloud-server-1c4dbaeab1efe82775cef824ce87281b20362faf.zip |
Fix warning box in IE8
* simulates a black transparent background on a blue pane
Diffstat (limited to 'core/css/fixes.css')
-rw-r--r-- | core/css/fixes.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index a33bd94bb10..5f2cb6049fb 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; +} |