fix data table styling (#16031) (#16070)

* fix data table styling

* remove styling from pagination buttons, fix styling on kbn-table headers
This commit is contained in:
Nathan Reese 2018-01-16 13:54:16 -07:00 committed by GitHub
parent 4831cbac37
commit d3bc3af39b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -15,6 +15,11 @@ kbn-agg-table-group {
flex: 1 1 auto;
overflow: auto;
th {
text-align: left;
font-weight: bold;
}
tr:hover td {
background-color: @table-row-hover-bg;

View file

@ -1,4 +1,5 @@
import _ from 'lodash';
import './table_header.less';
import 'ui/filters/short_dots';
import headerHtml from 'ui/doc_table/components/table_header.html';
import { uiModules } from 'ui/modules';

View file

@ -0,0 +1,6 @@
.kbn-table {
th {
text-align: left;
font-weight: bold;
}
}