summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-05-30 23:01:48 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-05-30 23:01:48 -0600
commit8482f51e1546f9131835bed5cd52bba1f2895e20 (patch)
tree7d9380bd50b47ac86377ba4843f1c51f1c85c58e
parentb4b6a0b8d407301d2c36042e3f0cdf167a11d9b9 (diff)
Add transparency for overlay in IE 7 and 8
-rw-r--r--modules/gallery/js/fullsize.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gallery/js/fullsize.js b/modules/gallery/js/fullsize.js
index 7428adb5..f95dc428 100644
--- a/modules/gallery/js/fullsize.js
+++ b/modules/gallery/js/fullsize.js
@@ -7,9 +7,9 @@ $(document).ready(function() {
var height = $(document).height();
$("body").append('<div id="gFullsizeOverlay" class="ui-dialog-overlay" ' +
- 'style="border: none; margin: 0; padding: 0; background: #000 ' +
- 'none repeat scroll 0% 0%; position: absolute; top: 0px; left: 0px; ' +
- 'width: ' + width + 'px; height: ' + height + 'px; opacity: 0.7; ' +
+ 'style="border: none; margin: 0; padding: 0; background-color: #000; ' +
+ 'position: absolute; top: 0px; left: 0px; ' +
+ 'width: ' + width + 'px; height: ' + height + 'px; opacity: 0.7; filter: alpha(opacity=70);' +
'-moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; ' +
'-moz-background-inline-policy: -moz-initial; z-index: 1001;"> </div>');