From 1f7e9b22279fd72fa59b56d09ad4053b2b6871e1 Mon Sep 17 00:00:00 2001 From: bechi Date: Mon, 18 May 2015 11:51:36 -0300 Subject: [PATCH] add more buttons --- public/views/backup.html | 28 +++++++++++------------ public/views/includes/password.html | 8 +++---- public/views/modals/tx-status.html | 6 ++--- public/views/preferencesAlias.html | 6 ++--- public/views/preferencesBwsUrl.html | 6 ++--- public/views/preferencesDeleteWallet.html | 6 ++--- src/css/main.css | 5 +++- src/js/services/notificationsService.js | 2 +- 8 files changed, 35 insertions(+), 32 deletions(-) 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 @@ -
@@ -17,36 +17,36 @@
-
-
- -

Backup options

- -
@@ -59,7 +59,7 @@
- + Copy this text as it is to a safe place (notepad or email)
diff --git a/public/views/includes/password.html b/public/views/includes/password.html index 9b4994192..42cd98f79 100644 --- a/public/views/includes/password.html +++ b/public/views/includes/password.html @@ -2,7 +2,7 @@
-
@@ -21,13 +21,13 @@
-
- +
-
- OKAY + OKAY
@@ -15,7 +15,7 @@ {{statusStr|translate}}
- OKAY + OKAY
@@ -25,6 +25,6 @@ {{statusStr|translate}}
- OKAY + OKAY
diff --git a/public/views/preferencesAlias.html b/public/views/preferencesAlias.html index 17387d40c..6b7af95d0 100644 --- a/public/views/preferencesAlias.html +++ b/public/views/preferencesAlias.html @@ -1,5 +1,5 @@ -
@@ -10,7 +10,7 @@
-

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 @@ -

@@ -10,7 +10,7 @@
-
diff --git a/public/views/preferencesDeleteWallet.html b/public/views/preferencesDeleteWallet.html index 425909eee..e9e5b6009 100644 --- a/public/views/preferencesDeleteWallet.html +++ b/public/views/preferencesDeleteWallet.html @@ -1,5 +1,5 @@ -
@@ -14,7 +14,7 @@

Permanently delete this wallet. THIS ACTION CANNONT BE REVERSED

-
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) {