Skip to content

Commit

Permalink
define icon for open document
Browse files Browse the repository at this point in the history
  • Loading branch information
danicatalan committed Aug 25, 2016
1 parent 24a49b6 commit 19f3d84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions app/react/App/scss/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,10 @@ header {
}
}

.fa-arrow-left {
.fa-external-link {
position: absolute;
top: 8px;
top: 10px;
right: 15px;
transform: rotate(45deg);
}

}
Expand Down
2 changes: 1 addition & 1 deletion app/react/Library/components/Doc.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class Doc extends Component {
</div>
<ItemFooter>
<Link to={documentViewUrl} className="item-shortcut">
<i className="fa fa-chevron-right"></i>
<i className="fa fa-external-link"></i>
</Link>
</ItemFooter>
</RowList.Item>
Expand Down
2 changes: 1 addition & 1 deletion app/react/Library/components/SearchBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class SearchBar extends Component {
return <p key={index}>
<Link to={documentViewUrl}>
<span dangerouslySetInnerHTML={{__html: suggestion.title}}/>
<i className="fa fa-arrow-left">
<i className="fa fa-external-link">
</i>
</Link>
</p>;
Expand Down

0 comments on commit 19f3d84

Please sign in to comment.