2

After upgrading to Firefox, our O365 Mail/Outlook Add-In is rendering with significant horizontal clipping and as a result, a scroll bar is presented in order to move down up and down the Add-In UI. All other browsers render the full Add-In properly - no scroll bar needed.

Other Add-Ins are likely to have something similar and I see a related item flex not working in firefox 53 but our issue is related to O365 add-ins - similar root issue I expect

The addin is loaded within an iframe so dev cannot change the parent window code given the different domain.

Any solutions or news on a fix would be greatly appreciated

3 Answers3

2

I think there is a space missing after the '%' in height: calc(100%- 66px); in the stylesheet from microsoft. But i can't find a good bug form...

without space:

.o365-EXTP-app {
    width: 100%;
    height: -webkit-calc(100% - 66px);
    height: -moz-calc(100% - 66px);
    height: calc(100%- 66px);
}

with space

.o365-EXTP-app {
    width: 100%;
    height: -webkit-calc(100% - 66px);
    height: -moz-calc(100% - 66px);
    height: calc(100% - 66px);
}
2

This is a known issue and we are working to resolve it soon.

0

We ran into the same issue in Firefox 53.0. After the Firefox being updated to 53.0.2, this issue is gone.