From 1d3dd28b1afa5adf05d8db358f9c989a02d45720 Mon Sep 17 00:00:00 2001 From: Jamal Jackson Date: Mon, 3 Oct 2016 14:16:15 -0400 Subject: [PATCH] updated list view on send tab --- public/views/tab-send.html | 45 +++++++++++++++++++++--------------- src/sass/views/tab-send.scss | 43 ++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 19 deletions(-) diff --git a/public/views/tab-send.html b/public/views/tab-send.html index 963c7e094..691ca080e 100644 --- a/public/views/tab-send.html +++ b/public/views/tab-send.html @@ -22,30 +22,37 @@ Contacts - - - Add a Contact - - - - - {{item.name}} - - -
- Show more +
-
- Transfer to Wallet +
+
+ Transfer to Wallet +
+ + + + + + {{item.name}} + +
- - - {{item.name}} - -
diff --git a/src/sass/views/tab-send.scss b/src/sass/views/tab-send.scss index bd0f19a99..20ced3169 100644 --- a/src/sass/views/tab-send.scss +++ b/src/sass/views/tab-send.scss @@ -23,4 +23,47 @@ color: #387ef5; font-weight: bold; } + .list { + .item { + color: #444; + border-top: none; + padding-top: 1.5rem; + padding-bottom: 1.5rem; + .big-icon-svg { + left:5px; + & > .bg{ + width:30px; + height:30px; + box-shadow: none; + } + } + &:before { + display: block; + position: absolute; + width: 80%; + height: 1px; + background: rgba(221, 221, 221, 0.3); + top: 0; + right: 0; + content: ''; + } + &.item-divider { + color: rgba(74, 74, 74, .8); + } + &.item-heading { + &:before { + top: 99%; + width:100%; + } + } + &:nth-child(2) { + &:before { + width: 0; + } + } + .item-note { + color: rgb(58, 58, 58); + } + } + } }