From 0835c236f5f24fb5ada486303b12a0234cb582da Mon Sep 17 00:00:00 2001 From: bechi Date: Sun, 17 May 2015 00:34:26 -0300 Subject: [PATCH 1/2] change buttons style --- public/views/create.html | 18 +++++++++--------- public/views/import.html | 10 +++++----- public/views/importLegacy.html | 19 +++++++++---------- public/views/join.html | 6 +++--- public/views/modals/tx-details.html | 2 +- public/views/modals/txp-details.html | 10 +++++----- public/views/walletHome.html | 22 +++++++++++----------- src/css/main.css | 10 +++++----- src/css/mobile.css | 13 +++++++------ 9 files changed, 55 insertions(+), 55 deletions(-) diff --git a/public/views/create.html b/public/views/create.html index 4f68ebf59..cc04dddec 100644 --- a/public/views/create.html +++ b/public/views/create.html @@ -1,5 +1,5 @@ -
@@ -65,8 +65,8 @@
- Show - Hide + Show + Hide Advanced options @@ -81,16 +81,16 @@
- diff --git a/public/views/import.html b/public/views/import.html index 6692cbb7f..7ea436bce 100644 --- a/public/views/import.html +++ b/public/views/import.html @@ -1,5 +1,5 @@ -
@@ -49,7 +49,7 @@ - @@ -57,12 +57,12 @@

Have a Backup from Copay v0.9?

- -
+ diff --git a/public/views/importLegacy.html b/public/views/importLegacy.html index c4410aa78..cc0476816 100644 --- a/public/views/importLegacy.html +++ b/public/views/importLegacy.html @@ -1,5 +1,5 @@ -
@@ -12,7 +12,7 @@

Importing...

    -
  • +
  • {{m.message|translate}}
@@ -49,10 +49,10 @@ name="server" ng-model="importLegacy.server" required> - @@ -65,15 +65,14 @@
- + Learn more about Wallet Migration
- + - + - diff --git a/public/views/join.html b/public/views/join.html index a472af711..9fd8e2b62 100644 --- a/public/views/join.html +++ b/public/views/join.html @@ -1,5 +1,5 @@ -
@@ -83,7 +83,7 @@ - + diff --git a/public/views/modals/tx-details.html b/public/views/modals/tx-details.html index 1d5d40366..78ef455eb 100644 --- a/public/views/modals/tx-details.html +++ b/public/views/modals/tx-details.html @@ -82,7 +82,7 @@
- diff --git a/public/views/modals/txp-details.html b/public/views/modals/txp-details.html index 774e8834c..fe0590f39 100644 --- a/public/views/modals/txp-details.html +++ b/public/views/modals/txp-details.html @@ -1,7 +1,7 @@
- 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) {