From fc664a850d82c9dfb8679a92153004f9aa2e729e Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 27 Mar 2019 18:00:33 -0700 Subject: [PATCH] Fix query plan styles to correct rendering (#4739) --- src/sql/parts/grid/load/css/qp.css | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/sql/parts/grid/load/css/qp.css b/src/sql/parts/grid/load/css/qp.css index 48a9fee1ce..c8b4120907 100644 --- a/src/sql/parts/grid/load/css/qp.css +++ b/src/sql/parts/grid/load/css/qp.css @@ -175,6 +175,8 @@ div[class|='qp-icon'] { div.qp-node .qp-tt, .qp-noCssTooltip div.qp-node:hover .qp-tt { visibility: hidden; + position: absolute; + overflow: hidden; } div.qp-node:hover .qp-tt { @@ -204,13 +206,13 @@ div.qp-node:hover .qp-tt { position: relative; } - .qp-root svg { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 0; - background: transparent; - pointer-events: none; - } \ No newline at end of file +.qp-root svg { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 0; + background: transparent; + pointer-events: none; +}