Skip to content

Commit e6ca5fa

Browse files
authored
Fix issue with flickering tooltips (#17590)
* Use minimal change to fix flickering * Remove deprecated unused CSS
1 parent 2e63dbb commit e6ca5fa

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

src/ui/public/chrome/directives/kbn_chrome.less

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
@import (reference) "~ui/styles/mixins";
33
@import (reference) "~ui/styles/variables";
44

5-
body { overflow-x: hidden; }
5+
body {
6+
overflow-x: hidden;
7+
min-height: 100%;
8+
}
69

710
.app-wrapper {
811
.real-flex-parent();

src/ui/public/styles/base.less

-8
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@
66
@import "./react-select";
77
@import "./pui_react";
88

9-
/**
10-
* 1. Prevent flickering of gauge visualization when tooltip is opened.
11-
* https://github.com/elastic/kibana/pull/17227
12-
*/
13-
.euiBody-hasToolTip {
14-
position: static !important; /* 1 */
15-
}
16-
179
.small {
1810
font-size: 0.9em !important;
1911
}

0 commit comments

Comments
 (0)