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 #2669 from ethcore/signer-fix-txhash
Browse files Browse the repository at this point in the history
Styling in FF is not 100%
  • Loading branch information
jacogr authored Oct 17, 2016
2 parents 6122231 + 294ac23 commit 12b115b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
16 changes: 7 additions & 9 deletions js/src/views/Application/TabBar/tabBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { bindActionCreators } from 'redux';
import { Toolbar, ToolbarGroup } from 'material-ui/Toolbar';
import { Tabs, Tab } from 'material-ui/Tabs';

import { Badge, ParityBackground, Tooltip } from '../../../ui';
import { Badge, Tooltip } from '../../../ui';

import styles from './tabBar.css';
import imagesEthcoreBlock from '../../../../assets/images/ethcore-block.png';
Expand Down Expand Up @@ -50,14 +50,12 @@ class TabBar extends Component {

render () {
return (
<ParityBackground>
<Toolbar
className={ styles.toolbar }>
{ this.renderLogo() }
{ this.renderTabs() }
{ this.renderLast() }
</Toolbar>
</ParityBackground>
<Toolbar
className={ styles.toolbar }>
{ this.renderLogo() }
{ this.renderTabs() }
{ this.renderLast() }
</Toolbar>
);
}

Expand Down
1 change: 1 addition & 0 deletions js/src/views/Signer/components/SignRequest/SignRequest.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
}

.txHash {
display: block;
word-break: break-all;
}

Expand Down
2 changes: 1 addition & 1 deletion js/src/views/Signer/components/SignRequest/SignRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default class SignRequest extends Component {
<div className={ styles.actions }>
<span className={ styles.isConfirmed }>Confirmed</span>
<div>
Transaction hash: <br />
Transaction hash:
<TxHashLink chain={ chain } txHash={ hash } className={ styles.txHash } />
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@
}

.txHash {
display: block;
word-break: break-all;
}
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class TransactionFinished extends Component {

return (
<div>
Transaction hash: <br />
Transaction hash:
<TxHashLink chain={ chain } txHash={ txHash } className={ styles.txHash } />
</div>
);
Expand Down

0 comments on commit 12b115b

Please sign in to comment.