This is an automated email from the ASF dual-hosted git repository.
christine pushed a commit to branch lyftga
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/lyftga by this push:
new e7d97db Fix the white background shown in SQL editor on drag (#7021)
e7d97db is described below
commit e7d97db2fbec9b71402560f49ed5285593bbdee6
Author: Christine Chambers <[email protected]>
AuthorDate: Wed Mar 13 10:14:52 2019 -0700
Fix the white background shown in SQL editor on drag (#7021)
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 28755a3..6c35ed9 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;
}