Fix issue with flickering tooltips (#17590) (#17619)

* Use minimal change to fix flickering

* Remove deprecated unused CSS
This commit is contained in:
Tim Roes 2018-04-09 20:39:46 +02:00 committed by GitHub
parent cfeb37b78f
commit 42a09bec3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 9 deletions

View file

@ -2,7 +2,10 @@
@import (reference) "~ui/styles/mixins";
@import (reference) "~ui/styles/variables";
body { overflow-x: hidden; }
body {
overflow-x: hidden;
min-height: 100%;
}
.app-wrapper {
.real-flex-parent();

View file

@ -6,14 +6,6 @@
@import "./react-select";
@import "./pui_react";
/**
* 1. Prevent flickering of gauge visualization when tooltip is opened.
* https://github.com/elastic/kibana/pull/17227
*/
.euiBody-hasToolTip {
position: static !important; /* 1 */
}
.small {
font-size: 0.9em !important;
}