Skip to content

Commit

Permalink
fix(pagination.less): Pagination footer no longer overlaps last row.
Browse files Browse the repository at this point in the history
Removed most float: left CSS and replace them with display: inline-block;

fix #4209, fix #2848
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Mar 22, 2018
1 parent 3f8758a commit 713d3ea
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/features/pagination/less/pagination.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
}

.ui-grid-pager-container {
float: left;
display: inline-block;
}

.ui-grid-pager-control {
margin-right: 10px;
margin-left: 10px;
min-width: 135px;
float: left;
display: inline-block;

button {
height: 25px;
Expand Down Expand Up @@ -106,19 +106,18 @@
height: 12px;
margin-right: -11px;
}


}

.ui-grid-pager-row-count-picker {
float: left;
display: inline-block;

select {
#ui-grid-twbs > .form-control;
#ui-grid-twbs > .input-sm ();
height: 26px;
height: 25px;
width: 67px;
display: inline;
vertical-align: middle;
}

.ui-grid-pager-row-count-label {
Expand Down

0 comments on commit 713d3ea

Please sign in to comment.