From 496243fbc71ff71a7213101bc4acb0cb35f30885 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Fri, 8 Mar 2019 07:32:04 -0800 Subject: [PATCH] Fix extra spacing in the file search view (#4343) Recent changes in the VS Code layout for that viewlet caused the min-height property to affect the display (the property was set on that class before but the layout prevented it from actually being displayed as it was). I removed the style for the messages class completely since I couldn't find a place that we actually used that ourselves - and anyways having styling on such a common name like messages isn't really a good practice since it applies to everything in ADS. --- src/sql/parts/grid/media/flexbox.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/sql/parts/grid/media/flexbox.css b/src/sql/parts/grid/media/flexbox.css index 523e4b828a..3de8861cee 100644 --- a/src/sql/parts/grid/media/flexbox.css +++ b/src/sql/parts/grid/media/flexbox.css @@ -39,11 +39,6 @@ max-height: fit-content; } -.messages { - flex: 1 100 0; - min-height: 25%; -} - .minHeight { min-height: fit-content; }