Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3418 from sirensolutions/add-horizontal-scrollbar…
Browse files Browse the repository at this point in the history
…-to-data-table

Add permanent horizontal scrollbar to data-table
  • Loading branch information
colmose committed Jul 26, 2017
2 parents 524d955 + 09d8ce8 commit 91d3534
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

//needed for cell shifting issue in IE11
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.kibi-data-table-vis { overflow-x: auto; overflow-y: auto; zoom: 1; }
.kibi-data-table-vis { overflow-x: auto; overflow-y: auto; zoom: 1; }
.gridster dashboard-panel .panel .panel-content { height: 100%; zoom: 1; }
}

.kibi-data-table-vis {
padding: 5px;
width: 100%;
flex: 1 1 100%;
}

.kibi-data-table-vis-params section {
Expand Down
11 changes: 5 additions & 6 deletions src/ui/public/kibi/kibi_doc_table/kibi_doc_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@
<div
ng-if="hits.length"
ng-class="{ loading: searchSource.activeFetchCount > 0 }">
<div ng-show="!infiniteScroll && hits.length < total" class="limit-info">
Showing {{size}} out of {{total}}
<a ng-click="increaseSize()">See more</a>
</div>

<div ng-show="!infiniteScroll && hits.length < total" class="limit-info">
Showing {{size}} out of {{total}}
<a ng-click="increaseSize()">See more</a>
</div>

<paginate ng-if="!infiniteScroll" list="hits" per-page="{{pageSize}}" top-controls="true">
<paginate ng-if="!infiniteScroll" list="hits" per-page="{{pageSize}}" top-controls="true">

<div
kibi-custom-view
Expand Down

0 comments on commit 91d3534

Please sign in to comment.