This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 1.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 630bb7264ecba36da80c08dd7dfba6bd5c6301e3 Author: Kasia Kucharczyk <[email protected]> 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;
