Whilst building our new Intranet in SharePoint 2010, our directors at Ridgian went and d bought some of the new Surface devices, and meanwhile, we had a rollout of Windows 8 with IE10. Should have perhaps done a little more regression testing before we did this, but that’s life …
One issue we can up with pretty quickly is that when IE10 is rendering a SharePoint 2010 page and we have the metatag on the page :
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
(which strictly speaking we don’t need, as it’s the default)
Then we get an issue in IE10 whereby if you select any of the the drop down options on the Ribbon the screen goes white!! You can still see the edges of the <div> which you wanted e.g alerts or upload new document, but the page is pretty unusable for all but the hardiest users!
I’ve no solution for this which I deem proper, but you can workaround the issue with a simple CSS entry in either your last CSS file which is rendered or put it directly into your masterpage before the </head> close tag:
<style type="text/css">
.ms-cui-modalDiv-ie,.ms-cui-glass-ie
{
background-color:transparent !important;
}
</style>
This basically turns the white div background which is causing the issue transparent – so the problem appears to go away …
If anybody has a rigorous solution, do let me know …
Cheers
Dave Mc






Leave a reply to Jan Lenoch Cancel reply