minimal css improvement

This commit is contained in:
Mario Colque 2014-05-01 14:19:50 -03:00
parent 018e248dd1
commit 9c533ed50b
2 changed files with 4 additions and 23 deletions

View File

@ -356,15 +356,15 @@ hr { margin: 2.25rem 0;}
.box-setup-copayers:after {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #ffffff;
border-width: 30px;
margin-left: -30px;
border-width: 20px;
margin-left: -20px;
}
.box-setup-copayers:before {
border-color: rgba(238, 238, 238, 0);
border-bottom-color: #eee;
border-width: 33px;
margin-left: -33px;
border-width: 23px;
margin-left: -23px;
}
.box-setup-copayers-fix {

View File

@ -1,19 +0,0 @@
'use strict';
angular.module('copay.password').controller('PasswordController',
function($scope, $rootScope, $location, Passphrase, walletFactory, controllerUtils) {
$scope.title = 'Password';
$scope.loading = false;
if (!$rootScope.openedWalletId) {
$location.path('signin');
}
$scope.getPassphrase = function() {
$scope.loading = true;
var passphrase = Passphrase.getBase64($scope.password);
var w = walletFactory.open($rootScope.openedWalletId, { passphrase: passphrase});
controllerUtils.startNetwork(w);
};
});