[7.x] [Lens] Fix chart twitching on flyout open (#85430) (#85950)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Marco Liberati 2020-12-16 09:55:17 +01:00 committed by GitHub
parent 42b3ecb40c
commit 514f51e9c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,7 @@
.lnsPieExpression__container {
height: 100%;
width: 100%;
// the FocusTrap is adding extra divs which are making the visualization redraw twice
// with a visible glitch. This make the chart library resilient to this extra reflow
overflow-x: hidden;
}

View file

@ -1,6 +1,9 @@
.lnsXyExpression__container {
height: 100%;
width: 100%;
// the FocusTrap is adding extra divs which are making the visualization redraw twice
// with a visible glitch. This make the chart library resilient to this extra reflow
overflow-x: hidden;
}
.lnsChart__empty {