[4.1 Beta 1] Overlays appearance: 1) Overlay box-shadow cut-off, 2) Overlay structure footer border-radius
In Beta 1 build002, the overlay scrolling issue in
issue #5750 is fixed now, thank you.

. With this fixed, a couple of minor appearance issues have been identified with the VW overlays in XenForo 2.x.
1) There is one line of CSS that causes the overlay box shadow to be cut off, if the overlay's height is greater than 80% of the viewport height. This happens with overlays from Special:WikiCodeList and within the admin cp.
In the template
vw_block.less,
removing the following CSS fixed the box-shadow for me:
Code:
.vw-overlay {
max-height: 80%;
}
2) There is a a minor visual bug with border-radius at the bottom left and right corners. The main overlay contents has border-radius applied but then the footer element shows immediately under it, and it also is styled without any border-radius. Moving the .vw-overlay-foot element to become a child of .block-container (instead of a sibling) fixed the border-radius issue.
Instead of:
- block
- block-container
- vw-overlay-foot
Change hierachy to: