revert browser newux changes (#5714)

This commit is contained in:
Kanagaraj M
2018-03-27 01:19:12 +05:30
committed by Dee Koder
parent 35e64573fa
commit 19451e374a
186 changed files with 4507 additions and 16033 deletions

View File

@@ -45,32 +45,30 @@ export class MakeBucketModal extends React.Component {
const { showMakeBucketModal } = this.props
return (
<Modal
className="create-bucket"
className="modal-create-bucket"
bsSize="small"
animation={false}
show={showMakeBucketModal}
onHide={this.hideModal.bind(this)}
>
<i className="close" onClick={this.hideModal.bind(this)} />
<Modal.Body>
<button className="close close-alt" onClick={this.hideModal.bind(this)}>
<span>×</span>
</button>
<ModalBody>
<form onSubmit={this.onSubmit.bind(this)}>
<div className="form-group form-group--centered">
<div className="input-group">
<input
className="form-group__field"
className="ig-text"
type="text"
placeholder="Bucket Name"
value={this.state.bucketName}
onChange={e =>
this.setState({
bucketName: e.target.value
})
}
onChange={e => this.setState({ bucketName: e.target.value })}
autoFocus
/>
<i className="form-group__helper" />
<i className="ig-helpers" />
</div>
</form>
</Modal.Body>
</ModalBody>
</Modal>
)
}