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.
Readarr/frontend/src/Components/Table/TablePager.css

78 lines
1.0 KiB

.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: var(--disabledColor);
}
.disabledPageButton {
color: var(--disabledColor);
}
.pageSelect {
composes: select from '~Components/Form/SelectInput.css';
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;
}
}