This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch no-supersetTheme-direct-use-in-SqlEditor
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to 
refs/heads/no-supersetTheme-direct-use-in-SqlEditor by this push:
     new 5341b11  chore: no direct use of supersetTheme (or bad LESS vars) in 
SqlEditor
5341b11 is described below

commit 5341b110a87e218400c7220cdc0d87ad81d5785f
Author: Evan Rusackas <[email protected]>
AuthorDate: Wed Oct 6 22:11:54 2021 -0600

    chore: no direct use of supersetTheme (or bad LESS vars) in SqlEditor
---
 superset-frontend/src/SqlLab/components/SqlEditor/index.jsx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/superset-frontend/src/SqlLab/components/SqlEditor/index.jsx 
b/superset-frontend/src/SqlLab/components/SqlEditor/index.jsx
index bd96acb..a0346bf 100644
--- a/superset-frontend/src/SqlLab/components/SqlEditor/index.jsx
+++ b/superset-frontend/src/SqlLab/components/SqlEditor/index.jsx
@@ -102,10 +102,9 @@ const LimitSelectStyled = styled.span`
 
 const StyledToolbar = styled.div`
   padding: ${({ theme }) => theme.gridUnit * 2}px;
-  background-color: @lightest;
   display: flex;
   justify-content: space-between;
-  border: 1px solid ${supersetTheme.colors.grayscale.light2};
+  border: 1px solid ${({ theme }) => theme.colors.grayscale.light2};
   border-top: 0;
 
   form {

Reply via email to