Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3447 from ethcore/jg-basiccoin
Browse files Browse the repository at this point in the history
Display deployed Basic token addresses
  • Loading branch information
gavofyork authored Nov 16, 2016
2 parents b9e9544 + 0181b8a commit b7a76be
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions js/src/dapps/basiccoin/Deploy/Event/event.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,22 @@ a.link, a.link:hover, a.link:visited {
}

.address {
max-width: 250px;
text-align: left;

div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}

.description {
text-align: left;

div {
white-space: nowrap;
}
}

.center {
Expand Down
1 change: 1 addition & 0 deletions js/src/dapps/basiccoin/Deploy/Event/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export default class Event extends Component {
<td className={ styles.description }>
<div>{ isPending ? '' : coin.tla }</div>
<div>{ isPending ? '' : coin.name }</div>
<div>{ this.renderAddress(event.params.coin) }</div>
</td>
<td className={ styles.address }>
{ this.renderAddress(event.params.owner) }
Expand Down
6 changes: 6 additions & 0 deletions js/src/dapps/basiccoin/Overview/Owner/owner.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@
.icon {
margin: 0 0 -4px 1em;
}

.byline {
opacity: 0.75;
font-size: 0.75em;
padding-top: 0.25em;
}
3 changes: 3 additions & 0 deletions js/src/dapps/basiccoin/Overview/Owner/owner.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ export default class Owner extends Component {
<Token
address={ token.address }
tokenreg={ token.tokenreg } />
<div className={ styles.byline }>
{ token.address }
</div>
</div>
));
}
Expand Down

0 comments on commit b7a76be

Please sign in to comment.