Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Lens] Update DatatableComponent header and footer styles and make background transparent #199813

Merged
merged 9 commits into from
Nov 25, 2024
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
.lnsDataTableContainer {
height: 100%;

nickofthyme marked this conversation as resolved.
Show resolved Hide resolved
// EUI issue to make background transparent https://github.com/elastic/eui/issues/8136
.euiDataGrid__content {
background: transparent;
}
}

.lnsTableCell--multiline {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ export const DataContext = React.createContext<DataContextType>({});

const gridStyle: EuiDataGridStyle = {
border: 'horizontal',
header: 'underline',
header: 'shade',
footer: 'shade',
};

export const DEFAULT_PAGE_SIZE = 10;
Expand Down