diff --git a/frontend/src/components/resize-bar/index.css b/frontend/src/components/resize-bar/index.css index 1a5e23b721..cf74e881f7 100644 --- a/frontend/src/components/resize-bar/index.css +++ b/frontend/src/components/resize-bar/index.css @@ -3,7 +3,6 @@ width: 6px; position: absolute; top: 0; - z-index: 8; opacity: 0; transition-duration: .2s; transition-property: opacity; diff --git a/frontend/src/components/resize-bar/index.js b/frontend/src/components/resize-bar/index.js index 8bf96b380e..c12f954f37 100644 --- a/frontend/src/components/resize-bar/index.js +++ b/frontend/src/components/resize-bar/index.js @@ -1,5 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; +import { RESIZE_BAR } from '../../constants/zIndexes'; import './index.css'; function ResizeBar(props) { @@ -7,7 +8,7 @@ function ResizeBar(props) {
diff --git a/frontend/src/constants/zIndexes.js b/frontend/src/constants/zIndexes.js index 9091cc8252..9142bc4f7e 100644 --- a/frontend/src/constants/zIndexes.js +++ b/frontend/src/constants/zIndexes.js @@ -1 +1,3 @@ +export const RESIZE_BAR = 2; + export const EXTRA_ATTRIBUTES_DIALOG_MODAL = 1048; diff --git a/frontend/src/metadata/metadata-view/components/table/index.css b/frontend/src/metadata/metadata-view/components/table/index.css index 6c09089217..c4404f3049 100644 --- a/frontend/src/metadata/metadata-view/components/table/index.css +++ b/frontend/src/metadata/metadata-view/components/table/index.css @@ -422,13 +422,6 @@ transform: translateZ(10px); } -.table-header-top { - z-index: 7; - transform: translateZ(1000px); - height: 10px; - background-color: #f5f5f5; -} - .sf-metadata-result-table .group-header-left .formatter-show { display: inline-flex; flex: 1;