Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tooltips not visible for NVD3 charts on Firefox (apache#7822) (ap…
…ache#7929) This bug was introduced by apache#7102 Using `position:absolute` on body gives `document.documentElement` a height of 0 which propagates to `clientHeight` on Firefox. This leads to a wrong calculation of the tooltip position in NVD3. The solution proposed here is to use `min-height: 100vh` instead of the current technique for stretching the body element to the full window height, thus keeping body and html together.
- Loading branch information