2018-11-23 07:04:42 +00:00
|
|
|
.pager {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loadingContainer,
|
|
|
|
.controlsContainer,
|
|
|
|
.recordsContainer {
|
|
|
|
flex: 0 1 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.recordsContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: loading from '~Components/Loading/LoadingIndicator.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
margin-left: 5px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pageNumber {
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pageLink {
|
|
|
|
padding: 0;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.records {
|
|
|
|
color: $disabledColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabledPageButton {
|
|
|
|
color: $disabledColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pageSelect {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: select from '~Components/Form/SelectInput.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
|
|
|
|
padding: 0 2px;
|
|
|
|
height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
|
|
.pager {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loadingContainer,
|
|
|
|
.recordsContainer {
|
|
|
|
flex: 0 1 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsContainer {
|
|
|
|
flex: 0 1 100%;
|
|
|
|
order: -1;
|
|
|
|
}
|
|
|
|
}
|