diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-30 14:02:04 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-30 14:02:04 +0800 |
commit | f368f371c29699f277b8c91ad8a6284a3b451223 (patch) | |
tree | 30fd92abe0efdebaecc17030b355df4da18c4bb5 | |
parent | 6a5e73e67386b063786eb36efe1ee6544f8017bb (diff) | |
download | tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar.gz tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar.bz2 tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar.lz tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar.xz tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.tar.zst tangerine-wallet-browser-f368f371c29699f277b8c91ad8a6284a3b451223.zip |
Simplify btn-green colors
-rw-r--r-- | ui/app/components/pending-tx.js | 1 | ||||
-rw-r--r-- | ui/app/css/index.css | 5 | ||||
-rw-r--r-- | ui/app/css/reset.css | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index 4b06f71b0..eae9046a8 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -372,6 +372,7 @@ PendingTx.prototype.render = function () { value: 'SUBMIT', style: { color: '#FFFFFF', + borderRadius: '2px'; fontSize: '12px', lineHeight: '20px', textAlign: 'center', diff --git a/ui/app/css/index.css b/ui/app/css/index.css index dc8cea695..3c397dcff 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -85,9 +85,8 @@ input:focus, textarea:focus { // box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36); // } -.btn-green, input[type="submit"].btn-green { - border-radius: 2px; - background-color: #02C9B1; +.btn-green { + background-color: #02C9B1; // TODO: reusable color in colors.css } // .btn-red { diff --git a/ui/app/css/reset.css b/ui/app/css/reset.css index da94e6212..146be1e15 100644 --- a/ui/app/css/reset.css +++ b/ui/app/css/reset.css @@ -49,4 +49,4 @@ table { input, button { border-style: none; -}
\ No newline at end of file +} |