Simple addressbook

This commit is contained in:
Gustavo Maximiliano Cortez 2015-10-22 18:43:32 -03:00
commit 6dd8b98dfc
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
12 changed files with 352 additions and 66 deletions

View file

@ -98,6 +98,50 @@ h4.title a {
border-bottom: 1px solid #E9E9EC;
}
.addressbook-input {
display: block;
margin-bottom: 1.5rem;
background-color: #E4E8EC;
padding-left: 0.5rem;
color: #2C3E50;
font-size: 13px;
height: 35px;
padding-top: 7px;
}
ul.button-group {
margin-top: 9px;
}
ul.button-group li:first-child {
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
border: 1px solid #DEDFE1;
}
ul.button-group li:last-child {
border-top-right-radius: 0.2rem;
border-bottom-right-radius: 0.2rem;
border: 1px solid #DEDFE1;
}
.button-group.even-2 li {
margin: 0 -3px;
}
ul.button-group li {
color: #A5B2BF;
cursor: pointer;
text-transform: uppercase;
font-size: 0.7rem;
display: block;
padding: 3px 0;
}
ul.button-group li.selected {
color: #fff;
background-color: #DEDFE1;
}
body, html{
height:100%;

View file

@ -340,6 +340,21 @@ a.missing-copayers {
padding: 1rem 0.7rem;
}
.modal-content ul li a.removeAddressbook {
background-color: white;
color: red;
margin-right: -10px;
float: right;
}
.modal-content ul li a.selectAddressbook {
float: left;
font-size: 18px;
padding: 13px 14px;
color: red;
margin-right: 10px;
}
.sidebar ul.off-canvas-list li a i {
vertical-align: middle;
opacity: 0.6;