How to make entire screen blackish when jquery ui popup is visible?
A:
In the CSS file that came with your jQuery UI download, look for the .ui-widget-overlay selector. Try something like:
.ui-widget-overlay {
background-color: #333;
opacity:0.5;
filter:Alpha(Opacity=50);
}
Matt Sherman
2010-09-22 17:02:04