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

Change LOOSE label to IMPORTED

This commit is contained in:
Chi Kei Chan 2017-10-23 23:11:47 -07:00
parent 8895a225dc
commit 6d3f261b2f
3 changed files with 3 additions and 2 deletions

View File

@ -148,6 +148,6 @@ AccountMenu.prototype.indicateIfLoose = function (keyring) {
try { // Sometimes keyrings aren't loaded yet:
const type = keyring.type
const isLoose = type !== 'HD Key Tree'
return isLoose ? h('.keyring-label', 'LOOSE') : null
return isLoose ? h('.keyring-label', 'IMPORTED') : null
} catch (e) { return }
}

View File

@ -65,6 +65,8 @@
.keyring-label {
margin-top: 5px;
background-color: $black;
color: $dusty-gray;
}
}

View File

@ -237,7 +237,6 @@ hr.horizontal-line {
color: #fff;
border-radius: 10px;
padding: 4px;
width: 41px;
text-align: center;
height: 15px;
}