Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Rename forward/backward crawl buttons on the multi select popup
Browse files Browse the repository at this point in the history
  • Loading branch information
nandukalidindi committed Aug 3, 2017
1 parent ad22ff0 commit e402139
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions client/src/components/Views.js
Original file line number Diff line number Diff line change
Expand Up @@ -902,8 +902,19 @@ class ViewTabSnippets extends React.Component{
</div>

<div style={{width: "30%", display: "flex", justifyContent: "space-around"}}>
<RaisedButton label="Backward" backgroundColor={"#BDBDBD"} labelStyle={{textTransform: "capitalize"}} onClick={this.crawlNextLevel("Backward", null)}/>
<RaisedButton label="Forward" backgroundColor={"#BDBDBD"} labelStyle={{textTransform: "capitalize"}} onClick={this.crawlNextLevel("Forward", null)}/>
<Button
style={{width: "90px", height: "36px", fontSize: "10px", fontColor: "#FFFFFF", backgroundColor: "#BDBDBD", marginRight: "4px", paddingTop: "3px"}}
onClick={this.crawlNextLevel("Backward", null)}
>
BACKWARD<br/>LINKS
</Button>

<Button
style={{width: "90px", height: "36px", fontSize: "10px", fontColor: "#FFFFFF", backgroundColor: "#BDBDBD", paddingTop: "3px"}}
onClick={this.crawlNextLevel("Forward", null)}
>
FORWARD<br/>LINKS
</Button>
</div>
</div>
];
Expand Down

0 comments on commit e402139

Please sign in to comment.