mirror of https://github.com/apache/cloudstack.git
CS-15315: Fix overlay positioning
Original patch by: olga.smola reviewed-by: brian
This commit is contained in:
parent
7b7d51cecd
commit
80b8515347
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -43,4 +43,8 @@
|
|||
|
||||
return this;
|
||||
};
|
||||
|
||||
$(window).bind('resize scroll', function() {
|
||||
$('.overlay').css( 'top', $(window).scrollTop());
|
||||
});
|
||||
})(window.jQuery);
|
||||
|
|
|
|||
Loading…
Reference in New Issue