diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-12-07 17:03:53 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-12-07 17:03:53 +0100 |
commit | 3444c15b8699d4199843830755e815f320467602 (patch) | |
tree | 4d80b03210b54e5f50d24095fd14ec3627c54844 /core/css/fixes.css | |
parent | 1dc9998920f7b0dcb85e019e69d75fb71cf3d897 (diff) | |
download | nextcloud-server-3444c15b8699d4199843830755e815f320467602.tar.gz nextcloud-server-3444c15b8699d4199843830755e815f320467602.zip |
fix IE8 transparent background
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 3cdeccb0387..bec002b96b3 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 */ +} |