From 8b094148066d16b840941c3f02c0cb3ef3a72777 Mon Sep 17 00:00:00 2001 From: Kasia Kucharczyk <2536609+kkucharc@users.noreply.github.com> Date: Wed, 20 Jan 2021 23:18:42 +0100 Subject: [PATCH] fix: dropdown indicator in tabs has proper width and position (#12584) Closes #12481 , partially fix #12486 --- .../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 455a41a94c381..e1bedbeababf1 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;