Skip to content

Commit

Permalink
Fix issue with flickering tooltips (#17590)
Browse files Browse the repository at this point in the history
* Use minimal change to fix flickering

* Remove deprecated unused CSS
  • Loading branch information
timroes authored Apr 9, 2018
1 parent 2e63dbb commit e6ca5fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 4 additions & 1 deletion src/ui/public/chrome/directives/kbn_chrome.less
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
8 changes: 0 additions & 8 deletions src/ui/public/styles/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e6ca5fa

Please sign in to comment.