mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
Merge pull request #1899 from sdtsui/fix/acct-name-lengths
Fix account name overflow issues
This commit is contained in:
commit
3b1ac178ef
@ -107,14 +107,23 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
},
|
},
|
||||||
[
|
[
|
||||||
h(
|
h(
|
||||||
'h2.font-medium.color-forest',
|
'div.font-medium.color-forest',
|
||||||
{
|
{
|
||||||
name: 'edit',
|
name: 'edit',
|
||||||
style: {
|
style: {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
identity && identity.name,
|
h('h2', {
|
||||||
|
style: {
|
||||||
|
maxWidth: '180px',
|
||||||
|
overflowX: 'hidden',
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
padding: '5px 0px',
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
identity && identity.name,
|
||||||
|
]),
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
h(
|
h(
|
||||||
|
@ -185,7 +185,7 @@ App.prototype.renderAppBar = function () {
|
|||||||
style: {},
|
style: {},
|
||||||
enableAccountsSelector: true,
|
enableAccountsSelector: true,
|
||||||
identities: this.props.identities,
|
identities: this.props.identities,
|
||||||
selected: this.props.selected,
|
selected: this.props.currentView.context,
|
||||||
network: this.props.network,
|
network: this.props.network,
|
||||||
}, []),
|
}, []),
|
||||||
|
|
||||||
|
@ -51,7 +51,16 @@ class AccountDropdowns extends Component {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, identity.name || ''),
|
h('span', {
|
||||||
|
style: {
|
||||||
|
marginLeft: '20px',
|
||||||
|
fontSize: '24px',
|
||||||
|
maxWidth: '145px',
|
||||||
|
whiteSpace: 'nowrap',
|
||||||
|
overflow: 'hidden',
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
},
|
||||||
|
}, identity.name || ''),
|
||||||
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null),
|
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user