diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-10-20 23:55:18 -0700 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-10-20 23:55:18 -0700 |
commit | f5a6d6b43e6a91d0e9ef0940e1a83530f5a5cff6 (patch) | |
tree | ecd8e81958ceb27474582995218fdc44d5ce6094 /core | |
parent | c93328bddf3bd6c3d4718ee7aacddbe0b378e988 (diff) | |
parent | 1c4dbaeab1efe82775cef824ce87281b20362faf (diff) | |
download | nextcloud-server-f5a6d6b43e6a91d0e9ef0940e1a83530f5a5cff6.tar.gz nextcloud-server-f5a6d6b43e6a91d0e9ef0940e1a83530f5a5cff6.zip |
Merge pull request #5200 from owncloud/ie8-warning-fix
Fix warning box in IE8
Diffstat (limited to 'core')
-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; +} |