mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 15:23:55 +01:00
* 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>
65 lines
937 B
CSS
65 lines
937 B
CSS
.filterContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.filterText {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.footer {
|
|
composes: modalFooter from '~Components/Modal/ModalFooter.css';
|
|
|
|
justify-content: space-between;
|
|
padding: 15px;
|
|
}
|
|
|
|
.leftButtons,
|
|
.rightButtons {
|
|
display: flex;
|
|
flex: 1 0 50%;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.rightButtons {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.importMode,
|
|
.bulkSelect {
|
|
composes: select from '~Components/Form/SelectInput.css';
|
|
|
|
margin-right: 10px;
|
|
width: auto;
|
|
}
|
|
|
|
.errorMessage {
|
|
color: var(--dangerColor);
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.footer {
|
|
.leftButtons,
|
|
.rightButtons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.leftButtons {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.rightButtons {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
a,
|
|
button {
|
|
margin-left: 0;
|
|
|
|
&:first-child {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|