CS-15315: Fix overlay positioning

Original patch by: olga.smola
reviewed-by: brian
This commit is contained in:
bfederle 2012-06-26 10:23:33 -07:00
parent b2492e2782
commit 25e3f6cebc
2 changed files with 5 additions and 0 deletions

View File

@ -2831,6 +2831,7 @@ Dialogs*/
-webkit-box-shadow: 0px -4px 15px #4C4A4A;
-o-box-shadow: 0px -4px 15px #4C4A4A;
box-shadow: 0px -4px 15px #4C4A4A;
position:absolute;
}
.ui-dialog .ui-widget-content {

View File

@ -39,4 +39,8 @@
return this;
};
$(window).bind('resize scroll', function() {
$('.overlay').css( 'top', $(window).scrollTop());
});
})(window.jQuery);