parent
42010acd68
commit
71662bb219
@ -91,6 +91,10 @@
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
.button svg {
|
||||
fill: white !important;
|
||||
}
|
||||
|
||||
.label {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
|
@ -18,9 +18,10 @@ import React, { Component, PropTypes } from 'react';
|
||||
import { Link } from 'react-router';
|
||||
import { connect } from 'react-redux';
|
||||
import { bindActionCreators } from 'redux';
|
||||
import ActionFingerprint from 'material-ui/svg-icons/action/fingerprint';
|
||||
import ContentClear from 'material-ui/svg-icons/content/clear';
|
||||
|
||||
import { Badge, Button, ContainerTitle, ParityBackground, SignerIcon } from '../../ui';
|
||||
import { Badge, Button, ContainerTitle, ParityBackground } from '../../ui';
|
||||
import { Embedded as Signer } from '../Signer';
|
||||
|
||||
import imagesEthcoreBlock from '../../../assets/images/ethcore-block.png';
|
||||
@ -84,7 +85,7 @@ class ParityBar extends Component {
|
||||
</Link>
|
||||
<Button
|
||||
className={ styles.button }
|
||||
icon={ <SignerIcon className={ styles.signerIcon } /> }
|
||||
icon={ <ActionFingerprint /> }
|
||||
label={ this.renderSignerLabel() }
|
||||
onClick={ this.toggleDisplay } />
|
||||
</div>
|
||||
|
@ -16,16 +16,13 @@
|
||||
|
||||
import React from 'react';
|
||||
import ActionAccountBalanceWallet from 'material-ui/svg-icons/action/account-balance-wallet';
|
||||
import ActionFingerprint from 'material-ui/svg-icons/action/fingerprint';
|
||||
import ActionTrackChanges from 'material-ui/svg-icons/action/track-changes';
|
||||
import ActionSettings from 'material-ui/svg-icons/action/settings';
|
||||
import CommunicationContacts from 'material-ui/svg-icons/communication/contacts';
|
||||
import ImageGridOn from 'material-ui/svg-icons/image/grid-on';
|
||||
import NavigationApps from 'material-ui/svg-icons/navigation/apps';
|
||||
|
||||
import { SignerIcon } from '../../../ui';
|
||||
|
||||
import styles from './views.css';
|
||||
|
||||
const defaultViews = {
|
||||
accounts: {
|
||||
active: true,
|
||||
@ -76,7 +73,7 @@ const defaultViews = {
|
||||
signer: {
|
||||
active: true,
|
||||
fixed: true,
|
||||
icon: <SignerIcon className={ styles.signerIcon } />,
|
||||
icon: <ActionFingerprint />,
|
||||
label: 'Signer',
|
||||
route: '/signer',
|
||||
value: 'signer',
|
||||
|
@ -21,6 +21,7 @@
|
||||
.confirmButton {
|
||||
display: block !important;
|
||||
margin-bottom: 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.signerIcon {
|
||||
|
@ -20,7 +20,7 @@ import { bindActionCreators } from 'redux';
|
||||
import RaisedButton from 'material-ui/RaisedButton';
|
||||
import ReactTooltip from 'react-tooltip';
|
||||
|
||||
import { Form, Input, SignerIcon } from '../../../../../ui';
|
||||
import { Form, Input, IdentityIcon } from '../../../../../ui';
|
||||
|
||||
import styles from './TransactionPendingFormConfirm.css';
|
||||
|
||||
@ -72,7 +72,7 @@ class TransactionPendingFormConfirm extends Component {
|
||||
fullWidth
|
||||
primary
|
||||
disabled={ isSending }
|
||||
icon={ <SignerIcon className={ styles.signerIcon } /> }
|
||||
icon={ <IdentityIcon address={ address } button className={ styles.signerIcon } /> }
|
||||
label={ isSending ? 'Confirming...' : 'Confirm Transaction' }
|
||||
/>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user