diff --git a/public/views/backup.html b/public/views/backup.html
index a7f0ba358..f28f43656 100644
--- a/public/views/backup.html
+++ b/public/views/backup.html
@@ -1,5 +1,5 @@
-
@@ -21,13 +21,13 @@
-
+
CANCEL
-
+
-
SET
ENTER
diff --git a/public/views/modals/tx-status.html b/public/views/modals/tx-status.html
index 5dc2bacda..7dfb917e3 100644
--- a/public/views/modals/tx-status.html
+++ b/public/views/modals/tx-status.html
@@ -5,7 +5,7 @@
Payment Sent
@@ -15,7 +15,7 @@
{{statusStr|translate}}
Changing wallet alias only afects the local wallet name.
diff --git a/public/views/preferencesBwsUrl.html b/public/views/preferencesBwsUrl.html
index acef1d2bc..68504ecbe 100644
--- a/public/views/preferencesBwsUrl.html
+++ b/public/views/preferencesBwsUrl.html
@@ -1,5 +1,5 @@
-
Permanently delete this wallet. THIS ACTION CANNONT BE REVERSED
-
+
Delete wallet
diff --git a/src/css/main.css b/src/css/main.css
index 438846175..de1227b61 100644
--- a/src/css/main.css
+++ b/src/css/main.css
@@ -696,7 +696,6 @@ button.black,
.button.black {
background-color: #2C3E50;
color: #fff;
- border: 1px solid transparent;
}
/* GRAY */
@@ -706,6 +705,10 @@ button.gray,
color: #2C3E50;
}
+button.disabled, button[disabled], .button.disabled, .button[disabled] {
+ border-color: transparent;
+}
+
button.disabled.black,
button[disabled].black,
.button.disabled.black,
diff --git a/src/js/services/notificationsService.js b/src/js/services/notificationsService.js
index ea26be0f4..9b698c8ab 100644
--- a/src/js/services/notificationsService.js
+++ b/src/js/services/notificationsService.js
@@ -52,7 +52,7 @@ angular.module('copayApp.services')
var config = configService.getSync();
config.colorFor = config.colorFor || {};
- var color = config.colorFor[walletId] || '#2C3E50';
+ var color = config.colorFor[walletId] || '#7A8C9E';
var name = config.aliasFor[walletId] || walletName;
switch (notificationData.type) {