Skip to content

Commit

Permalink
[Discover] Add top border to grid controls
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta committed Sep 5, 2023
1 parent 7e59c76 commit 46d813c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
max-width: 100%;
height: 100%;
overflow: hidden;
border-radius: $euiBorderRadius;
}

.unifiedDataTable__cellValue {
Expand Down Expand Up @@ -33,6 +32,10 @@
flex-wrap: nowrap;
height: 100%;

.euiDataGrid__controls {
border-top: $euiBorderThin;
}

.euiDataGrid--headerUnderline .euiDataGridHeaderCell {
border-bottom: $euiBorderThin;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const DocumentViewModeToggle = ({
}

return (
<EuiTabs size="s" css={tabsCss} data-test-subj="dscViewModeToggle">
<EuiTabs size="s" css={tabsCss} data-test-subj="dscViewModeToggle" bottomBorder={false}>
<EuiTab
isSelected={viewMode === VIEW_MODE.DOCUMENT_LEVEL}
onClick={() => setDiscoverViewMode(VIEW_MODE.DOCUMENT_LEVEL)}
Expand Down

0 comments on commit 46d813c

Please sign in to comment.