From c54f89a4d00a73a17228d1ae6c2b51cd71032d62 Mon Sep 17 00:00:00 2001 From: Christine Chambers Date: Tue, 12 Mar 2019 21:05:50 -0700 Subject: [PATCH] Fix the white background shown in SQL editor on drag This PR sets the background-color css property on `.ace_scroller` instead of `.ace_content` to prevent the white background shown during resizing of the SQL editor before drag ends. --- superset/assets/src/SqlLab/main.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/assets/src/SqlLab/main.less b/superset/assets/src/SqlLab/main.less index 28755a37c326..6c35ed9c4fda 100644 --- a/superset/assets/src/SqlLab/main.less +++ b/superset/assets/src/SqlLab/main.less @@ -294,7 +294,7 @@ div.tablePopover:hover { margin-top: 5px; } -.ace_content { +.ace_scroller { background-color: #f4f4f4; }