diff options
| author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-08 13:22:49 -0500 |
|---|---|---|
| committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-08 13:22:49 -0500 |
| commit | 2b1af3fab4cc51f8cbb577ed51842cec1774a355 (patch) | |
| tree | ba309a00472a9249c9d155470c9e8e6ee18a7e88 /src/client/views/linking/LinkEditor.tsx | |
| parent | 067fe1227d1acedb78dc3a1615c15ae936f3f677 (diff) | |
restructured textbox comment, cleaned menu UI
Diffstat (limited to 'src/client/views/linking/LinkEditor.tsx')
| -rw-r--r-- | src/client/views/linking/LinkEditor.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkEditor.tsx b/src/client/views/linking/LinkEditor.tsx index 7af11bca1..a26685318 100644 --- a/src/client/views/linking/LinkEditor.tsx +++ b/src/client/views/linking/LinkEditor.tsx @@ -339,6 +339,7 @@ export class LinkEditor extends React.Component<LinkEditorProps> { <div className="linkEditor-description-input"> <div className="linkEditor-description-editing"> <input + style={{ width: "100%" }} id="input" value={this.description} placeholder={"enter link label"} @@ -420,7 +421,7 @@ export class LinkEditor extends React.Component<LinkEditorProps> { destination.proto?.title ?? destination.title ?? "untitled"}</b></p> {/* <button className="linkEditor-button" onPointerDown={() => this.deleteLink()} title="Delete link"> <FontAwesomeIcon icon="trash" size="sm" /></button> */} - <FontAwesomeIcon icon={this.infoIcon} size="lg" onPointerDown={this.changeInfo} /> + <FontAwesomeIcon className="button" icon={this.infoIcon} size="lg" onPointerDown={this.changeInfo} /> </div> {this.showInfo ? <div className="linkEditor-moreInfo"> <div>{this.props.linkDoc.author ? <div> <b>Author:</b> {this.props.linkDoc.author}</div> : null}</div> |
