Fix filter input on small devices
This commit is contained in:
parent
92b86bbe13
commit
c8ef6de78c
@ -3,9 +3,9 @@ import { Control, Form } from 'react-redux-form';
|
|||||||
|
|
||||||
export default function ListFilter(props) {
|
export default function ListFilter(props) {
|
||||||
return (
|
return (
|
||||||
<div className="col-xs-12 col-md-12 list-filter">
|
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<Form model={props.formModel} className="input-group" >
|
<div className="col-xs-12 col-md-12 list-filter">
|
||||||
|
<Form model={props.formModel} className="input-group hidebtn-xs" >
|
||||||
<Control.text
|
<Control.text
|
||||||
model={props.controlModel}
|
model={props.controlModel}
|
||||||
className="form-control input-sm"
|
className="form-control input-sm"
|
||||||
|
@ -57,3 +57,9 @@ body {
|
|||||||
div.sweet-alert > h2 {
|
div.sweet-alert > h2 {
|
||||||
color: @body-bg;
|
color: @body-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: @screen-xs-max) {
|
||||||
|
form.hidebtn-xs.input-group {
|
||||||
|
display: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user