minimal css improvement
This commit is contained in:
parent
018e248dd1
commit
9c533ed50b
2 changed files with 4 additions and 23 deletions
|
|
@ -356,15 +356,15 @@ hr { margin: 2.25rem 0;}
|
||||||
.box-setup-copayers:after {
|
.box-setup-copayers:after {
|
||||||
border-color: rgba(255, 255, 255, 0);
|
border-color: rgba(255, 255, 255, 0);
|
||||||
border-bottom-color: #ffffff;
|
border-bottom-color: #ffffff;
|
||||||
border-width: 30px;
|
border-width: 20px;
|
||||||
margin-left: -30px;
|
margin-left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box-setup-copayers:before {
|
.box-setup-copayers:before {
|
||||||
border-color: rgba(238, 238, 238, 0);
|
border-color: rgba(238, 238, 238, 0);
|
||||||
border-bottom-color: #eee;
|
border-bottom-color: #eee;
|
||||||
border-width: 33px;
|
border-width: 23px;
|
||||||
margin-left: -33px;
|
margin-left: -23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box-setup-copayers-fix {
|
.box-setup-copayers-fix {
|
||||||
|
|
|
||||||
|
|
@ -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);
|
|
||||||
};
|
|
||||||
});
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue