Skip to content

Commit 5ca555a

Browse files
cybermerlinmportuga
authored andcommitted
fix(pagination.less): Correct style pagination in footer info panel.
fix #5749
1 parent 9e591ba commit 5ca555a

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

src/features/pagination/less/pagination.less

+16-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
@import (reference) "../../../less/bootstrap/bootstrap";
44

55
.ui-grid-pager-panel {
6+
display: flex;
7+
justify-content: space-between;
8+
align-items: center;
69
position: absolute;
710
left: 0;
811
bottom: 0;
@@ -13,14 +16,22 @@
1316
}
1417

1518
.ui-grid-pager-container {
16-
display: inline-block;
19+
float: left;
1720
}
1821

1922
.ui-grid-pager-control {
23+
padding: 5px 0;
24+
display: flex;
25+
flex-flow: row nowrap;
26+
align-items: center;
2027
margin-right: 10px;
2128
margin-left: 10px;
2229
min-width: 135px;
23-
display: inline-block;
30+
float: left;
31+
32+
button, span, input {
33+
margin-right: 4px;
34+
}
2435

2536
button {
2637
height: 25px;
@@ -38,7 +49,7 @@
3849
vertical-align: top;
3950
}
4051

41-
.ui-grid-pager-max-pages-number{
52+
.ui-grid-pager-max-pages-number {
4253
vertical-align: bottom;
4354
> * {
4455
vertical-align: bottom;
@@ -109,7 +120,8 @@
109120
}
110121

111122
.ui-grid-pager-row-count-picker {
112-
display: inline-block;
123+
float: left;
124+
padding: 5px 10px;
113125

114126
select {
115127
#ui-grid-twbs > .form-control;

src/less/footer.less

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.ui-grid-footer-info {
2+
padding: 5px 10px;
3+
}
14

25
.ui-grid-footer-panel-background {
36
background-color: @headerBackgroundColor;

0 commit comments

Comments
 (0)