thats an error in the blockUI generated overlay div looks like this:
<div class="blockUI blockOverlay ui-widget-overlay" style="z-index: 1001; position: fixed; filter: ; zoom: 1;" jQuery1306503573140="70"/>
the empty โfilterโ built-in property overwrites the css property in .ui-widget-overlay, but you can fix this yourself by editing the jquery-ui.xxxxxxx.css file.
just do a search
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30; filter:Alpha(Opacity=30); }
and add a value to an important filter property like this
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30; filter:Alpha(Opacity=30) !important; }
this will force the browser to use the CSS style instead of the incorrect inline style.
source share