You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Components/Table/TablePager.css

71 lines
946 B

.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 {
composes: loading from 'Components/Loading/LoadingIndicator.css';
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;
}
@media only screen and (max-width: $breakpointSmall) {
.pager {
flex-wrap: wrap;
}
.loadingContainer,
.recordsContainer {
flex: 0 1 50%;
}
.controlsContainer {
flex: 0 1 100%;
order: -1;
}
}