mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-30 04:24:02 +00:00
* New: Manual import improvements - Detect and merge import with files already in library. - Allow selection of album release from Manual Import modal. - Loading indicator while fetching updated decisions * Disable release switching if user manually overrode release
75 lines
1.0 KiB
CSS
75 lines
1.0 KiB
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,
|
|
.centerButtons,
|
|
.rightButtons {
|
|
display: flex;
|
|
flex: 1 2 20%;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.centerButtons {
|
|
justify-content: center;
|
|
flex: 2 1 60%;
|
|
}
|
|
|
|
.rightButtons {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.importMode {
|
|
composes: select from '~Components/Form/SelectInput.css';
|
|
|
|
width: auto;
|
|
}
|
|
|
|
.errorMessage {
|
|
color: $dangerColor;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.footer {
|
|
.leftButtons,
|
|
.centerButtons,
|
|
.rightButtons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.leftButtons {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.centerButtons {
|
|
align-items: center;
|
|
}
|
|
|
|
.rightButtons {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
a,
|
|
button {
|
|
margin-left: 0;
|
|
|
|
&:first-child {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|