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 7b7d51cecd
commit 80b8515347
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

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