You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ju...@apache.org on 2021/01/18 01:39:09 UTC

[superset] branch master updated: fix: row component handler is visible (#12498)

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

junlin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 4ddb55b  fix: row component handler is visible (#12498)
4ddb55b is described below

commit 4ddb55b930eaf8e3f9ffa8c307e8468e765d4057
Author: Kasia Kucharczyk <25...@users.noreply.github.com>
AuthorDate: Mon Jan 18 02:38:17 2021 +0100

    fix: row component handler is visible (#12498)
---
 superset-frontend/src/dashboard/components/DashboardBuilder.jsx | 2 +-
 superset-frontend/src/dashboard/stylesheets/hover-menu.less     | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
index 861f3ad..aad5c41 100644
--- a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
+++ b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
@@ -97,7 +97,7 @@ const StyledDashboardContent = styled.div`
       ${({ theme }) => theme.gridUnit * 8}px
       ${({ theme }) => theme.gridUnit * 6}px
       ${({ theme, dashboardFiltersOpen }) => {
-        if (dashboardFiltersOpen) return theme.gridUnit * 4;
+        if (dashboardFiltersOpen) return theme.gridUnit * 8;
         return 0;
       }}px;
   }
diff --git a/superset-frontend/src/dashboard/stylesheets/hover-menu.less b/superset-frontend/src/dashboard/stylesheets/hover-menu.less
index e3bcb40..8953ce0 100644
--- a/superset-frontend/src/dashboard/stylesheets/hover-menu.less
+++ b/superset-frontend/src/dashboard/stylesheets/hover-menu.less
@@ -27,8 +27,7 @@
   width: 24px;
   top: 50%;
   transform: translate(0, -50%);
-  left: -24px;
-  padding: 8px 0;
+  left: -28px;
   display: flex;
   flex-direction: column;
   justify-content: center;