Merge pull request #3711 from bechi/feat/icon

Feat/icon
This commit is contained in:
Gustavo Maximiliano Cortez 2016-01-05 17:31:14 -03:00
commit 3080fd736a
8 changed files with 17 additions and 9 deletions

View file

@ -24,6 +24,15 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-activity-active:before {
content: "\e904";
}
.icon-receive-active:before {
content: "\e905";
}
.icon-send-active:before {
content: "\e906";
}
.icon-wallet:before {
content: "\e903";
}

View file

@ -279,10 +279,6 @@ ul.copayer-list img {
display: block;
}
.bottombar-item a.active span, .bottombar-item a.active i {
font-weight: bold;
}
.bottombar-item a.active .label {
text-shadow: none;
}

View file

@ -21,15 +21,15 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.menu = [{
'title': gettext('Receive'),
'icon': 'icon-receive',
'icon': {false:'icon-receive', true: 'icon-receive-active'},
'link': 'receive'
}, {
'title': gettext('Activity'),
'icon': 'icon-activity',
'icon': {false:'icon-activity',true: 'icon-activity-active'},
'link': 'walletHome'
}, {
'title': gettext('Send'),
'icon': 'icon-send',
'icon': {false:'icon-send', true: 'icon-send-active'},
'link': 'send'
}];