Files
Readarr/frontend/src/Components/Table/TablePager.css
Zak Saunders 6e38df366f New: Darkmode
* New: Native Theme Engine

Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com>
(cherry picked from commit 2291f3e00eb2ff9268a0b2f49da8dde82ee13c04)

* Update CSS for themes

* Fixup CSS values

* Fixup remove duped Color-Impaired setting

* Fixup Link Colors

Co-Authored-By: Qstick <qstick@gmail.com>
2023-01-21 18:18:48 -06:00

78 lines
1.0 KiB
CSS

.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;
}
}