I've noticed with the new Paper Lantern and the webmail logins that the page doesn't really display as good. I've had clients complain about it.. Because the webmail is running within an iFrame (yuck) it's rendering larger than the browser window is currently set to. Users have to scroll down to see the bottom tool bar in RoundCube for example. Below is some CSS that I put together that fixes this.
I append this to "/usr/local/cpanel/base/webmail/paper_lantern/_assets/css/master-ltr.cmb.min.css"
Yes this file gets reverted back if Cpanel does something to update the webmail internet or Paper Lantern theme.
Code:
#wrap { position: relative; }
#content {
margin: 20px auto auto auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow-y: auto;
}
#content iframe {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
}
/* THE FOLLOWING IS OPTIONAL */
footer { display: none; }
Yes this file gets reverted back if Cpanel does something to update the webmail internet or Paper Lantern theme.