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

Fix #1393, align feature grid headers to the theme. #1394

Merged
merged 1 commit into from
Jan 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ const DockedFeatureGrid = React.createClass({
if (this.props.open && this.props.filterObj && cols) {
return (
<Dock
zIndex={1030 /*below dialogs, above left menu*/}
position={"bottom" /* 'left', 'top', 'right', 'bottom' */}
size={this.state.size}
dimMode={"none" /*'transparent', 'none', 'opaque'*/}
Expand Down
12 changes: 12 additions & 0 deletions web/client/components/data/featuregrid/featuregrid.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@
right: 0;
bottom: 0;
}
.ag-body {
/* !important is needed, we need to override inline attributes of ag-grid */
padding-top: 55px !important;
}
.ag-header, .ag-header-row, .ag-header-container .ag-header-row {
/* !important is needed, we need to override inline attributes of ag-grid */
height:55px !important;
}
.ag-fresh .ag-header-cell-label {
padding-top: 17px;
cursor: pointer;
}