1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00

Merge pull request #304 from MetaMask/buttons

use key as export and unify the copy to clipboard icon.
This commit is contained in:
Dan Finlay 2016-06-21 17:00:03 -07:00 committed by GitHub
commit 03550b7e9a
5 changed files with 13 additions and 3 deletions

View File

@ -2,6 +2,9 @@
## Current Master
- Change out export icon for key.
- Unify copy to clipboard icon
## 2.4.0 2016-06-20
- Clean up UI.

BIN
app/images/key-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -128,10 +128,15 @@ AccountDetailScreen.prototype.render = function () {
}),
h('img.cursor-pointer.color-orange', {
src: 'images/download.svg',
src: 'images/key-32.png',
onClick: () => this.requestAccountExport(selected),
style: {
margin: '0px 5px',
width: '20px',
height: '20px',
position: 'relative',
top: '3px',
right: '4px',
},
}),

View File

@ -60,7 +60,8 @@ NewComponent.prototype.render = function () {
margin: '0 20px',
},
}, [
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
h('img.cursor-pointer.color-orange', {
src: 'images/copy.svg',
onClick: (event) => {
event.stopPropagation()
event.preventDefault()

View File

@ -36,7 +36,8 @@ button {
font-family: 'Transat Black';
outline: none;
cursor: pointer;
/*margin: 10px;*/
box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36);
/*margin: 10px;*/
padding: 8px 12px;
border: none;
background: #F7861C;