You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2020/11/05 19:36:11 UTC

[incubator-superset] branch master updated: Changed top overflow for charts. (#11579)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 091432e  Changed top overflow for charts. (#11579)
091432e is described below

commit 091432ea8ea4ddd7281eaf41c261f006fe99b352
Author: Kasia Kucharczyk <25...@users.noreply.github.com>
AuthorDate: Thu Nov 5 20:35:41 2020 +0100

    Changed top overflow for charts. (#11579)
---
 superset-frontend/src/explore/components/ControlPanelsContainer.jsx | 1 +
 superset-frontend/src/explore/components/ExploreViewContainer.jsx   | 1 -
 superset-frontend/src/explore/components/QueryAndSaveBtns.jsx       | 1 +
 3 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/superset-frontend/src/explore/components/ControlPanelsContainer.jsx b/superset-frontend/src/explore/components/ControlPanelsContainer.jsx
index eeb3ce4..0624e0a 100644
--- a/superset-frontend/src/explore/components/ControlPanelsContainer.jsx
+++ b/superset-frontend/src/explore/components/ControlPanelsContainer.jsx
@@ -45,6 +45,7 @@ const propTypes = {
 const Styles = styled.div`
   height: 100%;
   max-height: 100%;
+  overflow: auto;
   .remove-alert {
     cursor: pointer;
   }
diff --git a/superset-frontend/src/explore/components/ExploreViewContainer.jsx b/superset-frontend/src/explore/components/ExploreViewContainer.jsx
index 7b49e49..fd6d1e0 100644
--- a/superset-frontend/src/explore/components/ExploreViewContainer.jsx
+++ b/superset-frontend/src/explore/components/ExploreViewContainer.jsx
@@ -59,7 +59,6 @@ const propTypes = {
 const Styles = styled.div`
   height: ${({ height }) => height};
   min-height: ${({ height }) => height};
-  overflow: hidden;
   text-align: left;
   position: relative;
   width: 100%;
diff --git a/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx b/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
index e9d447c..25a51a5 100644
--- a/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
+++ b/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
@@ -54,6 +54,7 @@ const getHotKeys = () =>
 
 const Styles = styled.div`
   display: flex;
+  flex-shrink: 0;
   flex-direction: row;
   align-items: center;
   padding-bottom: ${({ theme }) => 2 * theme.gridUnit}px;