This is an automated email from the ASF dual-hosted git repository.
yjc 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 b592165 fix: dropdown indicator in tabs has proper width and position
(#12584)
b592165 is described below
commit b592165f681b09d2e67a2fb7194d250e2955cbfa
Author: Kasia Kucharczyk <[email protected]>
AuthorDate: Wed Jan 20 23:18:42 2021 +0100
fix: dropdown indicator in tabs has proper width and position (#12584)
Closes #12481 , partially fix #12486
---
.../src/dashboard/components/gridComponents/Tabs.jsx | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
index 455a41a..e1bedbe 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx
@@ -86,22 +86,6 @@ const StyledTabsContainer = styled.div`
position: relative;
}
- .drop-indicator--left {
- left: ${({ theme }) => -theme.gridUnit * 3}px !important;
- }
- .drop-indicator--right {
- left: ${({ theme }) => `calc(100% + ${theme.gridUnit * 6}px)`} !important;
- }
-
- .drop-indicator--bottom,
- .drop-indicator--top {
- width: ${({ theme }) => `calc(100% + ${theme.gridUnit * 6}px)`} !important;
- }
-
- .drop-indicator--top {
- top: ${({ theme }) => theme.gridUnit * 2}px;
- }
-
.ant-tabs {
overflow: visible;