From e6ca5faa9c9d34c4a9528466428813f603b22d45 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Mon, 9 Apr 2018 19:40:57 +0200 Subject: [PATCH] Fix issue with flickering tooltips (#17590) * Use minimal change to fix flickering * Remove deprecated unused CSS --- src/ui/public/chrome/directives/kbn_chrome.less | 5 ++++- src/ui/public/styles/base.less | 8 -------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/ui/public/chrome/directives/kbn_chrome.less b/src/ui/public/chrome/directives/kbn_chrome.less index 35814975ec6b..348f256d5211 100644 --- a/src/ui/public/chrome/directives/kbn_chrome.less +++ b/src/ui/public/chrome/directives/kbn_chrome.less @@ -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(); diff --git a/src/ui/public/styles/base.less b/src/ui/public/styles/base.less index 09345a3f1b28..ed45a657fabd 100644 --- a/src/ui/public/styles/base.less +++ b/src/ui/public/styles/base.less @@ -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; }