1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #1831 from sdtsui/pre-merge-fixes

Add minor fixes, including account selection scroll
This commit is contained in:
Dan Finlay 2017-07-26 14:27:14 -07:00 committed by GitHub
commit bc11f11d68
4 changed files with 8 additions and 11 deletions

View File

@ -87,7 +87,7 @@
"inject-css": "^0.1.1", "inject-css": "^0.1.1",
"jazzicon": "^1.2.0", "jazzicon": "^1.2.0",
"loglevel": "^1.4.1", "loglevel": "^1.4.1",
"menu-droppo": "1.1.6", "menu-droppo": "2.0.0",
"metamask-logo": "^2.1.2", "metamask-logo": "^2.1.2",
"mississippi": "^1.2.0", "mississippi": "^1.2.0",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",

View File

@ -206,7 +206,9 @@ App.prototype.renderNetworkDropdown = function () {
left: '2px', left: '2px',
top: '36px', top: '36px',
}, },
innerStyle: {}, innerStyle: {
padding: '2px 16px 2px 0px',
},
}, [ }, [
h( h(

View File

@ -59,6 +59,8 @@ class AccountDropdowns extends Component {
style: { style: {
marginLeft: '-125px', marginLeft: '-125px',
minWidth: '180px', minWidth: '180px',
overflowY: 'auto',
maxHeight: '300px',
}, },
isOpen: accountSelectorActive, isOpen: accountSelectorActive,
onClickOutside: () => { this.setState({ accountSelectorActive: false }) }, onClickOutside: () => { this.setState({ accountSelectorActive: false }) },
@ -116,14 +118,6 @@ class AccountDropdowns extends Component {
onClickOutside: () => { this.setState({ optionsMenuActive: false }) }, onClickOutside: () => { this.setState({ optionsMenuActive: false }) },
}, },
[ [
h(
DropdownMenuItem,
{
closeMenu: () => {},
onClick: () => actions.showConfigPage(),
},
'Account Settings',
),
h( h(
DropdownMenuItem, DropdownMenuItem,
{ {

View File

@ -7,7 +7,7 @@ const noop = () => {}
class Dropdown extends Component { class Dropdown extends Component {
render () { render () {
const { isOpen, onClickOutside, style, children } = this.props const { isOpen, onClickOutside, style, innerStyle, children } = this.props
return h( return h(
MenuDroppo, MenuDroppo,
@ -21,6 +21,7 @@ class Dropdown extends Component {
padding: '8px 16px', padding: '8px 16px',
background: 'rgba(0, 0, 0, 0.8)', background: 'rgba(0, 0, 0, 0.8)',
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px', boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
...innerStyle,
}, },
}, },
[ [