From e24068baaa75f430db25000f7df0cf8146ed4cb3 Mon Sep 17 00:00:00 2001 From: Lewis Sanchez <87730006+lewis-sanchez@users.noreply.github.com> Date: Wed, 12 Oct 2022 14:52:08 -0700 Subject: [PATCH] Fixes resize bug affecting the find node widget (#20824) --- .../contrib/executionPlan/browser/media/executionPlan.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/executionPlan/browser/media/executionPlan.css b/src/sql/workbench/contrib/executionPlan/browser/media/executionPlan.css index 1190ff95f8..d53460fb9c 100644 --- a/src/sql/workbench/contrib/executionPlan/browser/media/executionPlan.css +++ b/src/sql/workbench/contrib/executionPlan/browser/media/executionPlan.css @@ -17,6 +17,7 @@ .eps-container .execution-plan { width: 100%; min-height: 500px; + min-width: 470px; display: flex; overflow: hidden; flex: 1; @@ -68,7 +69,7 @@ However we always want it to be the width of the container it is resizing. flex-direction: row; padding: 5px; height: auto; - width: 470px; + width: 420px; } /* input bar styling in search node action view */ @@ -83,6 +84,10 @@ However we always want it to be the width of the container it is resizing. height: 100%; } +.eps-container .execution-plan .plan .plan-action-container .search-node-widget .input { + width: 100px; +} + /* Custom zoom action view */ .eps-container .execution-plan .plan .plan-action-container .custom-zoom-view { display: flex;