aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-10-24 14:11:47 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-24 14:11:47 +0800
commit6d3f261b2f923782279be5e2ce05e8d6cc558a9e (patch)
treeb787d0fb808b1ba04bfb0687ad655a54ca707040 /ui
parent8895a225dc3e69a5baab66ad93bd54b7d5e6c82c (diff)
downloadtangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.tar.gz
tangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.tar.zst
tangerine-wallet-browser-6d3f261b2f923782279be5e2ce05e8d6cc558a9e.zip
Change LOOSE label to IMPORTED
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/account-menu/index.js2
-rw-r--r--ui/app/css/itcss/components/account-menu.scss2
-rw-r--r--ui/app/css/itcss/tools/utilities.scss1
3 files changed, 3 insertions, 2 deletions
diff --git a/ui/app/components/account-menu/index.js b/ui/app/components/account-menu/index.js
index 85bd21076..32e7bc466 100644
--- a/ui/app/components/account-menu/index.js
+++ b/ui/app/components/account-menu/index.js
@@ -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 }
}
diff --git a/ui/app/css/itcss/components/account-menu.scss b/ui/app/css/itcss/components/account-menu.scss
index 090710f7b..72cb29ce8 100644
--- a/ui/app/css/itcss/components/account-menu.scss
+++ b/ui/app/css/itcss/components/account-menu.scss
@@ -65,6 +65,8 @@
.keyring-label {
margin-top: 5px;
+ background-color: $black;
+ color: $dusty-gray;
}
}
diff --git a/ui/app/css/itcss/tools/utilities.scss b/ui/app/css/itcss/tools/utilities.scss
index ca9fd0d9c..ee867640d 100644
--- a/ui/app/css/itcss/tools/utilities.scss
+++ b/ui/app/css/itcss/tools/utilities.scss
@@ -237,7 +237,6 @@ hr.horizontal-line {
color: #fff;
border-radius: 10px;
padding: 4px;
- width: 41px;
text-align: center;
height: 15px;
}