2018-01-13 02:01:27 +00:00
|
|
|
.filterContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filterText {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
2019-07-22 00:41:52 +00:00
|
|
|
composes: modalFooter from "~Components/Modal/ModalFooter.css";
|
2018-01-13 02:01:27 +00:00
|
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leftButtons,
|
|
|
|
.rightButtons {
|
|
|
|
display: flex;
|
2019-02-23 19:12:20 +00:00
|
|
|
flex: 1 0 50%;
|
2018-01-13 02:01:27 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rightButtons {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:12:20 +00:00
|
|
|
.importMode,
|
|
|
|
.bulkSelect {
|
2019-07-22 00:41:52 +00:00
|
|
|
composes: select from "~Components/Form/SelectInput.css";
|
2018-01-13 02:01:27 +00:00
|
|
|
|
2019-02-23 19:12:20 +00:00
|
|
|
margin-right: 10px;
|
2018-01-13 02:01:27 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.errorMessage {
|
|
|
|
color: $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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|