+ basic address book support

+ notify of new transactions
+ refresh transactions
! fixed a lot of transactions bugs
This commit is contained in:
Taegus
2018-12-26 10:12:42 +01:00
parent 655cd441b7
commit 3315677ede
13 changed files with 382 additions and 46 deletions

File diff suppressed because one or more lines are too long

View File

@@ -103,24 +103,29 @@ body.pg-loaded > .inner {
margin-right: 10px;
}
.modalBodyPassword {
.modalBody {
margin: 20px;
}
#dlgGeneralError .modalBodyPassword {
#dlgGeneralError .modalBody {
height: 100px;
}
#dlgCreateWalletPassword .modalBodyPassword,
#dlgCreateWalletPassword .modalBodyPassword {
#dlgDeleteAddressConfirm .modalBody {
height: 100px;
}
#dlgCreateWalletPassword .modalBody,
#dlgCreateAddressAndName .modalBody {
height: 200px;
}
#dlgSendWalletPassword .modalBodyPassword {
#dlgSendWalletPassword .modalBody {
height: 300px;
}
#dlgChangeWalletName .modalBodyPassword {
#dlgChangeWalletName .modalBody,
#dlgChangeAddressName .modalBody {
height: 150px;
}
@@ -136,6 +141,12 @@ body.pg-loaded > .inner {
right: 20px;
}
.btn-dialog-cancel {
position: absolute;
bottom: 10px;
right: 80px;
}
.modalDialog {
display: none;
border-bottom: 3px solid #7A1336 !important;
@@ -312,11 +323,14 @@ div.sidebar svg {
margin: 10px;
}
#noWalletsPresent {
#noWalletsPresent,
#noAddressPresent {
font-size: 1.3em;
}
div.noWalletsWrapper {
div.noWalletsWrapper,
div.noAddressWrapper {
display: flex;
align-items: center;
justify-content: center;

View File

@@ -1,3 +1,54 @@
/*
* Table button styles
*/
.dt-button {
margin-left: 10px !important;
color: #ffffff !important;
background-color: #7A1336 !important;
border: 1px solid #450118 !important;
background-image: none !important;
}
.dt-button:hover,
.dt-button:focus,
.dt-button.active,
.open .dropdown-toggle.dt-button {
color: #ffffff !important;
background-color: #B01549 !important;
border: 1px solid #450118 !important;
background-image: none !important;
}
.dt-button.active,
.open .dropdown-toggle.dt-button.dt-button {
background-image: none !important;
}
.dt-button.disabled,
.dt-button[disabled],
fieldset[disabled] .dt-button,
.dt-button.disabled:hover,
.dt-button[disabled]:hover,
fieldset[disabled] .dt-button:hover,
.dt-button.disabled:focus,
.dt-button[disabled]:focus,
fieldset[disabled] .dt-button:focus,
.dt-button.disabled:active,
.dt-button[disabled]:active,
fieldset[disabled] .dt-button:active,
.dt-button.disabled.active,
.dt-button[disabled].active,
fieldset[disabled] .dt-button.active {
background-color: #7A1336 !important;
border-color: #450118 !important;
}
.dt-button .badge {
color: #7A1336 !important;
background-color: #ffffff !important;
}
/*
* Table styles
*/