Flicker with modal dialogs IE10 SharePoint 2010

Has anyone else encountered a problem with Modal Dialogs in SharePoint 2010 with IE10? Both OOB and user modals, when in IE10 mode the normal or compatible browser mode with the standard document mode of IE8 causes a constant flicker. The modal gray color, which is supposed to be above the page, will not be there initially, but then will appear and begin to flicker as soon as you separate the mouse from the modal. The problem seems to disappear if I change the document mode to IE9 mode.

+5
source share
2 answers

I had the same problem. I added this to my CSS file and it removed the flicker.

body.v4master
{
 overflow:hidden !important;
}
0
source

, . script, ,

$(".ms-dlgOverlay").css({
    'position': 'relative'
});

. .

0

All Articles