mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Make editable actoin item a button, autofocus input contents
This commit is contained in:
parent
552ea136b7
commit
74866a6efb
@ -45,13 +45,15 @@ class EditableLabel extends Component {
|
||||
className={classnames('large-input', 'editable-label__input', {
|
||||
'editable-label__input--error': value === '',
|
||||
})}
|
||||
autoFocus
|
||||
/>,
|
||||
<div className="editable-label__icon-wrapper" key={2}>
|
||||
<i
|
||||
className="fa fa-check editable-label__icon"
|
||||
onClick={() => this.handleSubmit()}
|
||||
/>
|
||||
</div>,
|
||||
<button
|
||||
className="editable-label__icon-button"
|
||||
key={2}
|
||||
onClick={() => this.handleSubmit()}
|
||||
>
|
||||
<i className="fa fa-check editable-label__icon" />
|
||||
</button>,
|
||||
]
|
||||
}
|
||||
|
||||
@ -60,12 +62,13 @@ class EditableLabel extends Component {
|
||||
<div key={1} className="editable-label__value">
|
||||
{this.state.value}
|
||||
</div>,
|
||||
<div key={2} className="editable-label__icon-wrapper">
|
||||
<i
|
||||
className="fas fa-pencil-alt editable-label__icon"
|
||||
onClick={() => this.setState({ isEditing: true })}
|
||||
/>
|
||||
</div>,
|
||||
<button
|
||||
key={2}
|
||||
className="editable-label__icon-button"
|
||||
onClick={() => this.setState({ isEditing: true })}
|
||||
>
|
||||
<i className="fas fa-pencil-alt editable-label__icon" />
|
||||
</button>,
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -23,10 +23,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
&__icon-wrapper {
|
||||
&__icon-button {
|
||||
position: absolute;
|
||||
margin-left: 10px;
|
||||
left: 100%;
|
||||
background: unset;
|
||||
}
|
||||
|
||||
&__icon {
|
||||
|
Loading…
Reference in New Issue
Block a user