This is an automated email from the ASF dual-hosted git repository.
graceguo 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 2b107ed Fix overflow hidden issues in Dashboard Builder tabs (#11691)
2b107ed is described below
commit 2b107ed33d8d55ad051f83526c03502f5df13c43
Author: Kamil Gabryjelski <[email protected]>
AuthorDate: Sat Nov 14 08:14:02 2020 +0100
Fix overflow hidden issues in Dashboard Builder tabs (#11691)
---
.../src/dashboard/components/gridComponents/Tabs.jsx | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
index 222dd55..02f4cfd 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
@@ -104,6 +104,14 @@ const StyledTabsContainer = styled.div`
top: ${({ theme }) => theme.gridUnit * 2}px;
}
+ .ant-tabs {
+ overflow: visible;
+
+ .ant-tabs-content-holder {
+ overflow: visible;
+ }
+ }
+
div .ant-tabs-tab-btn {
text-transform: none;
}