Explanation: It's a Webkit bug. The popover is supposed to take the "body" element with position: relative; as the parent, but instead on iOS devices (which use Webkit-based browsers) it takes the ".aside" element with position: fixed; overflow: auto; as the parent. That's why it's truncated.
The code in this PR is a workaround to fix that bug (Android devices are unaffected).
Resolves https://github.com/OpenPaaS-Suite/esn-frontend-application-grid/issues/14.
Explanation: It's a Webkit bug. The popover is supposed to take the "body" element with
position: relative;
as the parent, but instead on iOS devices (which use Webkit-based browsers) it takes the ".aside" element withposition: fixed; overflow: auto;
as the parent. That's why it's truncated.The code in this PR is a workaround to fix that bug (Android devices are unaffected).